diff --git a/AUTHORS b/AUTHORS index 3f6af3d375..138fff37fb 100644 --- a/AUTHORS +++ b/AUTHORS @@ -142,3 +142,4 @@ Marco Re Jonas Jelten Christine Lytwynec John Cox +Ben Weeks diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b3a6331f7f..79de8c09f4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,8 @@ These are notable changes in edx-platform. This is a rolling list of changes, in roughly chronological order, most recent first. Add your entries at or near the top. Include a label indicating the component affected. +Studio: Add drag-and-drop support to the container page. STUD-1309. + Common: Add extensible third-party auth module. Blades: Handle situation if no response were sent from XQueue to LMS in Matlab diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 2d1af894cf..a92773515f 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -2,26 +2,57 @@ Contributing to edx-platform ############################ -Contributions to edx-platform are very welcome, and strongly encouraged! The -easiest way is to fork the repo and then make a pull request from your fork. -Check out our `process documentation`_, or read on for details on how to -become a contributor, edx-platform code quality, testing, making a pull -request, and more. +Contributions to edx-platform are very welcome, and strongly encouraged! We've +put together `some documentation that describes our contribution process`_, +but here's a step-by-step guide that should help you get started. -.. _process documentation: https://github.com/edx/edx-platform/blob/master/docs/en_us/developers/source/process/index.rst +.. _some documentation that describes our contribution process: http://edx.readthedocs.org/projects/userdocs/en/latest/process/overview.html -Becoming a Contributor -====================== +Step 0: Join the Conversation +============================= -Before your first pull request is merged, you'll need to sign the `individual -contributor agreement`_ and send it in. This confirms you have the authority to -contribute the code in the pull request and ensures we can relicense it. +Got an idea for how to improve the codebase? Fantastic, we'd love to hear about +it! Before you dive in and spend a lot of time and effort making a pull request, +it's a good idea to discuss your idea with other interested developers. You may +get some valuable feedback that changes how you think about your idea, or you +may find other developers who have the same idea and want to work together. + +For real-time conversation, we use `IRC`_: we all hang out in the +`#edx-code channel on Freenode`_. Come join us! The channel tends to be most +active Monday through Friday between 13:00 and 21:00 UTC +(9am to 5pm US Eastern time), but interesting conversations can happen +at any time. + +.. _IRC: http://www.irchelp.org/ +.. _#edx-code channel on Freenode: http://webchat.freenode.net/?channels=edx-code + +For asynchronous conversation, we have several mailing lists on Google Groups: + +* `openedx-ops`_: everything related to *running* Open edX. This includes + installation issues, server management, cost analysis, and so on. +* `openedx-translation`_: everything related to *translating* Open edX into + other languages. This includes volunteer translators, our internationalization + infrastructure, issues related to Transifex, and so on. +* `edx-code`_: everything related to the *code* in Open edX. This includes + feature requests, idea proposals, refactorings, and so on. + +.. _openedx-ops: https://groups.google.com/forum/#!forum/openedx-ops +.. _openedx-translation: https://groups.google.com/forum/#!forum/openedx-translation +.. _edx-code: https://groups.google.com/forum/#!forum/edx-code + +Step 1: Sign a Contribution Agreement +===================================== + +Before edX can accept any code contributions from you, you'll need to sign +the `individual contributor agreement`_ and send it in. This confirms +that you have the authority to contribute the code in the pull request and +ensures that edX can relicense it. You should print out the agreement and sign it. Then scan (or photograph) the signed agreement and email it to the email address indicated on the agreement. Alternatively, you're also free to physically mail the agreement to the street address on the agreement. Once we have your agreement in hand, we can begin -merging your work. +reviewing and merging your work. You'll also need to add yourself to the `AUTHORS` file when you submit your first pull request. You should add your full name as well as the email address @@ -31,156 +62,69 @@ request to contain multiple commits, including a commit to `AUTHORS`). Alternatively, you can open up a separate PR just to have your name added to the `AUTHORS` file, and link that PR to the PR with your changes. +Step 2: Fork, Commit, and Pull Request +====================================== +Github has some great documentation on `how to fork a git repository`_. Once +you've done that, make your changes and `send us a pull request`_! Be sure to +include a detailed description for your pull request, so that a community +manager can understand *what* change you're making, *why* you're making it, *how* +it should work now, and how you can *test* that it's working correctly. -Code Quality Guidelines -======================= +.. _how to fork a git repository: https://help.github.com/articles/fork-a-repo +.. _send us a pull request: https://help.github.com/articles/creating-a-pull-request -Comments --------- +Step 3: Meet PR Requirements +============================ -We expect you to contribute code that is self-documenting as much as possible. -This means submitting code with well-formed variable, function, class, and -method names; good docstrings; lots of comments. Use your discretion - not -every line needs to be commented. However, code that is obtuse is hard to -maintain and hard for others to build upon. So please do your best to provide -code that is easy to read and well-commented. +Our `contributor documentation`_ includes a long list of requirements that pull +requests must meet in order to be reviewed by a core committer. These requirements +include things like documentation and passing tests: see the +`contributor documentation`_ page for the full list. -Python/Javascript Styling -------------------------- +.. _contributor documentation: http://edx.readthedocs.org/projects/userdocs/en/latest/process/contributor.html -Before you submit your first pull request, please review the edx-platform code -quality and style guidelines: +Step 4: Approval by Community Manager and Product Owner +======================================================= -* `Python Guidelines `_ -* `Javascript Guidelines `_ +A community manager will read the description of your pull request. If the +description is understandable, the community manager will send the pull request +to a product owner. The product owner will evaluate if the pull request is a +good idea for Open edX, and if not, your pull request will be rejected. This +is another good reason why you should discuss your ideas with other members +of the community before working on a pull request! -Coding conventions should be followed. Your submission should not introduce any -new pep8 or pylint errors (and ideally, should fix up other errors you -encounter in the files you edit). From the edx-platform main directory, you can -run the command:: +Step 5: Code Review by Core Committer(s) +======================================== - $ rake quality +If your pull request meets the requirements listed in the +`contributor documentation`_, and it hasn't been rejected by a product owner, +then it will be scheduled for code review by one or more core committers. This +process sometimes takes awhile: currently, all core committers on the project +are employees of edX, and they have to balance their time between code review +and new development. -to print the "Diff Quality" report, a report of the quality violations your -branch has made. +Once the code review process has started, please be responsive to comments on +the pull request, so we can keep the review process moving forward. +If you are unable to respond for a few days, that's fine, but +please add a comment informing us of that -- otherwise, it looks like you're +abandoning your work! -Although we try to be vigilant and resolve all quality violations, some Pylint -violations are just too challenging to resolve, so we opt to ignore them via -use of a pragma. A pragma tells Pylint to ignore the violation in the given -line. An example is:: +Step 6: Merge! +============== - self.assertEquals(msg, form._errors['course_id'][0]) # pylint: disable=protected-access - -The pragma starts with a ``#`` two spaces after the end of the line. We prefer -that you use the full name of the error (``pylint: disable=unused-argument`` as -opposed to ``pylint: disable=W0613``), so it's more clear what you're disabling -in the line. - -If you have any questions, don't hesitate to reach out to us on email or IRC; -see the section on **Contacting Us**, below, for more. +Once the core committers are satisfied that your pull request is ready to go, +one of them will merge it for you. Your code will end up on the edX production +servers in the next release, which usually which happens every week. Congrats! -Testing Coverage Guidelines =========================== - -Before you submit a pull request, please refer to the `edx-platform testing -documentation`_. - -Code you commit should *increase* test coverage, not decrease it. For more -involved contributions, you may want to discuss your intentions on the mailing -list *before* you start coding. - -Running the command :: - - $ rake test - -in the edx-platform directory will run all the unit tests on edx-platform (to -run specific tests, refer to the testing documentation). Once you've run this -command, you can run :: - - $ rake coverage - -to generate the "Diff Coverage" report. This report tells you how much of the -Python and JavaScript code you've changed is covered by unit tests. We aim for -a coverage report score of 95% or higher. We also encourage you to write -acceptance tests as your changes require. For more in-depth help on various -types of tests, please refer to the `edx-platform testing documentation`_. - - -Opening A Pull Request -====================== - -When you open a pull request (PR), please follow these guidelines: - -* In the PR description, please be as clear as possible explaining what the - change is. This helps us so much in contextualizing your PR and providing - appropriate reviewers for you. Take a look at `pull request 1322`_ for an - example of a verbose PR description for a new feature. - -* As far as code goes, a first pass is to make sure that your code is of high - quality. This means ensuring plenty of comments, as well as a 100% pass rate - when you run ``rake quality`` locally. See the section **Code Quality - Guidelines**. - -* Testing coverage should be as complete as possible. 95% or greater on - JavaScript and Python coverage (you can check this by running ``rake test; - rake coverage`` locally). Percentage coverage is only calculated from unit - tests, however. If you're adding new visual features, we love seeing - acceptance tests as applicable. See the section **Testing Coverage - Guidelines**. - -* Be sure that your commit history is *clean* - that is, you don't have a ton - of tiny commits with throwaway commit messages such as "Fix", "Arugh", - "asdfjkl;", "Merge branch Master into fork", etc. Commit messages should be - concise and explain what work was done. The first line should be fewer than - 50 characters; you may add additional lines to your commit messages for - further explaination. - - * To clean up your commit history you'll need to perform an *interactive - rebase* where you squash your commits together. More about interactive - rebase can be found in the `github help documents`_ or by Googling. - - * The reasoning behind a clean commit history is that we want the log of all - commits in edx-platform to be readable and self-documenting. This way, - developers can take a look at all recent commits in the past few days or - weeks and have a good understanding of all the code changes that were made. - -* The `CHANGELOG` is a list of changes to the platform, distinct from the git - log because the audience is not developers but rather users of our platform - (specifically, course authors). Please make an entry in `CHANGELOG` - describing your change if it is something that you think platform users would - be interested in - eg a major bugfix, new feature, or update to existing - functionality. Be sure to also indicate what system (LMS, CMS, etc) your - change affects. If in doubt if your change is "big enough", we encourage you - to make a `CHANGELOG` entry! - -* Make sure that your branch is freshly rebased on master when you go to open - your pull request. If you don't have repo permissions, you won't be able to - see if your branch is able to be cleanly merged or not. We'll tell you if - it's not; however, rebasing before you open your PR will help decrease the - frequency of conflicts. - -* If you need help with rebasing, please see the following resources: - - 1. `Git Book `_ - 2. `Git Docs `_ - 3. `Interactive Git tutorial `_ -- totally awesome!! - 4. `Git Ready `_ - - -Finally, **Please Do Not** close a pull request and open a new one to respond -to review comments. Keep the same pull request open, so it's clear how your -code has been worked upon and what reviewers have been involved in the -conversation. Rebase as needed to get updated code from master into your -branch. - - Expectations We Have of You ---------------------------- +=========================== By opening up a pull request, we expect the following things: -1. You've read and understand the instructions in this contributing file. +1. You've read and understand the instructions in this contributing file and + the contribution process documentation. 2. You are ready to engage with the edX community. Engaging means you will be prompt in following up with review comments and critiques. Do not open up a @@ -193,124 +137,21 @@ By opening up a pull request, we expect the following things: 4. If you do not respond to comments on your pull request within 7 days, we will close it. You are welcome to re-open it when you are ready to engage. - +========================= Expections You Have of Us -------------------------- +========================= -1. Within a week of opening up a pull request, one of our open source community - managers will triage it, either tagging other reviewers for the PR or asking - follow up questions (Please give us a little extra time if you open the PR - on a weekend or around a US holiday! We may take a little longer getting to - it.). +1. Within a week of opening up a pull request, one of our community managers + will triage it, starting the documented contribution process. (Please + give us a little extra time if you open the PR on a weekend or + around a US holiday! We may take a little longer getting to it.) 2. We promise to engage in an active dialogue with you from the time we begin - reviewing until either the PR is merged (by an edX staff member), or we + reviewing until either the PR is merged (by a core committer), or we decide that, for whatever reason, it should be closed. 3. Once we have determined through visual review that your code is not malicious, we will run a Jenkins build on your branch. - -Using Jenkins Builds --------------------- - -When you open up a pull request, an edX staff member can decide to run a -Jenkins build on your branch. We will do this once we have determined that your -code is not malicious. - -When a Jenkins job is run, all unit, Javascript, and acceptance tests are run. - -**If the build fails...** - -Click on the build to be brought to the build page. You'll see a matrix of blue -and red dots; the red dots indicate what section failing tests were present in. -You can click on the test name to be brought to an error trace that explains -why the tests fail. Please address the failing tests before requesting a new -build on your branch. If the failures appear to not have anything to do with -your code, it may be the case that the master branch is failing. You can ask -your reviewers for advice in this scenario. - -If the build says "Unstable" but passes all tests, you have introduced too many -pep8 and pylint violations. Please refer to the **Code Quality Guidelines** -section and clean up the code. - -**If the build passes...** - -If all the tests pass, the "Diff Coverage" and "Diff Quality" reports are -generated. Click on the "View Reports" link on your pull request to be brought -to the Jenkins report page. In a column on the left side of the page are a few -links, including "Diff Coverage Report" and "Diff Quality Report". View each of -these reports (making note that the Diff Quality report has two tabs - one for -pep8, and one for Pylint). - -Make sure your quality coverage is 100% and your test coverage is at least 95%. -Adjust your code appropriately if these metrics are not high enough. Be sure to -ask your reviewers for advice if you need it. - - -Contacting Us -============= - -Mailing list ------------- - -If you have any questions, please ask on the `mailing list`_. It's always a -good idea to first search through the archives, to see if any of your questions -have already been asked and answered. - -The edx platform team is based in the US, so we're best able to respond to -questions posted in English. You're most likely to get an answer if you ask -questions related to edx-platform code or conventions. Questions only -tangentially related to edx-platform may be better answered on different forums -or mailing lists (for example, asking for help on how to set up Git is better -posted on a Git related message list or forum). - -Questions about translations, creating courses, or using Studio are not -appropriate for the edx-code mailing list. We have a few other mailing lists -you may be interested in: - -* `openedx-translation `_ -* `openedx-studio `_ - - -IRC ---- - -Many edX employees and community members hang out in the #edx-code `IRC -channel`_ on Freenode. We're always happy to see more people hanging out with -us there! - -**Tips on Using IRC** - -For clients, the `webchat `_ is easiest, because you -don't need to install anything and it's cross-platform. `ChatZilla -`_ is almost as easy -- it's a Firefox -extension, and works anywhere Firefox does. For an installed application, -`Pidgin `_ works decently (or `Adium `_ on -Mac), and has a familiar instant-messenger-style interface. For something truly -dedicated to IRC, there's `mIRC `_ for Windows (free), -`LimeChat `_ for Mac (free), or `Textual -`_ for Mac (paid). There are also many other -clients out there, but those are some good recommendations for people -relatively new to IRC. - - -Pull requests/issues --------------------- - -We do not make much use of Github issues, so opening an issue on edx-platform -is not the best way to reach us. However, when you've opened up a pull request, -please please don't be shy about adding comments and having a robust -conversation with your pull request reviewers. - -Your pull request is a good place to ask pointed questions about the code -you've written, and we're very happy to have interaction with you through code, -commits, and comments. - - .. _individual contributor agreement: http://code.edx.org/individual-contributor-agreement.pdf -.. _edx-platform testing documentation: https://github.com/edx/edx-platform/blob/master/docs/en_us/internal/testing.md -.. _mailing list: https://groups.google.com/forum/#!forum/edx-code -.. _IRC channel: http://www.irchelp.org/irchelp/new2irc.html -.. _pull request 1322: https://github.com/edx/edx-platform/pull/1322 -.. _github help documents: https://help.github.com/articles/interactive-rebase + diff --git a/README.md b/README.md index 4e01b44e38..24a65cebf3 100644 --- a/README.md +++ b/README.md @@ -26,10 +26,10 @@ for details. Documentation ------------ -High-level documentation of the code is located in the `docs` subdirectory. -Most (although not all) of our documentation is built using +Documentation for developers, researchers, and course staff is located in the +`docs` subdirectory. Documentation is built using [Sphinx](http://sphinx-doc.org/): you can [view the built documentation on -ReadTheDocs](http://edx.readthedocs.org/). +ReadTheDocs](http://docs.edx.org/). How to Contribute ----------------- diff --git a/cms/djangoapps/contentstore/features/transcripts.py b/cms/djangoapps/contentstore/features/transcripts.py index 651d551701..8ba53a7e6f 100644 --- a/cms/djangoapps/contentstore/features/transcripts.py +++ b/cms/djangoapps/contentstore/features/transcripts.py @@ -17,16 +17,16 @@ TEST_ROOT = settings.COMMON_TEST_DATA_ROOT DELAY = 0.5 ERROR_MESSAGES = { - 'url_format': u'Incorrect url format.', - 'file_type': u'Link types should be unique.', + 'url_format': u'Incorrect URL format.', + 'file_type': u'Video file types must be unique.', } STATUSES = { 'found': u'Timed Transcript Found', 'not found': u'No Timed Transcript', 'replace': u'Timed Transcript Conflict', - 'uploaded_successfully': u'Timed Transcript uploaded successfully', - 'use existing': u'Timed Transcript Not Updated', + 'uploaded_successfully': u'Timed Transcript Uploaded Successfully', + 'use existing': u'Confirm Timed Transcript', } SELECTORS = { @@ -39,11 +39,11 @@ SELECTORS = { # button type , button css selector, button message TRANSCRIPTS_BUTTONS = { - 'import': ('.setting-import', 'Import from YouTube'), - 'download_to_edit': ('.setting-download', 'Download to Edit'), - 'disabled_download_to_edit': ('.setting-download.is-disabled', 'Download to Edit'), + 'import': ('.setting-import', 'Import YouTube Transcript'), + 'download_to_edit': ('.setting-download', 'Download Transcript for Editing'), + 'disabled_download_to_edit': ('.setting-download.is-disabled', 'Download Transcript for Editing'), 'upload_new_timed_transcripts': ('.setting-upload', 'Upload New Timed Transcript'), - 'replace': ('.setting-replace', 'Yes, Replace EdX Timed Transcript with YouTube Timed Transcript'), + 'replace': ('.setting-replace', 'Yes, replace the edX transcript with the YouTube transcript'), 'choose': ('.setting-choose', 'Timed Transcript from {}'), 'use_existing': ('.setting-use-existing', 'Use Existing Timed Transcript'), } diff --git a/cms/djangoapps/contentstore/views/import_export.py b/cms/djangoapps/contentstore/views/import_export.py index 16fabc97cf..e01c8e87c1 100644 --- a/cms/djangoapps/contentstore/views/import_export.py +++ b/cms/djangoapps/contentstore/views/import_export.py @@ -240,6 +240,9 @@ def import_handler(request, course_key_string): # Send errors to client with stage at which error occurred. except Exception as exception: # pylint: disable=W0703 + log.exception( + "error importing course" + ) return JsonResponse( { 'ErrMsg': str(exception), diff --git a/cms/djangoapps/contentstore/views/item.py b/cms/djangoapps/contentstore/views/item.py index b1e469b8f8..77dd8bb3a1 100644 --- a/cms/djangoapps/contentstore/views/item.py +++ b/cms/djangoapps/contentstore/views/item.py @@ -33,6 +33,7 @@ from ..utils import get_modulestore from .access import has_course_access from .helpers import _xmodule_recurse from contentstore.utils import compute_publish_state, PublishState +from xmodule.modulestore.draft import DIRECT_ONLY_CATEGORIES from contentstore.views.preview import get_preview_fragment from edxmako.shortcuts import render_to_string from models.settings.course_grading import CourseGradingModel @@ -176,8 +177,14 @@ def xblock_view_handler(request, usage_key_string, view_name): accept_header = request.META.get('HTTP_ACCEPT', 'application/json') if 'application/json' in accept_header: +<<<<<<< HEAD store = get_modulestore(usage_key) component = store.get_item(usage_key) +======= + store = get_modulestore(old_location) + component = store.get_item(old_location) + is_read_only = _xblock_is_read_only(component) +>>>>>>> edx/master # wrap the generated fragment in the xmodule_editor div so that the javascript # can bind to it correctly @@ -197,12 +204,23 @@ def xblock_view_handler(request, usage_key_string, view_name): store.update_item(component, None) elif view_name == 'student_view' and component.has_children: + context = { + 'runtime_type': 'studio', + 'container_view': False, + 'read_only': is_read_only, + 'root_xblock': component, + } # For non-leaf xblocks on the unit page, show the special rendering # which links to the new container page. html = render_to_string('container_xblock_component.html', { + 'xblock_context': context, 'xblock': component, +<<<<<<< HEAD 'locator': usage_key, 'reordering_enabled': True, +======= + 'locator': locator, +>>>>>>> edx/master }) return JsonResponse({ 'html': html, @@ -210,8 +228,6 @@ def xblock_view_handler(request, usage_key_string, view_name): }) elif view_name in ('student_view', 'container_preview'): is_container_view = (view_name == 'container_preview') - component_publish_state = compute_publish_state(component) - is_read_only_view = component_publish_state == PublishState.public # Only show the new style HTML for the container view, i.e. for non-verticals # Note: this special case logic can be removed once the unit page is replaced @@ -219,7 +235,7 @@ def xblock_view_handler(request, usage_key_string, view_name): context = { 'runtime_type': 'studio', 'container_view': is_container_view, - 'read_only': is_read_only_view, + 'read_only': is_read_only, 'root_xblock': component, } @@ -229,6 +245,7 @@ def xblock_view_handler(request, usage_key_string, view_name): # into the preview fragment, so we don't want to add another header here. if not is_container_view: fragment.content = render_to_string('component.html', { + 'xblock_context': context, 'preview': fragment.content, 'label': component.display_name or component.scope_ids.block_type, }) @@ -248,7 +265,22 @@ def xblock_view_handler(request, usage_key_string, view_name): return HttpResponse(status=406) +<<<<<<< HEAD def _save_item(request, usage_key, data=None, children=None, metadata=None, nullout=None, +======= +def _xblock_is_read_only(xblock): + """ + Returns true if the specified xblock is read-only, meaning that it cannot be edited. + """ + # We allow direct editing of xblocks in DIRECT_ONLY_CATEGORIES (for example, static pages). + if xblock.category in DIRECT_ONLY_CATEGORIES: + return False + component_publish_state = compute_publish_state(xblock) + return component_publish_state == PublishState.public + + +def _save_item(request, usage_loc, item_location, data=None, children=None, metadata=None, nullout=None, +>>>>>>> edx/master grader_type=None, publish=None): """ Saves xblock w/ its fields. Has special processing for grader_type, publish, and nullout and Nones in metadata. diff --git a/cms/djangoapps/contentstore/views/tests/test_container.py b/cms/djangoapps/contentstore/views/tests/test_container.py index c893da72f5..f45e4a725a 100644 --- a/cms/djangoapps/contentstore/views/tests/test_container.py +++ b/cms/djangoapps/contentstore/views/tests/test_container.py @@ -2,10 +2,12 @@ Unit tests for the container view. """ +import json + from contentstore.tests.utils import CourseTestCase from contentstore.utils import compute_publish_state, PublishState from contentstore.views.helpers import xblock_studio_url -from xmodule.modulestore.django import modulestore +from xmodule.modulestore.django import loc_mapper, modulestore from xmodule.modulestore.tests.factories import ItemFactory @@ -51,6 +53,7 @@ class ContainerViewTestCase(CourseTestCase): parent_location=published_xblock_with_child.location, category="html", display_name="Child HTML" ) +<<<<<<< HEAD draft_xblock_with_child = modulestore('draft').convert_to_draft(published_xblock_with_child.location) expected_breadcrumbs = ( r'>>>>>> edx/master self._test_html_content( published_xblock_with_child, expected_location_in_section_tag=published_xblock_with_child.location, expected_breadcrumbs=expected_breadcrumbs ) + + # Now make the unit and its children into a draft and validate the container again + modulestore('draft').convert_to_draft(self.vertical.location) + modulestore('draft').convert_to_draft(self.child_vertical.location) + draft_xblock_with_child = modulestore('draft').convert_to_draft(published_xblock_with_child.location) self._test_html_content( draft_xblock_with_child, expected_location_in_section_tag=draft_xblock_with_child.location, @@ -103,3 +114,37 @@ class ContainerViewTestCase(CourseTestCase): unit_location=unicode(self.vertical.location) ) self.assertIn(expected_unit_link, html) + + def test_container_preview_html(self): + """ + Verify that an xblock returns the expected HTML for a container preview + """ + # First verify that the behavior is correct with a published container + self._test_preview_html(self.vertical) + self._test_preview_html(self.child_vertical) + + # Now make the unit and its children into a draft and validate the preview again + draft_unit = modulestore('draft').convert_to_draft(self.vertical.location) + draft_container = modulestore('draft').convert_to_draft(self.child_vertical.location) + self._test_preview_html(draft_unit) + self._test_preview_html(draft_container) + + def _test_preview_html(self, xblock): + """ + Verify that the specified xblock has the expected HTML elements for container preview + """ + locator = loc_mapper().translate_location(self.course.id, xblock.location, published=False) + publish_state = compute_publish_state(xblock) + preview_url = '/xblock/{locator}/container_preview'.format(locator=locator) + + resp = self.client.get(preview_url, HTTP_ACCEPT='application/json') + self.assertEqual(resp.status_code, 200) + resp_content = json.loads(resp.content) + html = resp_content['html'] + + # Verify that there are no drag handles for public pages + drag_handle_html = '' + if publish_state == PublishState.public: + self.assertNotIn(drag_handle_html, html) + else: + self.assertIn(drag_handle_html, html) diff --git a/cms/djangoapps/contentstore/views/tests/test_tabs.py b/cms/djangoapps/contentstore/views/tests/test_tabs.py index ca610f8255..79049dd218 100644 --- a/cms/djangoapps/contentstore/views/tests/test_tabs.py +++ b/cms/djangoapps/contentstore/views/tests/test_tabs.py @@ -4,6 +4,7 @@ import json from contentstore.views import tabs from contentstore.tests.utils import CourseTestCase from django.test import TestCase +from xmodule.modulestore.django import loc_mapper from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory from xmodule.tabs import CourseTabList, WikiTab from contentstore.utils import reverse_course_url @@ -23,8 +24,13 @@ class TabsPageTests(CourseTestCase): self.url = reverse_course_url('tabs_handler', self.course.id) # add a static tab to the course, for code coverage +<<<<<<< HEAD ItemFactory.create( parent_location=self.course.location, +======= + self.test_tab = ItemFactory.create( + parent_location=self.course_location, +>>>>>>> edx/master category="static_tab", display_name="Static_1" ) @@ -173,6 +179,25 @@ class TabsPageTests(CourseTestCase): ) self.check_invalid_tab_id_response(resp) + def test_tab_preview_html(self): + """ + Verify that the static tab renders itself with the correct HTML + """ + locator = loc_mapper().translate_location(self.course.id, self.test_tab.location) + preview_url = '/xblock/{locator}/student_view'.format(locator=locator) + + resp = self.client.get(preview_url, HTTP_ACCEPT='application/json') + self.assertEqual(resp.status_code, 200) + resp_content = json.loads(resp.content) + html = resp_content['html'] + + # Verify that the HTML contains the expected elements + self.assertIn('Edit', html) + self.assertIn('Duplicate this component', html) + self.assertIn('Delete this component', html) + self.assertIn('', html) + + class PrimitiveTabEdit(TestCase): """Tests for the primitive tab edit data manipulations""" diff --git a/cms/envs/aws.py b/cms/envs/aws.py index 67fc78e644..2a854b7c8a 100644 --- a/cms/envs/aws.py +++ b/cms/envs/aws.py @@ -251,6 +251,7 @@ BROKER_URL = "{0}://{1}:{2}@{3}/{4}".format(CELERY_BROKER_TRANSPORT, # Event tracking TRACKING_BACKENDS.update(AUTH_TOKENS.get("TRACKING_BACKENDS", {})) +EVENT_TRACKING_BACKENDS.update(AUTH_TOKENS.get("EVENT_TRACKING_BACKENDS", {})) SUBDOMAIN_BRANDING = ENV_TOKENS.get('SUBDOMAIN_BRANDING', {}) VIRTUAL_UNIVERSITIES = ENV_TOKENS.get('VIRTUAL_UNIVERSITIES', []) diff --git a/cms/envs/common.py b/cms/envs/common.py index 9e199e3372..f7195d2c54 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -260,7 +260,6 @@ SITE_ID = 1 SITE_NAME = "localhost:8001" HTTPS = 'on' ROOT_URLCONF = 'cms.urls' -IGNORABLE_404_ENDS = ('favicon.ico') # Email EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' @@ -546,7 +545,7 @@ COURSES_WITH_UNSAFE_CODE = [] ############################## EVENT TRACKING ################################# -TRACK_MAX_EVENT = 10000 +TRACK_MAX_EVENT = 50000 TRACKING_BACKENDS = { 'logger': { @@ -557,6 +556,26 @@ TRACKING_BACKENDS = { } } +# We're already logging events, and we don't want to capture user +# names/passwords. Heartbeat events are likely not interesting. +TRACKING_IGNORE_URL_PATTERNS = [r'^/event', r'^/login', r'^/heartbeat'] + +EVENT_TRACKING_ENABLED = True +EVENT_TRACKING_BACKENDS = { + 'logger': { + 'ENGINE': 'eventtracking.backends.logger.LoggerBackend', + 'OPTIONS': { + 'name': 'tracking', + 'max_event_size': TRACK_MAX_EVENT, + } + } +} +EVENT_TRACKING_PROCESSORS = [ + { + 'ENGINE': 'track.shim.LegacyFieldMappingProcessor' + } +] + #### PASSWORD POLICY SETTINGS ##### PASSWORD_MIN_LENGTH = None @@ -565,11 +584,6 @@ PASSWORD_COMPLEXITY = {} PASSWORD_DICTIONARY_EDIT_DISTANCE_THRESHOLD = None PASSWORD_DICTIONARY = [] -# We're already logging events, and we don't want to capture user -# names/passwords. Heartbeat events are likely not interesting. -TRACKING_IGNORE_URL_PATTERNS = [r'^/event', r'^/login', r'^/heartbeat'] -TRACKING_ENABLED = True - ##### ACCOUNT LOCKOUT DEFAULT PARAMETERS ##### MAX_FAILED_LOGIN_ATTEMPTS_ALLOWED = 5 MAX_FAILED_LOGIN_ATTEMPTS_LOCKOUT_PERIOD_SECS = 15 * 60 diff --git a/cms/static/coffee/spec/main.coffee b/cms/static/coffee/spec/main.coffee index d8126c77e8..0dd3e24ed9 100644 --- a/cms/static/coffee/spec/main.coffee +++ b/cms/static/coffee/spec/main.coffee @@ -18,6 +18,7 @@ requirejs.config({ "jquery.iframe-transport": "xmodule_js/common_static/js/vendor/jQuery-File-Upload/js/jquery.iframe-transport", "jquery.inputnumber": "xmodule_js/common_static/js/vendor/html5-input-polyfills/number-polyfill", "jquery.immediateDescendents": "xmodule_js/common_static/coffee/src/jquery.immediateDescendents", + "jquery.simulate": "xmodule_js/common_static/js/vendor/jquery.simulate", "datepair": "xmodule_js/common_static/js/vendor/timepicker/datepair", "date": "xmodule_js/common_static/js/vendor/date", "underscore": "xmodule_js/common_static/js/vendor/underscore-min", @@ -100,6 +101,10 @@ requirejs.config({ deps: ["jquery"], exports: "jQuery.fn.inputNumber" }, + "jquery.simulate": { + deps: ["jquery"], + exports: "jQuery.fn.simulate" + }, "jquery.tinymce": { deps: ["jquery", "tinymce"], exports: "jQuery.fn.tinymce" @@ -216,6 +221,7 @@ define([ "js/spec/views/baseview_spec", "js/spec/views/paging_spec", + "js/spec/views/container_spec", "js/spec/views/unit_spec", "js/spec/views/xblock_spec", "js/spec/views/xblock_editor_spec", diff --git a/cms/static/coffee/src/views/tabs.coffee b/cms/static/coffee/src/views/tabs.coffee index 83f520f7ae..ff24b61706 100644 --- a/cms/static/coffee/src/views/tabs.coffee +++ b/cms/static/coffee/src/views/tabs.coffee @@ -31,7 +31,7 @@ define ["jquery", "jquery.ui", "backbone", "js/views/feedback_prompt", "js/views ) toggleVisibilityOfTab: (event, ui) => - checkbox_element = event.srcElement + checkbox_element = event.target tab_element = $(checkbox_element).parents(".course-tab")[0] saving = new NotificationView.Mini({title: gettext("Saving…")}) diff --git a/cms/static/coffee/src/views/unit.coffee b/cms/static/coffee/src/views/unit.coffee index 8b2bc885d0..93371a1934 100644 --- a/cms/static/coffee/src/views/unit.coffee +++ b/cms/static/coffee/src/views/unit.coffee @@ -1,8 +1,9 @@ define ["jquery", "jquery.ui", "gettext", "backbone", "js/views/feedback_notification", "js/views/feedback_prompt", - "coffee/src/views/module_edit", "js/models/module_info"], -($, ui, gettext, Backbone, NotificationView, PromptView, ModuleEditView, ModuleModel) -> - class UnitEditView extends Backbone.View + "coffee/src/views/module_edit", "js/models/module_info", + "js/views/baseview"], +($, ui, gettext, Backbone, NotificationView, PromptView, ModuleEditView, ModuleModel, BaseView) -> + class UnitEditView extends BaseView events: 'click .new-component .new-component-type a.multiple-templates': 'showComponentTemplates' 'click .new-component .new-component-type a.single-template': 'saveNewComponent' @@ -212,30 +213,35 @@ define ["jquery", "jquery.ui", "gettext", "backbone", ) createDraft: (event) -> - @wait(true) + self = this + @disableElementWhileRunning($(event.target), -> + self.wait(true) + $.postJSON(self.model.url(), { + publish: 'create_draft' + }, => + analytics.track "Created Draft", + course: course_location_analytics + unit_id: unit_location_analytics - $.postJSON(@model.url(), { - publish: 'create_draft' - }, => - analytics.track "Created Draft", - course: course_location_analytics - unit_id: unit_location_analytics - - @model.set('state', 'draft') + self.model.set('state', 'draft') + ) ) publishDraft: (event) -> - @wait(true) - @saveDraft() + self = this + @disableElementWhileRunning($(event.target), -> + self.wait(true) + self.saveDraft() - $.postJSON(@model.url(), { - publish: 'make_public' - }, => - analytics.track "Published Draft", - course: course_location_analytics - unit_id: unit_location_analytics + $.postJSON(self.model.url(), { + publish: 'make_public' + }, => + analytics.track "Published Draft", + course: course_location_analytics + unit_id: unit_location_analytics - @model.set('state', 'public') + self.model.set('state', 'public') + ) ) setVisibility: (event) -> @@ -259,7 +265,7 @@ define ["jquery", "jquery.ui", "gettext", "backbone", @model.set('state', @$('.visibility-select').val()) ) - class UnitEditView.NameEdit extends Backbone.View + class UnitEditView.NameEdit extends BaseView events: 'change .unit-display-name-input': 'saveName' @@ -293,14 +299,14 @@ define ["jquery", "jquery.ui", "gettext", "backbone", display_name: metadata.display_name - class UnitEditView.LocationState extends Backbone.View + class UnitEditView.LocationState extends BaseView initialize: => @model.on('change:state', @render) render: => @$el.toggleClass("#{@model.previous('state')}-item #{@model.get('state')}-item") - class UnitEditView.Visibility extends Backbone.View + class UnitEditView.Visibility extends BaseView initialize: => @model.on('change:state', @render) @render() diff --git a/cms/static/js/collections/course_relative.js b/cms/static/js/collections/course_relative.js deleted file mode 100644 index 5cb4fb4c31..0000000000 --- a/cms/static/js/collections/course_relative.js +++ /dev/null @@ -1,6 +0,0 @@ -define(["backbone", "js/models/course_relative"], function(Backbone, CourseRelativeModel) { - var CourseRelativeCollection = Backbone.Collection.extend({ - model: CourseRelativeModel - }); - return CourseRelativeCollection; -}); diff --git a/cms/static/js/models/course_relative.js b/cms/static/js/models/course_relative.js deleted file mode 100644 index 760b950062..0000000000 --- a/cms/static/js/models/course_relative.js +++ /dev/null @@ -1,9 +0,0 @@ -define(["backbone"], function(Backbone) { - var CourseRelative = Backbone.Model.extend({ - defaults: { - course_location : null, // must never be null, but here to doc the field - idx : null // the index making it unique in the containing collection (no implied sort) - } - }); - return CourseRelative; -}); diff --git a/cms/static/js/spec/views/baseview_spec.js b/cms/static/js/spec/views/baseview_spec.js index 4d88992a3e..c26ba7b528 100644 --- a/cms/static/js/spec/views/baseview_spec.js +++ b/cms/static/js/spec/views/baseview_spec.js @@ -76,5 +76,24 @@ define(["jquery", "underscore", "js/views/baseview", "js/utils/handle_iframe_bin expect(view.$('.is-collapsible')).not.toHaveClass('collapsed'); }); }); + + describe("disabled element while running", function() { + it("adds 'is-disabled' class to element while action is running and removes it after", function() { + var viewWithLink, + link, + deferred = new $.Deferred(), + promise = deferred.promise(), + view = new BaseView(); + + setFixtures("ripe apples drop about my head"); + + link = $("#link"); + expect(link).not.toHaveClass("is-disabled"); + view.disableElementWhileRunning(link, function(){return promise}); + expect(link).toHaveClass("is-disabled"); + deferred.resolve(); + expect(link).not.toHaveClass("is-disabled"); + }); + }); }); }); diff --git a/cms/static/js/spec/views/container_spec.js b/cms/static/js/spec/views/container_spec.js new file mode 100644 index 0000000000..c27bc634cf --- /dev/null +++ b/cms/static/js/spec/views/container_spec.js @@ -0,0 +1,215 @@ +define([ "jquery", "js/spec_helpers/create_sinon", "js/spec_helpers/view_helpers", + "js/views/container", "js/models/xblock_info", "js/views/feedback_notification", "jquery.simulate", + "xmodule", "coffee/src/main", "xblock/cms.runtime.v1"], + function ($, create_sinon, view_helpers, ContainerView, XBlockInfo, Notification) { + + describe("Container View", function () { + + describe("Supports reordering components", function () { + + var model, containerView, mockContainerHTML, respondWithMockXBlockFragment, init, getComponent, + getDragHandle, dragComponentVertically, dragComponentAbove, + verifyRequest, verifyNumReorderCalls, respondToRequest, + + rootLocator = 'testCourse/branch/draft/split_test/splitFFF', + containerTestUrl = '/xblock/' + rootLocator, + + groupAUrl = "/xblock/locator-group-A", + groupA = "locator-group-A", + groupAComponent1 = "locator-component-A1", + groupAComponent2 = "locator-component-A2", + groupAComponent3 = "locator-component-A3", + + groupBUrl = "/xblock/locator-group-B", + groupB = "locator-group-B", + groupBComponent1 = "locator-component-B1", + groupBComponent2 = "locator-component-B2", + groupBComponent3 = "locator-component-B3"; + + mockContainerHTML = readFixtures('mock/mock-container-xblock.underscore'); + + respondWithMockXBlockFragment = function (requests, response) { + var requestIndex = requests.length - 1; + create_sinon.respondWithJson(requests, response, requestIndex); + }; + + beforeEach(function () { + view_helpers.installViewTemplates(); + appendSetFixtures('
'); + model = new XBlockInfo({ + id: rootLocator, + display_name: 'Test AB Test', + category: 'split_test' + }); + + containerView = new ContainerView({ + model: model, + view: 'container_preview', + el: $('.wrapper-xblock') + }); + }); + + afterEach(function () { + containerView.remove(); + }); + + init = function (caller) { + var requests = create_sinon.requests(caller); + containerView.render(); + + respondWithMockXBlockFragment(requests, { + html: mockContainerHTML, + "resources": [] + }); + + $('body').append(containerView.$el); + return requests; + }; + + getComponent = function(locator) { + return containerView.$('[data-locator="' + locator + '"]'); + }; + + getDragHandle = function(locator) { + var component = getComponent(locator); + return component.prev(); + }; + + dragComponentVertically = function (locator, dy) { + var handle = getDragHandle(locator); + handle.simulate("drag", {dy: dy}); + }; + + dragComponentAbove = function (sourceLocator, targetLocator) { + var targetElement = getComponent(targetLocator), + targetTop = targetElement.offset().top + 1, + handle = getDragHandle(sourceLocator), + handleY = handle.offset().top + (handle.height() / 2), + dy = targetTop - handleY; + handle.simulate("drag", {dy: dy}); + }; + + verifyRequest = function (requests, reorderCallIndex, expectedURL, expectedChildren) { + var actualIndex, request, children, i; + // 0th call is the response to the initial render call to get HTML. + actualIndex = reorderCallIndex + 1; + expect(requests.length).toBeGreaterThan(actualIndex); + request = requests[actualIndex]; + expect(request.url).toEqual(expectedURL); + children = (JSON.parse(request.requestBody)).children; + expect(children.length).toEqual(expectedChildren.length); + for (i = 0; i < children.length; i++) { + expect(children[i]).toEqual(expectedChildren[i]); + } + }; + + verifyNumReorderCalls = function (requests, expectedCalls) { + // Number of calls will be 1 more than expected because of the initial render call to get HTML. + expect(requests.length).toEqual(expectedCalls + 1); + }; + + respondToRequest = function (requests, reorderCallIndex, status) { + var actualIndex; + // Number of calls will be 1 more than expected because of the initial render call to get HTML. + actualIndex = reorderCallIndex + 1; + expect(requests.length).toBeGreaterThan(actualIndex); + requests[actualIndex].respond(status); + }; + + it('does nothing if item not moved far enough', function () { + var requests = init(this); + // Drag the first component in Group A down very slightly but not enough to move it. + dragComponentVertically(groupAComponent1, 5); + verifyNumReorderCalls(requests, 0); + }); + + it('can reorder within a group', function () { + var requests = init(this); + // Drag the third component in Group A to be the first + dragComponentAbove(groupAComponent3, groupAComponent1); + respondToRequest(requests, 0, 200); + verifyRequest(requests, 0, groupAUrl, [groupAComponent3, groupAComponent1, groupAComponent2]); + }); + + it('can drag from one group to another', function () { + var requests = init(this); + // Drag the first component in Group B to the top of group A. + dragComponentAbove(groupBComponent1, groupAComponent1); + + // Respond to the two requests: add the component to Group A, then remove it from Group B. + respondToRequest(requests, 0, 200); + respondToRequest(requests, 1, 200); + + verifyRequest(requests, 0, groupAUrl, + [groupBComponent1, groupAComponent1, groupAComponent2, groupAComponent3]); + verifyRequest(requests, 1, groupBUrl, [groupBComponent2, groupBComponent3]); + }); + + it('does not remove from old group if addition to new group fails', function () { + var requests = init(this); + // Drag the first component in Group B to the first group. + dragComponentAbove(groupBComponent1, groupAComponent1); + respondToRequest(requests, 0, 500); + // Send failure for addition to new group -- no removal event should be received. + verifyRequest(requests, 0, groupAUrl, + [groupBComponent1, groupAComponent1, groupAComponent2, groupAComponent3]); + // Verify that a second request was not issued + verifyNumReorderCalls(requests, 1); + }); + + it('can swap group A and group B', function () { + var requests = init(this); + // Drag Group B before group A. + dragComponentAbove(groupB, groupA); + respondToRequest(requests, 0, 200); + verifyRequest(requests, 0, containerTestUrl, [groupB, groupA]); + }); + + describe("Shows a saving message", function () { + var savingSpies; + + beforeEach(function () { + savingSpies = spyOnConstructor(Notification, "Mini", + ["show", "hide"]); + savingSpies.show.andReturn(savingSpies); + }); + + it('hides saving message upon success', function () { + var requests, savingOptions; + requests = init(this); + + // Drag the first component in Group B to the first group. + dragComponentAbove(groupBComponent1, groupAComponent1); + + expect(savingSpies.constructor).toHaveBeenCalled(); + expect(savingSpies.show).toHaveBeenCalled(); + expect(savingSpies.hide).not.toHaveBeenCalled(); + savingOptions = savingSpies.constructor.mostRecentCall.args[0]; + expect(savingOptions.title).toMatch(/Saving/); + + respondToRequest(requests, 0, 200); + expect(savingSpies.hide).not.toHaveBeenCalled(); + respondToRequest(requests, 1, 200); + expect(savingSpies.hide).toHaveBeenCalled(); + }); + + it('does not hide saving message if failure', function () { + var requests = init(this); + + // Drag the first component in Group B to the first group. + dragComponentAbove(groupBComponent1, groupAComponent1); + + expect(savingSpies.constructor).toHaveBeenCalled(); + expect(savingSpies.show).toHaveBeenCalled(); + expect(savingSpies.hide).not.toHaveBeenCalled(); + + respondToRequest(requests, 0, 500); + expect(savingSpies.hide).not.toHaveBeenCalled(); + + // Since the first reorder call failed, the removal will not be called. + verifyNumReorderCalls(requests, 1); + }); + }); + }); + }); + }); diff --git a/cms/static/js/spec/views/modals/edit_xblock_spec.js b/cms/static/js/spec/views/modals/edit_xblock_spec.js index e58759dea3..ecc12b43f6 100644 --- a/cms/static/js/spec/views/modals/edit_xblock_spec.js +++ b/cms/static/js/spec/views/modals/edit_xblock_spec.js @@ -12,7 +12,7 @@ define(["jquery", "underscore", "js/spec_helpers/create_sinon", "js/spec_helpers beforeEach(function () { edit_helpers.installEditTemplates(); - appendSetFixtures('
'); + appendSetFixtures('
'); model = new XBlockInfo({ id: 'testCourse/branch/draft/block/verticalFFF', display_name: 'Test Unit', diff --git a/cms/static/js/spec/views/unit_spec.js b/cms/static/js/spec/views/unit_spec.js index c2ad5325bf..40e90b4bab 100644 --- a/cms/static/js/spec/views/unit_spec.js +++ b/cms/static/js/spec/views/unit_spec.js @@ -162,5 +162,79 @@ define(["coffee/src/views/unit", "js/models/module_info", "js/spec_helpers/creat verifyComponents(unit, ['loc_1', 'loc_2']); }); }); + describe("Disabled edit/publish links during ajax call", function() { + var unit, + link, + draft_states = [ + { + state: "draft", + selector: ".publish-draft" + }, + { + state: "public", + selector: ".create-draft" + } + ], + editLinkFixture = + '
\ +
\ +

Unit Settings

\ +
\ +
\ +

\ + edit a draft \ +

\ +

\ + replace it with this draft \ +

\ +
\ +
\ +
\ +
'; + function test_link_disabled_during_ajax_call(draft_state) { + beforeEach(function () { + setFixtures(editLinkFixture); + unit = new UnitEditView({ + el: $('.main-wrapper'), + model: new ModuleModel({ + id: 'unit_locator', + state: draft_state['state'] + }) + }); + // needed to stub out the ajax + window.analytics = jasmine.createSpyObj('analytics', ['track']); + window.course_location_analytics = jasmine.createSpy('course_location_analytics'); + window.unit_location_analytics = jasmine.createSpy('unit_location_analytics'); + }); + + it("reenables the " + draft_state['selector'] + " link once the ajax call returns", function() { + runs(function(){ + spyOn($, "ajax").andCallThrough(); + spyOn($.fn, 'addClass').andCallThrough(); + spyOn($.fn, 'removeClass').andCallThrough(); + link = $(draft_state['selector']); + link.click(); + }); + waitsFor(function(){ + // wait for "is-disabled" to be removed as a class + return !($(draft_state['selector']).hasClass("is-disabled")); + }, 500); + runs(function(){ + // check that the `is-disabled` class was added and removed + expect($.fn.addClass).toHaveBeenCalledWith("is-disabled"); + expect($.fn.removeClass).toHaveBeenCalledWith("is-disabled"); + + // make sure the link finishes without the `is-disabled` class + expect(link).not.toHaveClass("is-disabled"); + + // affirm that ajax was called + expect($.ajax).toHaveBeenCalled(); + }); + }); + }; + for (var i = 0; i < draft_states.length; i++) { + test_link_disabled_during_ajax_call(draft_states[i]); + }; + }); } ); diff --git a/cms/static/js/spec_helpers/modal_helpers.js b/cms/static/js/spec_helpers/modal_helpers.js index 8556cce60a..97cd94e838 100644 --- a/cms/static/js/spec_helpers/modal_helpers.js +++ b/cms/static/js/spec_helpers/modal_helpers.js @@ -1,8 +1,8 @@ /** * Provides helper methods for invoking Studio modal windows in Jasmine tests. */ -define(["jquery"], - function($) { +define(["jquery", "js/spec_helpers/view_helpers"], + function($, view_helpers) { var basicModalTemplate = readFixtures('basic-modal.underscore'), modalButtonTemplate = readFixtures('modal-button.underscore'), feedbackTemplate = readFixtures('system-feedback.underscore'), @@ -14,11 +14,7 @@ define(["jquery"], cancelModalIfShowing; installModalTemplates = function(append) { - if (append) { - appendSetFixtures($(" diff --git a/common/lib/xmodule/xmodule/templates/html/zooming_image.yaml b/common/lib/xmodule/xmodule/templates/html/zooming_image.yaml index dc79c75fff..ea0ad516f9 100644 --- a/common/lib/xmodule/xmodule/templates/html/zooming_image.yaml +++ b/common/lib/xmodule/xmodule/templates/html/zooming_image.yaml @@ -6,7 +6,7 @@ data: |

Some edX classes use extremely large, extremely detailed graphics. To make it easier to understand we can offer two versions of those graphics, with the zoomed section showing when you click on the main view.

The example below is from 7.00x: Introduction to Biology and shows a subset of the biochemical reactions that cells carry out.

You can view the chemical structures of the molecules by clicking on them. The magnified view also lists the enzymes involved in each step.

- +

Press spacebar to open the magifier.

magnify @@ -20,6 +20,12 @@ data: | height: 350, lightbox: false }); + $(document).keydown(function(event) { + if (event.keyCode == 32) { + event.preventDefault(); + $('.loupe img').click(); + } + }); }); // ]]>
diff --git a/common/lib/xmodule/xmodule/tests/templates/test/zooming_image.yaml b/common/lib/xmodule/xmodule/tests/templates/test/zooming_image.yaml index dc79c75fff..bba08a0d7a 100644 --- a/common/lib/xmodule/xmodule/tests/templates/test/zooming_image.yaml +++ b/common/lib/xmodule/xmodule/tests/templates/test/zooming_image.yaml @@ -6,7 +6,7 @@ data: |

Some edX classes use extremely large, extremely detailed graphics. To make it easier to understand we can offer two versions of those graphics, with the zoomed section showing when you click on the main view.

The example below is from 7.00x: Introduction to Biology and shows a subset of the biochemical reactions that cells carry out.

You can view the chemical structures of the molecules by clicking on them. The magnified view also lists the enzymes involved in each step.

- +

Press spacebar to open the magifier.

magnify @@ -20,7 +20,12 @@ data: | height: 350, lightbox: false }); + $(document).keydown(function(event) { + if (event.keyCode == 32) { + event.preventDefault(); + $('.loupe img').click(); + } + }); }); // ]]>
- diff --git a/common/lib/xmodule/xmodule/tests/test_course_module.py b/common/lib/xmodule/xmodule/tests/test_course_module.py index 6f1ffda2da..51022d6b9a 100644 --- a/common/lib/xmodule/xmodule/tests/test_course_module.py +++ b/common/lib/xmodule/xmodule/tests/test_course_module.py @@ -1,5 +1,5 @@ import unittest -from datetime import datetime +from datetime import datetime, timedelta from fs.memoryfs import MemoryFS @@ -49,7 +49,7 @@ class DummySystem(ImportSystem): ) -def get_dummy_course(start, announcement=None, is_new=None, advertised_start=None, end=None): +def get_dummy_course(start, announcement=None, is_new=None, advertised_start=None, end=None, certs=False): """Get a dummy course""" system = DummySystem(load_error_modules=True) @@ -69,17 +69,61 @@ def get_dummy_course(start, announcement=None, is_new=None, advertised_start=Non {announcement} {is_new} {advertised_start} - {end}> + {end} + certificates_show_before_end="{certs}"> Two houses, ... '''.format(org=ORG, course=COURSE, start=start, is_new=is_new, - announcement=announcement, advertised_start=advertised_start, end=end) + announcement=announcement, advertised_start=advertised_start, end=end, + certs=certs) return system.process_xml(start_xml) +class HasEndedMayCertifyTestCase(unittest.TestCase): + """Double check the semantics around when to finalize courses.""" + + def setUp(self): + system = DummySystem(load_error_modules=True) + #sample_xml = """ + # + # + # Two houses, ... + # + # + #""".format(org=ORG, course=COURSE) + past_end = (datetime.now() - timedelta(days=12)).strftime("%Y-%m-%dT%H:%M:00") + future_end = (datetime.now() + timedelta(days=12)).strftime("%Y-%m-%dT%H:%M:00") + self.past_show_certs = get_dummy_course("2012-01-01T12:00", end=past_end, certs=True) + self.past_noshow_certs = get_dummy_course("2012-01-01T12:00", end=past_end, certs=False) + self.future_show_certs = get_dummy_course("2012-01-01T12:00", end=future_end, certs=True) + self.future_noshow_certs = get_dummy_course("2012-01-01T12:00", end=future_end, certs=False) + #self.past_show_certs = system.process_xml(sample_xml.format(end=past_end, cert=True)) + #self.past_noshow_certs = system.process_xml(sample_xml.format(end=past_end, cert=False)) + #self.future_show_certs = system.process_xml(sample_xml.format(end=future_end, cert=True)) + #self.future_noshow_certs = system.process_xml(sample_xml.format(end=future_end, cert=False)) + + def test_has_ended(self): + """Check that has_ended correctly tells us when a course is over.""" + self.assertTrue(self.past_show_certs.has_ended()) + self.assertTrue(self.past_noshow_certs.has_ended()) + self.assertFalse(self.future_show_certs.has_ended()) + self.assertFalse(self.future_noshow_certs.has_ended()) + + def test_may_certify(self): + """Check that may_certify correctly tells us when a course may wrap.""" + self.assertTrue(self.past_show_certs.may_certify()) + self.assertTrue(self.past_noshow_certs.may_certify()) + self.assertTrue(self.future_show_certs.may_certify()) + self.assertFalse(self.future_noshow_certs.may_certify()) + + class IsNewCourseTestCase(unittest.TestCase): """Make sure the property is_new works on courses""" diff --git a/common/lib/xmodule/xmodule/tests/test_lti20_unit.py b/common/lib/xmodule/xmodule/tests/test_lti20_unit.py new file mode 100644 index 0000000000..93ca074d51 --- /dev/null +++ b/common/lib/xmodule/xmodule/tests/test_lti20_unit.py @@ -0,0 +1,372 @@ +# -*- coding: utf-8 -*- +"""Tests for LTI Xmodule LTIv2.0 functional logic.""" +import textwrap + +from mock import Mock +from xmodule.lti_module import LTIDescriptor +from xmodule.lti_2_util import LTIError + +from . import LogicTest + + +class LTI20RESTResultServiceTest(LogicTest): + """Logic tests for LTI module. LTI2.0 REST ResultService""" + descriptor_class = LTIDescriptor + + def setUp(self): + super(LTI20RESTResultServiceTest, self).setUp() + self.environ = {'wsgi.url_scheme': 'http', 'REQUEST_METHOD': 'POST'} + self.system.get_real_user = Mock() + self.system.publish = Mock() + self.system.rebind_noauth_module_to_user = Mock() + self.user_id = self.xmodule.runtime.anonymous_student_id + self.lti_id = self.xmodule.lti_id + + def test_sanitize_get_context(self): + """Tests that the get_context function does basic sanitization""" + # get_context, unfortunately, requires a lot of mocking machinery + mocked_course = Mock(lti_passports=['lti_id:test_client:test_secret']) + modulestore = Mock() + modulestore.get_item.return_value = mocked_course + runtime = Mock(modulestore=modulestore) + self.xmodule.descriptor.runtime = runtime + self.xmodule.lti_id = "lti_id" + self.xmodule.scope_ids.usage_id = "mocked" + + test_cases = ( # (before sanitize, after sanitize) + (u"plaintext", u"plaintext"), + (u"a ", u"a <script>alert(3)</script>"), # encodes scripts + (u"bold 包", u"bold 包"), # unicode, and tags pass through + ) + for case in test_cases: + self.xmodule.score_comment = case[0] + self.assertEqual( + case[1], + self.xmodule.get_context()['comment'] + ) + + def test_lti20_rest_bad_contenttype(self): + """ + Input with bad content type + """ + with self.assertRaisesRegexp(LTIError, "Content-Type must be"): + request = Mock(headers={u'Content-Type': u'Non-existent'}) + self.xmodule.verify_lti_2_0_result_rest_headers(request) + + def test_lti20_rest_failed_oauth_body_verify(self): + """ + Input with bad oauth body hash verification + """ + err_msg = "OAuth body verification failed" + self.xmodule.verify_oauth_body_sign = Mock(side_effect=LTIError(err_msg)) + with self.assertRaisesRegexp(LTIError, err_msg): + request = Mock(headers={u'Content-Type': u'application/vnd.ims.lis.v2.result+json'}) + self.xmodule.verify_lti_2_0_result_rest_headers(request) + + def test_lti20_rest_good_headers(self): + """ + Input with good oauth body hash verification + """ + self.xmodule.verify_oauth_body_sign = Mock(return_value=True) + + request = Mock(headers={u'Content-Type': u'application/vnd.ims.lis.v2.result+json'}) + self.xmodule.verify_lti_2_0_result_rest_headers(request) + # We just want the above call to complete without exceptions, and to have called verify_oauth_body_sign + self.assertTrue(self.xmodule.verify_oauth_body_sign.called) + + BAD_DISPATCH_INPUTS = [ + None, + u"", + u"abcd" + u"notuser/abcd" + u"user/" + u"user//" + u"user/gbere/" + u"user/gbere/xsdf" + u"user/ಠ益ಠ" # not alphanumeric + ] + + def test_lti20_rest_bad_dispatch(self): + """ + Test the error cases for the "dispatch" argument to the LTI 2.0 handler. Anything that doesn't + fit the form user/ + """ + for einput in self.BAD_DISPATCH_INPUTS: + with self.assertRaisesRegexp(LTIError, "No valid user id found in endpoint URL"): + self.xmodule.parse_lti_2_0_handler_suffix(einput) + + GOOD_DISPATCH_INPUTS = [ + (u"user/abcd3", u"abcd3"), + (u"user/Äbcdè2", u"Äbcdè2"), # unicode, just to make sure + ] + + def test_lti20_rest_good_dispatch(self): + """ + Test the good cases for the "dispatch" argument to the LTI 2.0 handler. Anything that does + fit the form user/ + """ + for ginput, expected in self.GOOD_DISPATCH_INPUTS: + self.assertEquals(self.xmodule.parse_lti_2_0_handler_suffix(ginput), expected) + + BAD_JSON_INPUTS = [ + # (bad inputs, error message expected) + ([ + u"kk", # ValueError + u"{{}", # ValueError + u"{}}", # ValueError + 3, # TypeError + {}, # TypeError + ], u"Supplied JSON string in request body could not be decoded"), + ([ + u"3", # valid json, not array or object + u"[]", # valid json, array too small + u"[3, {}]", # valid json, 1st element not an object + ], u"Supplied JSON string is a list that does not contain an object as the first element"), + ([ + u'{"@type": "NOTResult"}', # @type key must have value 'Result' + ], u"JSON object does not contain correct @type attribute"), + ([ + # @context missing + u'{"@type": "Result", "resultScore": 0.1}', + ], u"JSON object does not contain required key"), + ([ + u''' + {"@type": "Result", + "@context": "http://purl.imsglobal.org/ctx/lis/v2/Result", + "resultScore": 100}''' # score out of range + ], u"score value outside the permitted range of 0-1."), + ([ + u''' + {"@type": "Result", + "@context": "http://purl.imsglobal.org/ctx/lis/v2/Result", + "resultScore": "1b"}''', # score ValueError + u''' + {"@type": "Result", + "@context": "http://purl.imsglobal.org/ctx/lis/v2/Result", + "resultScore": {}}''', # score TypeError + ], u"Could not convert resultScore to float"), + ] + + def test_lti20_bad_json(self): + """ + Test that bad json_str to parse_lti_2_0_result_json inputs raise appropriate LTI Error + """ + for error_inputs, error_message in self.BAD_JSON_INPUTS: + for einput in error_inputs: + with self.assertRaisesRegexp(LTIError, error_message): + self.xmodule.parse_lti_2_0_result_json(einput) + + GOOD_JSON_INPUTS = [ + (u''' + {"@type": "Result", + "@context": "http://purl.imsglobal.org/ctx/lis/v2/Result", + "resultScore": 0.1}''', u""), # no comment means we expect "" + (u''' + [{"@type": "Result", + "@context": "http://purl.imsglobal.org/ctx/lis/v2/Result", + "@id": "anon_id:abcdef0123456789", + "resultScore": 0.1}]''', u""), # OK to have array of objects -- just take the first. @id is okay too + (u''' + {"@type": "Result", + "@context": "http://purl.imsglobal.org/ctx/lis/v2/Result", + "resultScore": 0.1, + "comment": "ಠ益ಠ"}''', u"ಠ益ಠ"), # unicode comment + ] + + def test_lti20_good_json(self): + """ + Test the parsing of good comments + """ + for json_str, expected_comment in self.GOOD_JSON_INPUTS: + score, comment = self.xmodule.parse_lti_2_0_result_json(json_str) + self.assertEqual(score, 0.1) + self.assertEqual(comment, expected_comment) + + GOOD_JSON_PUT = textwrap.dedent(u""" + {"@type": "Result", + "@context": "http://purl.imsglobal.org/ctx/lis/v2/Result", + "@id": "anon_id:abcdef0123456789", + "resultScore": 0.1, + "comment": "ಠ益ಠ"} + """).encode('utf-8') + + GOOD_JSON_PUT_LIKE_DELETE = textwrap.dedent(u""" + {"@type": "Result", + "@context": "http://purl.imsglobal.org/ctx/lis/v2/Result", + "@id": "anon_id:abcdef0123456789", + "comment": "ಠ益ಠ"} + """).encode('utf-8') + + def get_signed_lti20_mock_request(self, body, method=u'PUT'): + """ + Example of signed from LTI 2.0 Provider. Signatures and hashes are example only and won't verify + """ + mock_request = Mock() + mock_request.headers = { + 'Content-Type': 'application/vnd.ims.lis.v2.result+json', + 'Authorization': ( + u'OAuth oauth_nonce="135685044251684026041377608307", ' + u'oauth_timestamp="1234567890", oauth_version="1.0", ' + u'oauth_signature_method="HMAC-SHA1", ' + u'oauth_consumer_key="test_client_key", ' + u'oauth_signature="my_signature%3D", ' + u'oauth_body_hash="gz+PeJZuF2//n9hNUnDj2v5kN70="' + ) + } + mock_request.url = u'http://testurl' + mock_request.http_method = method + mock_request.method = method + mock_request.body = body + return mock_request + + USER_STANDIN = Mock() + USER_STANDIN.id = 999 + + def setup_system_xmodule_mocks_for_lti20_request_test(self): + """ + Helper fn to set up mocking for lti 2.0 request test + """ + self.system.get_real_user = Mock(return_value=self.USER_STANDIN) + self.xmodule.max_score = Mock(return_value=1.0) + self.xmodule.get_client_key_secret = Mock(return_value=('test_client_key', u'test_client_secret')) + self.xmodule.verify_oauth_body_sign = Mock() + + def test_lti20_put_like_delete_success(self): + """ + The happy path for LTI 2.0 PUT that acts like a delete + """ + self.setup_system_xmodule_mocks_for_lti20_request_test() + SCORE = 0.55 # pylint: disable=invalid-name + COMMENT = u"ಠ益ಠ" # pylint: disable=invalid-name + self.xmodule.module_score = SCORE + self.xmodule.score_comment = COMMENT + mock_request = self.get_signed_lti20_mock_request(self.GOOD_JSON_PUT_LIKE_DELETE) + # Now call the handler + response = self.xmodule.lti_2_0_result_rest_handler(mock_request, "user/abcd") + # Now assert there's no score + self.assertEqual(response.status_code, 200) + self.assertIsNone(self.xmodule.module_score) + self.assertEqual(self.xmodule.score_comment, u"") + (_, evt_type, called_grade_obj), _ = self.system.publish.call_args + self.assertEqual(called_grade_obj, {'user_id': self.USER_STANDIN.id, 'value': None, 'max_value': None}) + self.assertEqual(evt_type, 'grade') + + def test_lti20_delete_success(self): + """ + The happy path for LTI 2.0 DELETE + """ + self.setup_system_xmodule_mocks_for_lti20_request_test() + SCORE = 0.55 # pylint: disable=invalid-name + COMMENT = u"ಠ益ಠ" # pylint: disable=invalid-name + self.xmodule.module_score = SCORE + self.xmodule.score_comment = COMMENT + mock_request = self.get_signed_lti20_mock_request("", method=u'DELETE') + # Now call the handler + response = self.xmodule.lti_2_0_result_rest_handler(mock_request, "user/abcd") + # Now assert there's no score + self.assertEqual(response.status_code, 200) + self.assertIsNone(self.xmodule.module_score) + self.assertEqual(self.xmodule.score_comment, u"") + (_, evt_type, called_grade_obj), _ = self.system.publish.call_args + self.assertEqual(called_grade_obj, {'user_id': self.USER_STANDIN.id, 'value': None, 'max_value': None}) + self.assertEqual(evt_type, 'grade') + + def test_lti20_put_set_score_success(self): + """ + The happy path for LTI 2.0 PUT that sets a score + """ + self.setup_system_xmodule_mocks_for_lti20_request_test() + mock_request = self.get_signed_lti20_mock_request(self.GOOD_JSON_PUT) + # Now call the handler + response = self.xmodule.lti_2_0_result_rest_handler(mock_request, "user/abcd") + # Now assert + self.assertEqual(response.status_code, 200) + self.assertEqual(self.xmodule.module_score, 0.1) + self.assertEqual(self.xmodule.score_comment, u"ಠ益ಠ") + (_, evt_type, called_grade_obj), _ = self.system.publish.call_args + self.assertEqual(evt_type, 'grade') + self.assertEqual(called_grade_obj, {'user_id': self.USER_STANDIN.id, 'value': 0.1, 'max_value': 1.0}) + + def test_lti20_get_no_score_success(self): + """ + The happy path for LTI 2.0 GET when there's no score + """ + self.setup_system_xmodule_mocks_for_lti20_request_test() + mock_request = self.get_signed_lti20_mock_request("", method=u'GET') + # Now call the handler + response = self.xmodule.lti_2_0_result_rest_handler(mock_request, "user/abcd") + # Now assert + self.assertEqual(response.status_code, 200) + self.assertEqual(response.json, {"@context": "http://purl.imsglobal.org/ctx/lis/v2/Result", + "@type": "Result"}) + + def test_lti20_get_with_score_success(self): + """ + The happy path for LTI 2.0 GET when there is a score + """ + self.setup_system_xmodule_mocks_for_lti20_request_test() + SCORE = 0.55 # pylint: disable=invalid-name + COMMENT = u"ಠ益ಠ" # pylint: disable=invalid-name + self.xmodule.module_score = SCORE + self.xmodule.score_comment = COMMENT + mock_request = self.get_signed_lti20_mock_request("", method=u'GET') + # Now call the handler + response = self.xmodule.lti_2_0_result_rest_handler(mock_request, "user/abcd") + # Now assert + self.assertEqual(response.status_code, 200) + self.assertEqual(response.json, {"@context": "http://purl.imsglobal.org/ctx/lis/v2/Result", + "@type": "Result", + "resultScore": SCORE, + "comment": COMMENT}) + + UNSUPPORTED_HTTP_METHODS = ["OPTIONS", "HEAD", "POST", "TRACE", "CONNECT"] + + def test_lti20_unsupported_method_error(self): + """ + Test we get a 404 when we don't GET or PUT + """ + self.setup_system_xmodule_mocks_for_lti20_request_test() + mock_request = self.get_signed_lti20_mock_request(self.GOOD_JSON_PUT) + for bad_method in self.UNSUPPORTED_HTTP_METHODS: + mock_request.method = bad_method + response = self.xmodule.lti_2_0_result_rest_handler(mock_request, "user/abcd") + self.assertEqual(response.status_code, 404) + + def test_lti20_request_handler_bad_headers(self): + """ + Test that we get a 401 when header verification fails + """ + self.setup_system_xmodule_mocks_for_lti20_request_test() + self.xmodule.verify_lti_2_0_result_rest_headers = Mock(side_effect=LTIError()) + mock_request = self.get_signed_lti20_mock_request(self.GOOD_JSON_PUT) + response = self.xmodule.lti_2_0_result_rest_handler(mock_request, "user/abcd") + self.assertEqual(response.status_code, 401) + + def test_lti20_request_handler_bad_dispatch_user(self): + """ + Test that we get a 404 when there's no (or badly formatted) user specified in the url + """ + self.setup_system_xmodule_mocks_for_lti20_request_test() + mock_request = self.get_signed_lti20_mock_request(self.GOOD_JSON_PUT) + response = self.xmodule.lti_2_0_result_rest_handler(mock_request, None) + self.assertEqual(response.status_code, 404) + + def test_lti20_request_handler_bad_json(self): + """ + Test that we get a 404 when json verification fails + """ + self.setup_system_xmodule_mocks_for_lti20_request_test() + self.xmodule.parse_lti_2_0_result_json = Mock(side_effect=LTIError()) + mock_request = self.get_signed_lti20_mock_request(self.GOOD_JSON_PUT) + response = self.xmodule.lti_2_0_result_rest_handler(mock_request, "user/abcd") + self.assertEqual(response.status_code, 404) + + def test_lti20_request_handler_bad_user(self): + """ + Test that we get a 404 when the supplied user does not exist + """ + self.setup_system_xmodule_mocks_for_lti20_request_test() + self.system.get_real_user = Mock(return_value=None) + mock_request = self.get_signed_lti20_mock_request(self.GOOD_JSON_PUT) + response = self.xmodule.lti_2_0_result_rest_handler(mock_request, "user/abcd") + self.assertEqual(response.status_code, 404) diff --git a/common/lib/xmodule/xmodule/tests/test_lti_unit.py b/common/lib/xmodule/xmodule/tests/test_lti_unit.py index 1ab5fa5b68..55a7e11b96 100644 --- a/common/lib/xmodule/xmodule/tests/test_lti_unit.py +++ b/common/lib/xmodule/xmodule/tests/test_lti_unit.py @@ -2,21 +2,15 @@ """Test for LTI Xmodule functional logic.""" from mock import Mock, patch, PropertyMock -import mock import textwrap -import json from lxml import etree -import json from webob.request import Request from copy import copy -from collections import OrderedDict import urllib -import oauthlib -import hashlib -import base64 -from xmodule.lti_module import LTIDescriptor, LTIError +from xmodule.lti_module import LTIDescriptor +from xmodule.lti_2_util import LTIError from . import LogicTest @@ -56,6 +50,7 @@ class LTIModuleTest(LogicTest): """) self.system.get_real_user = Mock() self.system.publish = Mock() + self.system.rebind_noauth_module_to_user = Mock() self.user_id = self.xmodule.runtime.anonymous_student_id self.lti_id = self.xmodule.lti_id @@ -239,6 +234,7 @@ class LTIModuleTest(LogicTest): self.assertEqual(response.status_code, 200) self.assertDictEqual(expected_response, real_response) + self.assertEqual(self.xmodule.module_score, float(self.DEFAULTS['grade'])) def test_user_id(self): expected_user_id = unicode(urllib.quote(self.xmodule.runtime.anonymous_student_id)) @@ -246,13 +242,16 @@ class LTIModuleTest(LogicTest): self.assertEqual(real_user_id, expected_user_id) def test_outcome_service_url(self): - expected_outcome_service_url = '{scheme}://{host}{path}'.format( - scheme='http' if self.xmodule.runtime.debug else 'https', - host=self.xmodule.runtime.hostname, - path=self.xmodule.runtime.handler_url(self.xmodule, 'grade_handler', thirdparty=True).rstrip('/?') - ) - real_outcome_service_url = self.xmodule.get_outcome_service_url() - self.assertEqual(real_outcome_service_url, expected_outcome_service_url) + mock_url_prefix = 'https://hostname/' + test_service_name = "test_service" + + def mock_handler_url(block, handler_name, **kwargs): # pylint: disable=unused-argument + """Mock function for returning fully-qualified handler urls""" + return mock_url_prefix + handler_name + + self.xmodule.runtime.handler_url = Mock(side_effect=mock_handler_url) + real_outcome_service_url = self.xmodule.get_outcome_service_url(service_name=test_service_name) + self.assertEqual(real_outcome_service_url, mock_url_prefix + test_service_name) def test_resource_link_id(self): with patch('xmodule.lti_module.LTIModule.location', new_callable=PropertyMock) as mock_location: @@ -392,13 +391,11 @@ class LTIModuleTest(LogicTest): def test_max_score(self): self.xmodule.weight = 100.0 - self.xmodule.graded = True + self.assertFalse(self.xmodule.has_score) self.assertEqual(self.xmodule.max_score(), None) self.xmodule.has_score = True - self.assertEqual(self.xmodule.max_score(), 100.0) - self.xmodule.graded = False self.assertEqual(self.xmodule.max_score(), 100.0) def test_context_id(self): diff --git a/common/lib/xmodule/xmodule/vertical_module.py b/common/lib/xmodule/xmodule/vertical_module.py index 10456e4ce4..73641f41c3 100644 --- a/common/lib/xmodule/xmodule/vertical_module.py +++ b/common/lib/xmodule/xmodule/vertical_module.py @@ -3,6 +3,7 @@ from xmodule.x_module import XModule from xmodule.seq_module import SequenceDescriptor from xmodule.progress import Progress from pkg_resources import resource_string +from copy import copy # HACK: This shouldn't be hard-coded to two types # OBSOLETE: This obsoletes 'type' @@ -17,11 +18,30 @@ class VerticalModule(VerticalFields, XModule): ''' Layout module for laying out submodules vertically.''' def student_view(self, context): + # When rendering a Studio preview, use a different template to support drag and drop. + if context and context.get('runtime_type', None) == 'studio': + return self.studio_preview_view(context) + + return self.render_view(context, 'vert_module.html') + + def studio_preview_view(self, context): + """ + Renders the Studio preview view, which supports drag and drop. + """ + return self.render_view(context, 'vert_module_studio_view.html') + + def render_view(self, context, template_name): + """ + Helper method for rendering student_view and the Studio version. + """ fragment = Fragment() contents = [] + child_context = {} if not context else copy(context) + child_context['child_of_vertical'] = True + for child in self.get_display_items(): - rendered_child = child.render('student_view', context) + rendered_child = child.render('student_view', child_context) fragment.add_frag_resources(rendered_child) contents.append({ @@ -29,8 +49,9 @@ class VerticalModule(VerticalFields, XModule): 'content': rendered_child.content }) - fragment.add_content(self.system.render_template('vert_module.html', { - 'items': contents + fragment.add_content(self.system.render_template(template_name, { + 'items': contents, + 'xblock_context': context, })) return fragment diff --git a/common/lib/xmodule/xmodule/video_module/video_handlers.py b/common/lib/xmodule/xmodule/video_module/video_handlers.py index fc06701d02..a51655395c 100644 --- a/common/lib/xmodule/xmodule/video_module/video_handlers.py +++ b/common/lib/xmodule/xmodule/video_module/video_handlers.py @@ -11,6 +11,7 @@ from webob import Response from xblock.core import XBlock +from xmodule.course_module import CourseDescriptor from xmodule.exceptions import NotFoundError from xmodule.fields import RelativeTime @@ -22,6 +23,7 @@ from .transcripts_utils import ( youtube_speed_dict, Transcript, save_to_store, + subs_filename ) @@ -171,6 +173,39 @@ class VideoStudentViewHandlers(object): return content, filename, Transcript.mime_types[transcript_format] + def get_static_transcript(self, request): + """ + Courses that are imported with the --nostatic flag do not show + transcripts/captions properly even if those captions are stored inside + their static folder. This adds a last resort method of redirecting to + the static asset path of the course if the transcript can't be found + inside the contentstore and the course has the static_asset_path field + set. + """ + response = Response(status=404) + # Only do redirect for English + if not self.transcript_language == 'en': + return response + + video_id = request.GET.get('videoId', None) + if video_id: + transcript_name = video_id + else: + transcript_name = self.sub + + if transcript_name: + course_location = CourseDescriptor.id_to_location(self.course_id) + course = self.descriptor.runtime.modulestore.get_item(course_location) + if course.static_asset_path: + response = Response( + status=307, + location='/static/{0}/{1}'.format( + course.static_asset_path, + subs_filename(transcript_name, self.transcript_language) + ) + ) + return response + @XBlock.handler def transcript(self, request, dispatch): """ @@ -206,13 +241,17 @@ class VideoStudentViewHandlers(object): if language != self.transcript_language: self.transcript_language = language + try: transcript = self.translation(request.GET.get('videoId', None)) + except NotFoundError, ex: + log.info(ex.message) + # Try to return static URL redirection as last resort + # if no translation is required + return self.get_static_transcript(request) except ( TranscriptException, - NotFoundError, UnicodeDecodeError, - TranscriptException, TranscriptsGenerationException ) as ex: log.info(ex.message) diff --git a/common/lib/xmodule/xmodule/video_module/video_module.py b/common/lib/xmodule/xmodule/video_module/video_module.py index 11e3484b91..76f8ca7be3 100644 --- a/common/lib/xmodule/xmodule/video_module/video_module.py +++ b/common/lib/xmodule/xmodule/video_module/video_module.py @@ -357,8 +357,8 @@ class VideoDescriptor(VideoFields, VideoStudioViewHandlers, TabsEditingDescripto _ = self.runtime.service(self, "i18n").ugettext video_url.update({ - 'help': _('A YouTube URL or a link to a file hosted anywhere on the web.'), - 'display_name': 'Video URL', + 'help': _('The URL for your video. This can be a YouTube URL or a link to an .mp4, .ogg, or .webm video file hosted elsewhere on the Internet.'), + 'display_name': 'Default Video URL', 'field_name': 'video_url', 'type': 'VideoList', 'default_value': [get_youtube_link(youtube_id_1_0['default_value'])] diff --git a/common/lib/xmodule/xmodule/video_module/video_xfields.py b/common/lib/xmodule/xmodule/video_module/video_xfields.py index 32aace782f..40332aae01 100644 --- a/common/lib/xmodule/xmodule/video_module/video_xfields.py +++ b/common/lib/xmodule/xmodule/video_module/video_xfields.py @@ -14,7 +14,7 @@ _ = lambda text: text class VideoFields(object): """Fields for `VideoModule` and `VideoDescriptor`.""" display_name = String( - display_name="Display Name", help="Display name for this module.", + display_name="Component Display Name", help="The name students see. This name appears in the course ribbon and as a header for the video.", default="Video", scope=Scope.settings ) @@ -27,38 +27,38 @@ class VideoFields(object): # TODO: This should be moved to Scope.content, but this will # require data migration to support the old video module. youtube_id_1_0 = String( - help="This is the Youtube ID reference for the normal speed video.", - display_name="Youtube ID", + help="Optional, for older browsers: the YouTube ID for the normal speed video.", + display_name="YouTube ID", scope=Scope.settings, default="OEoXaMPEzfM" ) youtube_id_0_75 = String( - help="Optional, for older browsers: the Youtube ID for the .75x speed video.", - display_name="Youtube ID for .75x speed", + help="Optional, for older browsers: the YouTube ID for the .75x speed video.", + display_name="YouTube ID for .75x speed", scope=Scope.settings, default="" ) youtube_id_1_25 = String( - help="Optional, for older browsers: the Youtube ID for the 1.25x speed video.", - display_name="Youtube ID for 1.25x speed", + help="Optional, for older browsers: the YouTube ID for the 1.25x speed video.", + display_name="YouTube ID for 1.25x speed", scope=Scope.settings, default="" ) youtube_id_1_5 = String( - help="Optional, for older browsers: the Youtube ID for the 1.5x speed video.", - display_name="Youtube ID for 1.5x speed", + help="Optional, for older browsers: the YouTube ID for the 1.5x speed video.", + display_name="YouTube ID for 1.5x speed", scope=Scope.settings, default="" ) start_time = RelativeTime( # datetime.timedelta object - help="Start time for the video (HH:MM:SS). Max value is 23:59:59.", - display_name="Start Time", + help="Time you want the video to start if you don't want the entire video to play. Formatted as HH:MM:SS. The maximum value is 23:59:59.", + display_name="Video Start Time", scope=Scope.settings, default=datetime.timedelta(seconds=0) ) end_time = RelativeTime( # datetime.timedelta object - help="End time for the video (HH:MM:SS). Max value is 23:59:59.", - display_name="End Time", + help="Time you want the video to stop if you don't want the entire video to play. Formatted as HH:MM:SS. The maximum value is 23:59:59.", + display_name="Video Stop Time", scope=Scope.settings, default=datetime.timedelta(seconds=0) ) @@ -73,44 +73,44 @@ class VideoFields(object): default="" ) download_video = Boolean( - help="Show a link beneath the video to allow students to download the video. Note: You must add at least one video source below.", + help="Allow students to download versions of this video in different formats if they cannot use the edX video player or do not have access to YouTube. You must add at least one non-YouTube URL in the Video File URLs field.", display_name="Video Download Allowed", scope=Scope.settings, default=False ) html5_sources = List( - help="A list of filenames to be used with HTML5 video. The first supported filetype will be displayed.", - display_name="Video Sources", + help="The URL or URLs where you’ve posted non-YouTube versions of the video. Each URL must end in .mpeg, .mp4, .ogg, or .webm and cannot be a YouTube URL. Students will be able to view the first listed video that's compatible with the student's computer. To allow students to download these videos, set Video Download Allowed to True.", + display_name="Video File URLs", scope=Scope.settings, ) track = String( - help="The external URL to download the timed transcript track. This appears as a link beneath the video.", - display_name="Download Transcript", + help="By default, students can download an .srt or .txt transcript when you set Download Transcript Allowed to True. If you want to provide a downloadable transcript in a different format, we recommend that you upload a handout by using the Upload a Handout field. If this isn't possible, you can post a transcript file on the Files & Uploads page or on the Internet, and then add the URL for the transcript here. Students see a link to download that transcript below the video.", + display_name="Downloadable Transcript URL", scope=Scope.settings, default='' ) download_track = Boolean( - help="Show a link beneath the video to allow students to download the transcript. Note: You must add a link to the HTML5 Transcript field above.", - display_name="Transcript Download Allowed", + help="Allow students to download the timed transcript. A link to download the file appears below the video. By default, the transcript is an .srt or .txt file. If you want to provide the transcript for download in a different format, upload a file by using the Upload Handout field.", + display_name="Download Transcript Allowed", scope=Scope.settings, default=False ) sub = String( - help="The name of the timed transcript track (for non-Youtube videos).", - display_name="Transcript (primary)", + help="The default transcript for the video, from the Default Timed Transcript field on the Basic tab. This transcript should be in English. You don't have to change this setting.", + display_name="Default Timed Transcript", scope=Scope.settings, default="" ) show_captions = Boolean( - help="This controls whether or not captions are shown by default.", - display_name="Transcript Display", + help="Specify whether the transcripts appear with the video by default.", + display_name="Show Transcript", scope=Scope.settings, default=True ) # Data format: {'de': 'german_translation', 'uk': 'ukrainian_translation'} transcripts = Dict( - help="Add additional transcripts in other languages.", - display_name="Transcript Translations", + help="Add transcripts in different languages. Click below to specify a language and upload an .srt transcript file for that language.", + display_name="Transcript Languages", scope=Scope.settings, default={} ) @@ -131,16 +131,16 @@ class VideoFields(object): default='srt', ) speed = Float( - help="The last speed that was explicitly set by user for the video.", + help="The last speed that the user specified for the video.", scope=Scope.user_state, ) global_speed = Float( - help="Default speed in cases when speed wasn't explicitly for specific video.", + help="The default speed for the video.", scope=Scope.preferences, default=1.0 ) youtube_is_available = Boolean( - help="The availaibility of YouTube API for the user.", + help="Specify whether YouTube is available for the user.", scope=Scope.user_info, default=True ) diff --git a/common/lib/xmodule/xmodule/x_module.py b/common/lib/xmodule/xmodule/x_module.py index a57d0edea6..b4fc3cb447 100644 --- a/common/lib/xmodule/xmodule/x_module.py +++ b/common/lib/xmodule/xmodule/x_module.py @@ -1119,7 +1119,7 @@ class XMLParsingSystem(DescriptorSystem): self.process_xml = process_xml -class ModuleSystem(MetricsMixin,ConfigurableFragmentWrapper, Runtime): # pylint: disable=abstract-method +class ModuleSystem(MetricsMixin, ConfigurableFragmentWrapper, Runtime): # pylint: disable=abstract-method """ This is an abstraction such that x_modules can function independent of the courseware (e.g. import into other types of courseware, LMS, @@ -1139,7 +1139,7 @@ class ModuleSystem(MetricsMixin,ConfigurableFragmentWrapper, Runtime): # pylint open_ended_grading_interface=None, s3_interface=None, cache=None, can_execute_unsafe_code=None, replace_course_urls=None, replace_jump_to_id_urls=None, error_descriptor_class=None, get_real_user=None, - field_data=None, get_user_role=None, + field_data=None, get_user_role=None, rebind_noauth_module_to_user=None, **kwargs): """ Create a closure around the system environment. @@ -1198,6 +1198,9 @@ class ModuleSystem(MetricsMixin,ConfigurableFragmentWrapper, Runtime): # pylint for LMS and Studio. field_data - the `FieldData` to use for backing XBlock storage. + + rebind_noauth_module_to_user - rebinds module bound to AnonymousUser to a real user...used in LTI + modules, which have an anonymous handler, to set legitimate users' data """ # Usage_store is unused, and field_data is often supplanted with an @@ -1236,6 +1239,7 @@ class ModuleSystem(MetricsMixin,ConfigurableFragmentWrapper, Runtime): # pylint self.get_user_role = get_user_role self.descriptor_runtime = descriptor_runtime + self.rebind_noauth_module_to_user = rebind_noauth_module_to_user def get(self, attr): """ provide uniform access to attributes (like etree).""" diff --git a/common/static/coffee/spec/discussion/view/response_comment_view_spec.coffee b/common/static/coffee/spec/discussion/view/response_comment_view_spec.coffee index 05bfe7ee40..4ce062e9b9 100644 --- a/common/static/coffee/spec/discussion/view/response_comment_view_spec.coffee +++ b/common/static/coffee/spec/discussion/view/response_comment_view_spec.coffee @@ -141,8 +141,6 @@ describe 'ResponseCommentView', -> spyOn(@view, 'cancelEdit') spyOn($, "ajax").andCallFake( (params) => - expect(params.url._parts.path).toEqual("/courses/edX/999/test/discussion/comments/01234567/update") - expect(params.data.body).toEqual(@updatedBody) if @ajaxSucceed params.success() else @@ -154,6 +152,8 @@ describe 'ResponseCommentView', -> @ajaxSucceed = true @view.update(makeEventSpy()) expect($.ajax).toHaveBeenCalled() + expect($.ajax.mostRecentCall.args[0].url._parts.path).toEqual('/courses/edX/999/test/discussion/comments/01234567/update') + expect($.ajax.mostRecentCall.args[0].data.body).toEqual(@updatedBody) expect(@view.model.get("body")).toEqual(@updatedBody) expect(@view.cancelEdit).toHaveBeenCalled() @@ -162,6 +162,8 @@ describe 'ResponseCommentView', -> @ajaxSucceed = false @view.update(makeEventSpy()) expect($.ajax).toHaveBeenCalled() + expect($.ajax.mostRecentCall.args[0].url._parts.path).toEqual('/courses/edX/999/test/discussion/comments/01234567/update') + expect($.ajax.mostRecentCall.args[0].data.body).toEqual(@updatedBody) expect(@view.model.get("body")).toEqual(originalBody) expect(@view.cancelEdit).not.toHaveBeenCalled() expect(@view.$(".edit-comment-form-errors *").length).toEqual(1) diff --git a/common/static/js/vendor/jquery.simulate.js b/common/static/js/vendor/jquery.simulate.js new file mode 100644 index 0000000000..18da5dd16f --- /dev/null +++ b/common/static/js/vendor/jquery.simulate.js @@ -0,0 +1,312 @@ + /*! + * jQuery Simulate v@VERSION - simulate browser mouse and keyboard events + * https://github.com/jquery/jquery-simulate + * + * Copyright 2012 jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + * + * Date: @DATE + */ + +;(function( $, undefined ) { + +var rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|contextmenu)|click/; + +$.fn.simulate = function( type, options ) { + return this.each(function() { + new $.simulate( this, type, options ); + }); +}; + +$.simulate = function( elem, type, options ) { + var method = $.camelCase( "simulate-" + type ); + + this.target = elem; + this.options = options; + + if ( this[ method ] ) { + this[ method ](); + } else { + this.simulateEvent( elem, type, options ); + } +}; + +$.extend( $.simulate, { + + keyCode: { + BACKSPACE: 8, + COMMA: 188, + DELETE: 46, + DOWN: 40, + END: 35, + ENTER: 13, + ESCAPE: 27, + HOME: 36, + LEFT: 37, + NUMPAD_ADD: 107, + NUMPAD_DECIMAL: 110, + NUMPAD_DIVIDE: 111, + NUMPAD_ENTER: 108, + NUMPAD_MULTIPLY: 106, + NUMPAD_SUBTRACT: 109, + PAGE_DOWN: 34, + PAGE_UP: 33, + PERIOD: 190, + RIGHT: 39, + SPACE: 32, + TAB: 9, + UP: 38 + }, + + buttonCode: { + LEFT: 0, + MIDDLE: 1, + RIGHT: 2 + } +}); + +$.extend( $.simulate.prototype, { + + simulateEvent: function( elem, type, options ) { + var event = this.createEvent( type, options ); + this.dispatchEvent( elem, type, event, options ); + }, + + createEvent: function( type, options ) { + if ( rkeyEvent.test( type ) ) { + return this.keyEvent( type, options ); + } + + if ( rmouseEvent.test( type ) ) { + return this.mouseEvent( type, options ); + } + }, + + mouseEvent: function( type, options ) { + var event, eventDoc, doc, body; + options = $.extend({ + bubbles: true, + cancelable: (type !== "mousemove"), + view: window, + detail: 0, + screenX: 0, + screenY: 0, + clientX: 1, + clientY: 1, + ctrlKey: false, + altKey: false, + shiftKey: false, + metaKey: false, + button: 0, + relatedTarget: undefined + }, options ); + + if ( document.createEvent ) { + event = document.createEvent( "MouseEvents" ); + event.initMouseEvent( type, options.bubbles, options.cancelable, + options.view, options.detail, + options.screenX, options.screenY, options.clientX, options.clientY, + options.ctrlKey, options.altKey, options.shiftKey, options.metaKey, + options.button, options.relatedTarget || document.body.parentNode ); + + // IE 9+ creates events with pageX and pageY set to 0. + // Trying to modify the properties throws an error, + // so we define getters to return the correct values. + if ( event.pageX === 0 && event.pageY === 0 && Object.defineProperty ) { + eventDoc = event.relatedTarget.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + Object.defineProperty( event, "pageX", { + get: function() { + return options.clientX + + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - + ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + } + }); + Object.defineProperty( event, "pageY", { + get: function() { + return options.clientY + + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - + ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + }); + } + } else if ( document.createEventObject ) { + event = document.createEventObject(); + $.extend( event, options ); + // standards event.button uses constants defined here: http://msdn.microsoft.com/en-us/library/ie/ff974877(v=vs.85).aspx + // old IE event.button uses constants defined here: http://msdn.microsoft.com/en-us/library/ie/ms533544(v=vs.85).aspx + // so we actually need to map the standard back to oldIE + event.button = { + 0: 1, + 1: 4, + 2: 2 + }[ event.button ] || event.button; + } + + return event; + }, + + keyEvent: function( type, options ) { + var event; + options = $.extend({ + bubbles: true, + cancelable: true, + view: window, + ctrlKey: false, + altKey: false, + shiftKey: false, + metaKey: false, + keyCode: 0, + charCode: undefined + }, options ); + + if ( document.createEvent ) { + try { + event = document.createEvent( "KeyEvents" ); + event.initKeyEvent( type, options.bubbles, options.cancelable, options.view, + options.ctrlKey, options.altKey, options.shiftKey, options.metaKey, + options.keyCode, options.charCode ); + // initKeyEvent throws an exception in WebKit + // see: http://stackoverflow.com/questions/6406784/initkeyevent-keypress-only-works-in-firefox-need-a-cross-browser-solution + // and also https://bugs.webkit.org/show_bug.cgi?id=13368 + // fall back to a generic event until we decide to implement initKeyboardEvent + } catch( err ) { + event = document.createEvent( "Events" ); + event.initEvent( type, options.bubbles, options.cancelable ); + $.extend( event, { + view: options.view, + ctrlKey: options.ctrlKey, + altKey: options.altKey, + shiftKey: options.shiftKey, + metaKey: options.metaKey, + keyCode: options.keyCode, + charCode: options.charCode + }); + } + } else if ( document.createEventObject ) { + event = document.createEventObject(); + $.extend( event, options ); + } + + if ( !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() ) || (({}).toString.call( window.opera ) === "[object Opera]") ) { + event.keyCode = (options.charCode > 0) ? options.charCode : options.keyCode; + event.charCode = undefined; + } + + return event; + }, + + dispatchEvent: function( elem, type, event ) { + if ( elem.dispatchEvent ) { + elem.dispatchEvent( event ); + } else if ( elem.fireEvent ) { + elem.fireEvent( "on" + type, event ); + } + }, + + simulateFocus: function() { + var focusinEvent, + triggered = false, + element = $( this.target ); + + function trigger() { + triggered = true; + } + + element.bind( "focus", trigger ); + element[ 0 ].focus(); + + if ( !triggered ) { + focusinEvent = $.Event( "focusin" ); + focusinEvent.preventDefault(); + element.trigger( focusinEvent ); + element.triggerHandler( "focus" ); + } + element.unbind( "focus", trigger ); + }, + + simulateBlur: function() { + var focusoutEvent, + triggered = false, + element = $( this.target ); + + function trigger() { + triggered = true; + } + + element.bind( "blur", trigger ); + element[ 0 ].blur(); + + // blur events are async in IE + setTimeout(function() { + // IE won't let the blur occur if the window is inactive + if ( element[ 0 ].ownerDocument.activeElement === element[ 0 ] ) { + element[ 0 ].ownerDocument.body.focus(); + } + + // Firefox won't trigger events if the window is inactive + // IE doesn't trigger events if we had to manually focus the body + if ( !triggered ) { + focusoutEvent = $.Event( "focusout" ); + focusoutEvent.preventDefault(); + element.trigger( focusoutEvent ); + element.triggerHandler( "blur" ); + } + element.unbind( "blur", trigger ); + }, 1 ); + } +}); + + + +/** complex events **/ + +function findCenter( elem ) { + var offset, + document = $( elem.ownerDocument ); + elem = $( elem ); + offset = elem.offset(); + + return { + x: offset.left + elem.outerWidth() / 2 - document.scrollLeft(), + y: offset.top + elem.outerHeight() / 2 - document.scrollTop() + }; +} + +$.extend( $.simulate.prototype, { + simulateDrag: function() { + var i = 0, + target = this.target, + options = this.options, + center = findCenter( target ), + x = Math.floor( center.x ), + y = Math.floor( center.y ), + dx = options.dx || 0, + dy = options.dy || 0, + moves = options.moves || 3, + coord = { clientX: x, clientY: y }; + + this.simulateEvent( target, "mousedown", coord ); + + for ( ; i < moves ; i++ ) { + x += dx / moves; + y += dy / moves; + + coord = { + clientX: Math.round( x ), + clientY: Math.round( y ) + }; + + this.simulateEvent( document, "mousemove", coord ); + } + + this.simulateEvent( target, "mouseup", coord ); + this.simulateEvent( target, "click", coord ); + } +}); + +})( jQuery ); \ No newline at end of file diff --git a/common/test/acceptance/pages/lms/course_nav.py b/common/test/acceptance/pages/lms/course_nav.py index 709ecebdb6..93ad20391d 100644 --- a/common/test/acceptance/pages/lms/course_nav.py +++ b/common/test/acceptance/pages/lms/course_nav.py @@ -102,7 +102,6 @@ class CourseNavPage(PageObject): self.q(css=subsection_css).first.click() self._on_section_promise(section_title, subsection_title).fulfill() - def go_to_sequential(self, sequential_title): """ Within a section/subsection, navigate to the sequential with `sequential_title`. diff --git a/common/test/acceptance/pages/lms/staff_view.py b/common/test/acceptance/pages/lms/staff_view.py new file mode 100644 index 0000000000..749842a190 --- /dev/null +++ b/common/test/acceptance/pages/lms/staff_view.py @@ -0,0 +1,84 @@ +""" +Staff view of courseware +""" +from bok_choy.page_object import PageObject + + +class StaffPage(PageObject): + """ + View of courseware pages while logged in as course staff + """ + + url = None + + def is_browser_on_page(self): + return self.q(css='#staffstatus').present + + @property + def staff_status(self): + """ + Return the current status, either Staff view or Student view + """ + return self.q(css='#staffstatus').text[0] + + def open_staff_debug_info(self): + """ + Open the staff debug window + Return the page object for it. + """ + self.q(css='a.instructor-info-action').first.click() + staff_debug_page = StaffDebugPage(self.browser) + staff_debug_page.wait_for_page() + return staff_debug_page + + def answer_problem(self): + """ + Answers the problem to give state that we can clean + """ + self.q(css='input.check').first.click() + self.wait_for_ajax() + + +class StaffDebugPage(PageObject): + """ + Staff Debug modal + """ + + url = None + + def is_browser_on_page(self): + return self.q(css='section.staff-modal').present + + def reset_attempts(self, user=None): + """ + This clicks on the reset attempts link with an optionally + specified user. + """ + if user: + self.q(css='input[id^=sd_fu_]').first.fill(user) + self.q(css='section.staff-modal a#staff-debug-reset').click() + + def delete_state(self, user=None): + """ + This delete's a student's state for the problem + """ + if user: + self.q(css='input[id^=sd_fu_]').fill(user) + self.q(css='section.staff-modal a#staff-debug-sdelete').click() + + def rescore(self, user=None): + """ + This clicks on the reset attempts link with an optionally + specified user. + """ + if user: + self.q(css='input[id^=sd_fu_]').first.fill(user) + self.q(css='section.staff-modal a#staff-debug-rescore').click() + + @property + def idash_msg(self): + """ + Returns the value of #idash_msg + """ + self.wait_for_ajax() + return self.q(css='#idash_msg').text diff --git a/common/test/acceptance/pages/lms/video.py b/common/test/acceptance/pages/lms/video.py index fe07f4d1ba..40e93cd3f8 100644 --- a/common/test/acceptance/pages/lms/video.py +++ b/common/test/acceptance/pages/lms/video.py @@ -8,7 +8,6 @@ from selenium.webdriver.common.action_chains import ActionChains from bok_choy.page_object import PageObject from bok_choy.promise import EmptyPromise, Promise from bok_choy.javascript import wait_for_js, js_defined -from ...tests.helpers import wait_for_ajax VIDEO_BUTTONS = { @@ -18,6 +17,7 @@ VIDEO_BUTTONS = { 'pause': '.video_control.pause', 'fullscreen': '.add-fullscreen', 'download_transcript': '.video-tracks > a', + 'speed': '.speeds' } CSS_CLASS_NAMES = { @@ -31,12 +31,14 @@ CSS_CLASS_NAMES = { 'video_spinner': '.video-wrapper .spinner', 'video_xmodule': '.xmodule_VideoModule', 'video_init': '.is-initialized', - 'video_time': 'div.vidtime' + 'video_time': 'div.vidtime', + 'video_display_name': '.vert h2', + 'captions_lang_list': '.langs-list li' } VIDEO_MODES = { - 'html5': 'video', - 'youtube': 'iframe' + 'html5': 'div.video video', + 'youtube': 'div.video iframe' } VIDEO_MENUS = { @@ -60,20 +62,25 @@ class VideoPage(PageObject): return self.q(css='div{0}'.format(CSS_CLASS_NAMES['video_xmodule'])).present @wait_for_js - def _wait_for_element(self, element_css_selector, promise_desc): - """ - Wait for element specified by `element_css_selector` is present in DOM. - :param element_css_selector: css selector of the element - :param promise_desc: Description of the Promise, used in log messages. - :return: BrokenPromise: the `Promise` was not satisfied within the time or attempt limits. + # TODO(muhammad-ammar) Move this function to somewhere else so that others can use it also. # pylint: disable=W0511 + def _wait_for_element(self, element_selector, promise_desc): """ + Wait for element specified by `element_selector` is present in DOM. + Arguments: + element_selector (str): css selector of the element. + promise_desc (str): Description of the Promise, used in log messages. + + """ def _is_element_present(): """ - Check if web-element present in DOM - :return: bool + Check if web-element present in DOM. + + Returns: + bool: Tells elements presence. + """ - return self.q(css=element_css_selector).present + return self.q(css=element_selector).present EmptyPromise(_is_element_present, promise_desc, timeout=200).fulfill() @@ -81,16 +88,18 @@ class VideoPage(PageObject): def wait_for_video_class(self): """ Wait until element with class name `video` appeared in DOM. - """ - wait_for_ajax(self.browser) - video_css = '{0}'.format(CSS_CLASS_NAMES['video_container']) - self._wait_for_element(video_css, 'Video is initialized') + """ + self.wait_for_ajax() + + video_selector = '{0}'.format(CSS_CLASS_NAMES['video_container']) + self._wait_for_element(video_selector, 'Video is initialized') @wait_for_js def wait_for_video_player_render(self): """ Wait until Video Player Rendered Completely. + """ self.wait_for_video_class() self._wait_for_element(CSS_CLASS_NAMES['video_init'], 'Video Player Initialized') @@ -98,39 +107,95 @@ class VideoPage(PageObject): def _is_finished_loading(): """ - Check if video loading completed - :return: bool + Check if video loading completed. + + Returns: + bool: Tells Video Finished Loading. + """ return not self.q(css=CSS_CLASS_NAMES['video_spinner']).visible EmptyPromise(_is_finished_loading, 'Finished loading the video', timeout=200).fulfill() - wait_for_ajax(self.browser) + self.wait_for_ajax() - def is_video_rendered(self, mode): + def get_video_vertical_selector(self, video_display_name=None): + """ + Get selector for a video vertical with display name specified by `video_display_name`. + + Arguments: + video_display_name (str or None): Display name of a Video. Default vertical selector if None. + + Returns: + str: Vertical Selector for video. + + """ + if video_display_name: + video_display_names = self.q(css=CSS_CLASS_NAMES['video_display_name']).text + if video_display_name not in video_display_names: + raise ValueError("Incorrect Video Display Name: '{0}'".format(video_display_name)) + return '.vert.vert-{}'.format(video_display_names.index(video_display_name)) + else: + return '.vert.vert-0' + + def get_element_selector(self, video_display_name, class_name): + """ + Construct unique element selector. + + Arguments: + video_display_name (str or None): Display name of a Video. + class_name (str): css class name for an element. + + Returns: + str: Element Selector. + + """ + return '{vertical} {video_element}'.format( + vertical=self.get_video_vertical_selector(video_display_name), + video_element=class_name) + + def is_video_rendered(self, mode, video_display_name=None): """ Check that if video is rendered in `mode`. - :param mode: Video mode, `html5` or `youtube` + + Arguments: + mode (str): Video mode, `html5` or `youtube`. + video_display_name (str or None): Display name of a Video. + + Returns: + bool: Tells if video is rendered in `mode`. + """ - html_tag = VIDEO_MODES[mode] - css = '{0} {1}'.format(CSS_CLASS_NAMES['video_container'], html_tag) + selector = self.get_element_selector(video_display_name, VIDEO_MODES[mode]) def _is_element_present(): """ - Check if a web element is present in DOM - :return: + Check if a web element is present in DOM. + + Returns: + tuple: (is_satisfied, result)`, where `is_satisfied` is a boolean indicating whether the promise was + satisfied, and `result` is a value to return from the fulfilled `Promise`. + """ - is_present = self.q(css=css).present + is_present = self.q(css=selector).present return is_present, is_present return Promise(_is_element_present, 'Video Rendering Failed in {0} mode.'.format(mode)).fulfill() @property - def is_autoplay_enabled(self): + def is_autoplay_enabled(self, video_display_name=None): """ Extract `data-autoplay` attribute to check video autoplay is enabled or disabled. + + Arguments: + video_display_name (str or None): Display name of a Video. + + Returns: + bool: Tells if autoplay enabled/disabled. + """ - auto_play = self.q(css=CSS_CLASS_NAMES['video_container']).attrs('data-autoplay')[0] + selector = self.get_element_selector(video_display_name, CSS_CLASS_NAMES['video_container']) + auto_play = self.q(css=selector).attrs('data-autoplay')[0] if auto_play.lower() == 'false': return False @@ -138,129 +203,236 @@ class VideoPage(PageObject): return True @property - def is_error_message_shown(self): + def is_error_message_shown(self, video_display_name=None): """ Checks if video player error message shown. - :return: bool + + Arguments: + video_display_name (str or None): Display name of a Video. + + Returns: + bool: Tells about error message visibility. + """ - return self.q(css=CSS_CLASS_NAMES['error_message']).visible + selector = self.get_element_selector(video_display_name, CSS_CLASS_NAMES['error_message']) + return self.q(css=selector).visible @property - def error_message_text(self): + def error_message_text(self, video_display_name=None): """ Extract video player error message text. - :return: str - """ - return self.q(css=CSS_CLASS_NAMES['error_message']).text[0] - def is_button_shown(self, button_id): + Arguments: + video_display_name (str or None): Display name of a Video. + + Returns: + str: Error message text. + """ - Check if a video button specified by `button_id` is visible - :param button_id: button css selector - :return: bool + selector = self.get_element_selector(video_display_name, CSS_CLASS_NAMES['error_message']) + return self.q(css=selector).text[0] + + def is_button_shown(self, button_id, video_display_name=None): """ - return self.q(css=VIDEO_BUTTONS[button_id]).visible + Check if a video button specified by `button_id` is visible. + + Arguments: + button_id (str): key in VIDEO_BUTTONS dictionary, its value will give us the css selector for button. + video_display_name (str or None): Display name of a Video. + + Returns: + bool: Tells about a buttons visibility. + + """ + selector = self.get_element_selector(video_display_name, VIDEO_BUTTONS[button_id]) + return self.q(css=selector).visible + + def show_captions(self, video_display_name=None): + """ + Make Captions Visible. + + Arguments: + video_display_name (str or None): Display name of a Video. + + """ + self._captions_visibility(True, video_display_name) + + def hide_captions(self, video_display_name=None): + """ + Make Captions Invisible. + + Arguments: + video_display_name (str or None): Display name of a Video. + + """ + self._captions_visibility(False, video_display_name) @wait_for_js - def show_captions(self): - """ - Show the video captions. + def _captions_visibility(self, captions_new_state, video_display_name=None): """ + Set the video captions visibility state. - def _is_subtitles_open(): + Arguments: + video_display_name (str or None): Display name of a Video. + captions_new_state (bool): True means show captions, False means hide captions + + """ + states = {True: 'Shown', False: 'Hidden'} + state = states[captions_new_state] + + caption_state_selector = self.get_element_selector(video_display_name, CSS_CLASS_NAMES['closed_captions']) + + def _captions_current_state(): """ - Check if subtitles are opened - :return: bool + Get current visibility sate of captions. + + Returns: + bool: True means captions are visible, False means captions are not visible + """ - is_open = not self.q(css=CSS_CLASS_NAMES['closed_captions']).present - return is_open + return not self.q(css=caption_state_selector).present # Make sure that the CC button is there EmptyPromise(lambda: self.is_button_shown('CC'), "CC button is shown").fulfill() - # Check if the captions are already open and click if not - if _is_subtitles_open() is False: - self.q(css=VIDEO_BUTTONS['CC']).first.click() + # toggle captions visibility state if needed + if _captions_current_state() != captions_new_state: + self.click_player_button('CC') - # Verify that they are now open - EmptyPromise(_is_subtitles_open, - "Subtitles are shown").fulfill() + # Verify that captions state is toggled/changed + EmptyPromise(lambda: _captions_current_state() == captions_new_state, + "Captions are {state}".format(state=state)).fulfill() @property - def captions_text(self): + def captions_text(self, video_display_name=None): """ Extract captions text. - :return: str + + Arguments: + video_display_name (str or None): Display name of a Video. + + Returns: + str: Captions Text. + """ # wait until captions rendered completely - self._wait_for_element(CSS_CLASS_NAMES['captions_rendered'], 'Captions Rendered') + captions_rendered_selector = self.get_element_selector(video_display_name, CSS_CLASS_NAMES['captions_rendered']) + self._wait_for_element(captions_rendered_selector, 'Captions Rendered') - captions_css = CSS_CLASS_NAMES['captions_text'] - - subs = self.q(css=captions_css).html + captions_selector = self.get_element_selector(video_display_name, CSS_CLASS_NAMES['captions_text']) + subs = self.q(css=captions_selector).html return ' '.join(subs) - def set_speed(self, speed): + def set_speed(self, speed, video_display_name=None): """ Change the video play speed. - :param speed: speed value in str + + Arguments: + speed (str): Video speed value + video_display_name (str or None): Display name of a Video. + """ - self.browser.execute_script("$('.speeds').addClass('is-opened')") - speed_css = 'li[data-speed="{0}"] a'.format(speed) + # mouse over to video speed button + speed_menu_selector = self.get_element_selector(video_display_name, VIDEO_BUTTONS['speed']) + element_to_hover_over = self.q(css=speed_menu_selector).results[0] + hover = ActionChains(self.browser).move_to_element(element_to_hover_over) + hover.perform() - EmptyPromise(lambda: self.q(css='.speeds').visible, 'Video Speed Control Shown').fulfill() + speed_selector = self.get_element_selector(video_display_name, 'li[data-speed="{speed}"] a'.format(speed=speed)) + self.q(css=speed_selector).first.click() - self.q(css=speed_css).first.click() - - def get_speed(self): - """ - Get current video speed value. - :return: str - """ - speed_css = '.speeds .value' - return self.q(css=speed_css).text[0] - - speed = property(get_speed, set_speed) - - def click_player_button(self, button): + def click_player_button(self, button, video_display_name=None): """ Click on `button`. - :param button: key in VIDEO_BUTTONS dictionary, its value will give us the css selector for `button` + + Arguments: + button (str): key in VIDEO_BUTTONS dictionary, its value will give us the css selector for `button` + video_display_name (str or None): Display name of a Video. + """ - self.q(css=VIDEO_BUTTONS[button]).first.click() - wait_for_ajax(self.browser) + button_selector = self.get_element_selector(video_display_name, VIDEO_BUTTONS[button]) + self.q(css=button_selector).first.click() + + if button == 'play': + # wait for video buffering + self._wait_for_video_play(video_display_name) + + self.wait_for_ajax() + + def _wait_for_video_play(self, video_display_name=None): + """ + Wait until video starts playing + + Arguments: + video_display_name (str or None): Display name of a Video. + + """ + playing_selector = self.get_element_selector(video_display_name, CSS_CLASS_NAMES['video_container']) + pause_selector = self.get_element_selector(video_display_name, VIDEO_BUTTONS['pause']) + + def _check_promise(): + """ + Promise check + + Returns: + bool: Is promise satisfied. + + """ + return 'is-playing' in self.q(css=playing_selector).attrs('class')[0] and self.q(css=pause_selector).present + + EmptyPromise(_check_promise, 'Video is Playing', timeout=200).fulfill() def _get_element_dimensions(self, selector): """ Gets the width and height of element specified by `selector` - :param selector: str, css selector of a web element - :return: dict + + Arguments: + selector (str): css selector of a web element + + Returns: + dict: Dimensions of a web element. + """ element = self.q(css=selector).results[0] return element.size - def _get_dimensions(self): + def _get_dimensions(self, video_display_name=None): """ - Gets the video player dimensions - :return: tuple + Gets the video player dimensions. + + Arguments: + video_display_name (str or None): Display name of a Video. + + Returns: + tuple: Dimensions + """ - video = self._get_element_dimensions('.video-player iframe, .video-player video') - wrapper = self._get_element_dimensions('.tc-wrapper') - controls = self._get_element_dimensions('.video-controls') - progress_slider = self._get_element_dimensions('.video-controls > .slider') + iframe_selector = self.get_element_selector(video_display_name, '.video-player iframe,') + video_selector = self.get_element_selector(video_display_name, ' .video-player video') + video = self._get_element_dimensions(iframe_selector + video_selector) + wrapper = self._get_element_dimensions(self.get_element_selector(video_display_name, '.tc-wrapper')) + controls = self._get_element_dimensions(self.get_element_selector(video_display_name, '.video-controls')) + progress_slider = self._get_element_dimensions( + self.get_element_selector(video_display_name, '.video-controls > .slider')) expected = dict(wrapper) expected['height'] -= controls['height'] + 0.5 * progress_slider['height'] return video, expected - def is_aligned(self, is_transcript_visible): + def is_aligned(self, is_transcript_visible, video_display_name=None): """ Check if video is aligned properly. - :param is_transcript_visible: bool - :return: bool + + Arguments: + is_transcript_visible (bool): Transcript is visible or not. + video_display_name (str or None): Display name of a Video. + + Returns: + bool: Alignment result. + """ # Width of the video container in css equal 75% of window if transcript enabled wrapper_width = 75 if is_transcript_visible else 100 @@ -272,7 +444,7 @@ class VideoPage(PageObject): # Currently there is no other way to wait instead of explicit wait time.sleep(0.2) - real, expected = self._get_dimensions() + real, expected = self._get_dimensions(video_display_name) width = round(100 * real['width'] / expected['width']) == wrapper_width @@ -282,7 +454,7 @@ class VideoPage(PageObject): # Currently there is no other way to wait instead of explicit wait time.sleep(0.2) - real, expected = self._get_dimensions() + real, expected = self._get_dimensions(video_display_name) height = abs(expected['height'] - real['height']) <= 5 @@ -295,7 +467,8 @@ class VideoPage(PageObject): def _get_transcript(self, url): """ - Sends a http get request. + Download Transcript from `url` + """ kwargs = dict() @@ -308,53 +481,171 @@ class VideoPage(PageObject): response = requests.get(url, **kwargs) return response.status_code < 400, response.headers, response.content - def downloaded_transcript_contains_text(self, transcript_format, text_to_search): + def downloaded_transcript_contains_text(self, transcript_format, text_to_search, video_display_name=None): """ Download the transcript in format `transcript_format` and check that it contains the text `text_to_search` - :param transcript_format: `srt` or `txt` - :param text_to_search: str - :return: bool + + Arguments: + transcript_format (str): Transcript file format `srt` or `txt` + text_to_search (str): Text to search in Transcript. + video_display_name (str or None): Display name of a Video. + + Returns: + bool: Transcript download result. + """ + transcript_selector = self.get_element_selector(video_display_name, VIDEO_MENUS['transcript-format']) + # check if we have a transcript with correct format - assert '.' + transcript_format in self.q(css=VIDEO_MENUS['transcript-format']).text[0] + if '.' + transcript_format not in self.q(css=transcript_selector).text[0]: + return False formats = { 'srt': 'application/x-subrip', 'txt': 'text/plain', } - url = self.q(css=VIDEO_BUTTONS['download_transcript']).attrs('href')[0] + transcript_url_selector = self.get_element_selector(video_display_name, VIDEO_BUTTONS['download_transcript']) + url = self.q(css=transcript_url_selector).attrs('href')[0] result, headers, content = self._get_transcript(url) - assert result - assert formats[transcript_format] in headers.get('content-type', '') - assert text_to_search in content.decode('utf-8') + if result is False: + return False - def select_language(self, code): - """ - Select captions for language `code` - :param code: str, two character language code like `en`, `zh` - :return: bool, True for Success, False for Failure or BrokenPromise - """ - wait_for_ajax(self.browser) + if formats[transcript_format] not in headers.get('content-type', ''): + return False - selector = VIDEO_MENUS["language"] + ' li[data-lang-code="{code}"]'.format(code=code) + if text_to_search not in content.decode('utf-8'): + return False + + return True + + def select_language(self, code, video_display_name=None): + """ + Select captions for language `code`. + + Arguments: + code (str): two character language code like `en`, `zh`. + video_display_name (str or None): Display name of a Video. + + """ + self.wait_for_ajax() # mouse over to CC button - element_to_hover_over = self.q(css=VIDEO_BUTTONS["CC"]).results[0] + cc_button_selector = self.get_element_selector(video_display_name, VIDEO_BUTTONS["CC"]) + element_to_hover_over = self.q(css=cc_button_selector).results[0] hover = ActionChains(self.browser).move_to_element(element_to_hover_over) hover.perform() - self.q(css=selector).first.click() + language_selector = VIDEO_MENUS["language"] + ' li[data-lang-code="{code}"]'.format(code=code) + language_selector = self.get_element_selector(video_display_name, language_selector) + self.q(css=language_selector).first.click() - assert 'is-active' == self.q(css=selector).attrs('class')[0] - assert len(self.q(css=VIDEO_MENUS["language"] + ' li.is-active').results) == 1 + if 'is-active' != self.q(css=language_selector).attrs('class')[0]: + return False + + active_lang_selector = self.get_element_selector(video_display_name, VIDEO_MENUS["language"] + ' li.is-active') + if len(self.q(css=active_lang_selector).results) != 1: + return False # Make sure that all ajax requests that affects the display of captions are finished. # For example, request to get new translation etc. - wait_for_ajax(self.browser) + self.wait_for_ajax() - EmptyPromise(lambda: self.q(css=CSS_CLASS_NAMES['captions']).visible, 'Subtitles Visible').fulfill() + captions_selector = self.get_element_selector(video_display_name, CSS_CLASS_NAMES['captions']) + EmptyPromise(lambda: self.q(css=captions_selector).visible, 'Subtitles Visible').fulfill() # wait until captions rendered completely - self._wait_for_element(CSS_CLASS_NAMES['captions_rendered'], 'Captions Rendered') + captions_rendered_selector = self.get_element_selector(video_display_name, CSS_CLASS_NAMES['captions_rendered']) + self._wait_for_element(captions_rendered_selector, 'Captions Rendered') + + return True + + def is_menu_exist(self, menu_name, video_display_name=None): + """ + Check if menu `menu_name` exists. + + Arguments: + menu_name (str): Menu key from VIDEO_MENUS. + video_display_name (str or None): Display name of a Video. + + Returns: + bool: Menu existence result + + """ + selector = self.get_element_selector(video_display_name, VIDEO_MENUS[menu_name]) + return self.q(css=selector).present + + def select_transcript_format(self, transcript_format, video_display_name=None): + """ + Select transcript with format `transcript_format`. + + Arguments: + transcript_format (st): Transcript file format `srt` or `txt`. + video_display_name (str or None): Display name of a Video. + + Returns: + bool: Selection Result. + + """ + button_selector = self.get_element_selector(video_display_name, VIDEO_MENUS['transcript-format']) + + button = self.q(css=button_selector).results[0] + + coord_y = button.location_once_scrolled_into_view['y'] + self.browser.execute_script("window.scrollTo(0, {});".format(coord_y)) + + hover = ActionChains(self.browser).move_to_element(button) + hover.perform() + + if '...' not in self.q(css=button_selector).text[0]: + return False + + menu_selector = self.get_element_selector(video_display_name, VIDEO_MENUS['download_transcript']) + menu_items = self.q(css=menu_selector + ' a').results + for item in menu_items: + if item.get_attribute('data-value') == transcript_format: + item.click() + self.wait_for_ajax() + break + + self.browser.execute_script("window.scrollTo(0, 0);") + + if self.q(css=menu_selector + ' .active a').attrs('data-value')[0] != transcript_format: + return False + + if '.' + transcript_format not in self.q(css=button_selector).text[0]: + return False + + return True + + def sources(self, video_display_name=None): + """ + Extract all video source urls on current page. + + Arguments: + video_display_name (str or None): Display name of a Video. + + Returns: + list: Video Source URLs. + + """ + sources_selector = self.get_element_selector(video_display_name, CSS_CLASS_NAMES['video_sources']) + return self.q(css=sources_selector).map(lambda el: el.get_attribute('src').split('?')[0]).results + + def caption_languages(self, video_display_name=None): + """ + Get caption languages available for a video. + + Arguments: + video_display_name (str or None): Display name of a Video. + + Returns: + dict: Language Codes('en', 'zh' etc) as keys and Language Names as Values('English', 'Chinese' etc) + + """ + languages_selector = self.get_element_selector(video_display_name, CSS_CLASS_NAMES['captions_lang_list']) + language_codes = self.q(css=languages_selector).attrs('data-lang-code') + language_names = self.q(css=languages_selector).attrs('textContent') + + return dict(zip(language_codes, language_names)) diff --git a/common/test/acceptance/pages/studio/container.py b/common/test/acceptance/pages/studio/container.py index 070f39a7ea..584141592d 100644 --- a/common/test/acceptance/pages/studio/container.py +++ b/common/test/acceptance/pages/studio/container.py @@ -6,6 +6,7 @@ from bok_choy.page_object import PageObject from bok_choy.promise import Promise from . import BASE_URL +from selenium.webdriver.common.action_chains import ActionChains class ContainerPage(PageObject): """ @@ -44,6 +45,24 @@ class ContainerPage(PageObject): return self.q(css=XBlockWrapper.BODY_SELECTOR).map( lambda el: XBlockWrapper(self.browser, el.get_attribute('data-locator'))).results + def drag(self, source_index, target_index, after=True): + """ + Gets the drag handle with index source_index (relative to the vertical layout of the page) + and drags it to the location of the drag handle with target_index. + + This should drag the element with the source_index drag handle AFTER the + one with the target_index drag handle, unless 'after' is set to False. + """ + draggables = self.q(css='.drag-handle') + source = draggables[source_index] + target = draggables[target_index] + action = ActionChains(self.browser) + action.click_and_hold(source).perform() # pylint: disable=protected-access + action.move_to_element_with_offset( + target, 0, target.size['height'] / 2 if after else 0 + ).perform() # pylint: disable=protected-access + action.release().perform() + class XBlockWrapper(PageObject): """ @@ -78,6 +97,22 @@ class XBlockWrapper(PageObject): else: return None + @property + def children(self): + """ + Will return any first-generation descendant xblocks of this xblock. + """ + descendants = self.q(css=self._bounded_selector(self.BODY_SELECTOR)).map( + lambda el: XBlockWrapper(self.browser, el.get_attribute('data-locator'))).results + + # Now remove any non-direct descendants. + grandkids = [] + for descendant in descendants: + grandkids.extend(descendant.children) + + grand_locators = [grandkid.locator for grandkid in grandkids] + return [descendant for descendant in descendants if not descendant.locator in grand_locators] + @property def preview_selector(self): return self._bounded_selector('.xblock-student_view') diff --git a/common/test/acceptance/tests/helpers.py b/common/test/acceptance/tests/helpers.py index 12228344a0..1d568504c5 100644 --- a/common/test/acceptance/tests/helpers.py +++ b/common/test/acceptance/tests/helpers.py @@ -6,26 +6,6 @@ from bok_choy.web_app_test import WebAppTest from bok_choy.promise import EmptyPromise -def wait_for_ajax(browser, try_limit=None, try_interval=0.5, timeout=60): - """ - Make sure that all ajax requests are finished. - :param try_limit (int or None): Number of attempts to make to satisfy the `Promise`. Can be `None` to - disable the limit. - :param try_interval (float): Number of seconds to wait between attempts. - :param timeout (float): Maximum number of seconds to wait for the `Promise` to be satisfied before timing out. - :param browser: selenium.webdriver, The Selenium-controlled browser that this page is loaded in. - """ - def _is_ajax_finished(): - """ - Check if all the ajax call on current page completed. - :return: - """ - return browser.execute_script("return jQuery.active") == 0 - - EmptyPromise(_is_ajax_finished, "Finished waiting for ajax requests.", try_limit=try_limit, - try_interval=try_interval, timeout=timeout).fulfill() - - def load_data_str(rel_path): """ Load a file from the "data" directory as a string. diff --git a/common/test/acceptance/tests/test_staff_view.py b/common/test/acceptance/tests/test_staff_view.py new file mode 100644 index 0000000000..53b4c8f18e --- /dev/null +++ b/common/test/acceptance/tests/test_staff_view.py @@ -0,0 +1,151 @@ +# -*- coding: utf-8 -*- +""" +E2E tests for the LMS. +""" + +from .helpers import UniqueCourseTest +from ..pages.studio.auto_auth import AutoAuthPage +from ..pages.lms.courseware import CoursewarePage +from ..pages.lms.staff_view import StaffPage +from ..fixtures.course import CourseFixture, XBlockFixtureDesc +from textwrap import dedent + + +class StaffDebugTest(UniqueCourseTest): + """ + Tests that verify the staff debug info. + """ + USERNAME = "STAFF_TESTER" + EMAIL = "johndoe@example.com" + + def setUp(self): + super(StaffDebugTest, self).setUp() + + self.courseware_page = CoursewarePage(self.browser, self.course_id) + + # Install a course with sections/problems, tabs, updates, and handouts + course_fix = CourseFixture( + self.course_info['org'], self.course_info['number'], + self.course_info['run'], self.course_info['display_name'] + ) + + problem_data = dedent(""" + +

Choose Yes.

+ + + Yes + + +
+ """) + + course_fix.add_children( + XBlockFixtureDesc('chapter', 'Test Section').add_children( + XBlockFixtureDesc('sequential', 'Test Subsection').add_children( + XBlockFixtureDesc('problem', 'Test Problem 1', data=problem_data) + ) + ) + ).install() + + # Auto-auth register for the course. + # Do this as global staff so that you will see the Staff View + AutoAuthPage(self.browser, username=self.USERNAME, email=self.EMAIL, + course_id=self.course_id, staff=True).visit() + + def _goto_staff_page(self): + """ + Open staff page with assertion + """ + self.courseware_page.visit() + staff_page = StaffPage(self.browser) + self.assertEqual(staff_page.staff_status, 'Staff view') + return staff_page + + def test_reset_attempts_empty(self): + """ + Test that we reset even when there is no student state + """ + + staff_debug_page = self._goto_staff_page().open_staff_debug_info() + staff_debug_page.reset_attempts() + msg = staff_debug_page.idash_msg[0] + self.assertEqual(u'Successfully reset the attempts ' + 'for user {}'.format(self.USERNAME), msg) + + def test_delete_state_empty(self): + """ + Test that we delete properly even when there isn't state to delete. + """ + staff_debug_page = self._goto_staff_page().open_staff_debug_info() + staff_debug_page.delete_state() + msg = staff_debug_page.idash_msg[0] + self.assertEqual(u'Successfully deleted student state ' + 'for user {}'.format(self.USERNAME), msg) + + def test_reset_attempts_state(self): + """ + Successfully reset the student attempts + """ + staff_page = self._goto_staff_page() + staff_page.answer_problem() + + staff_debug_page = staff_page.open_staff_debug_info() + staff_debug_page.reset_attempts() + msg = staff_debug_page.idash_msg[0] + self.assertEqual(u'Successfully reset the attempts ' + 'for user {}'.format(self.USERNAME), msg) + + def test_rescore_state(self): + """ + Rescore the student + """ + staff_page = self._goto_staff_page() + staff_page.answer_problem() + + staff_debug_page = staff_page.open_staff_debug_info() + staff_debug_page.rescore() + msg = staff_debug_page.idash_msg[0] + # Since we aren't running celery stuff, this will fail badly + # for now, but is worth excercising that bad of a response + self.assertEqual(u'Failed to rescore problem. ' + 'Unknown Error Occurred.', msg) + + def test_student_state_delete(self): + """ + Successfully delete the student state with an answer + """ + staff_page = self._goto_staff_page() + staff_page.answer_problem() + + staff_debug_page = staff_page.open_staff_debug_info() + staff_debug_page.delete_state() + msg = staff_debug_page.idash_msg[0] + self.assertEqual(u'Successfully deleted student state ' + 'for user {}'.format(self.USERNAME), msg) + + def test_student_by_email(self): + """ + Successfully reset the student attempts using their email address + """ + staff_page = self._goto_staff_page() + staff_page.answer_problem() + + staff_debug_page = staff_page.open_staff_debug_info() + staff_debug_page.reset_attempts(self.EMAIL) + msg = staff_debug_page.idash_msg[0] + self.assertEqual(u'Successfully reset the attempts ' + 'for user {}'.format(self.EMAIL), msg) + + def test_bad_student(self): + """ + Test negative response with invalid user + """ + staff_page = self._goto_staff_page() + staff_page.answer_problem() + + staff_debug_page = staff_page.open_staff_debug_info() + staff_debug_page.delete_state('INVALIDUSER') + msg = staff_debug_page.idash_msg[0] + self.assertEqual(u'Failed to delete student state. ' + 'User does not exist.', msg) diff --git a/common/test/acceptance/tests/test_studio.py b/common/test/acceptance/tests/test_studio_acid_xblock.py similarity index 59% rename from common/test/acceptance/tests/test_studio.py rename to common/test/acceptance/tests/test_studio_acid_xblock.py index 158ff929c2..26e84eabec 100644 --- a/common/test/acceptance/tests/test_studio.py +++ b/common/test/acceptance/tests/test_studio_acid_xblock.py @@ -1,155 +1,15 @@ """ -Acceptance tests for Studio. +Acceptance tests for Studio related to the acid xblock. """ from unittest import skip from bok_choy.web_app_test import WebAppTest -from ..pages.studio.asset_index import AssetIndexPage from ..pages.studio.auto_auth import AutoAuthPage -from ..pages.studio.checklists import ChecklistsPage -from ..pages.studio.course_import import ImportPage -from ..pages.studio.course_info import CourseUpdatesPage -from ..pages.studio.edit_tabs import PagesPage -from ..pages.studio.export import ExportPage -from ..pages.studio.howitworks import HowitworksPage -from ..pages.studio.index import DashboardPage -from ..pages.studio.login import LoginPage -from ..pages.studio.manage_users import CourseTeamPage from ..pages.studio.overview import CourseOutlinePage -from ..pages.studio.settings import SettingsPage -from ..pages.studio.settings_advanced import AdvancedSettingsPage -from ..pages.studio.settings_graders import GradingPage -from ..pages.studio.signup import SignupPage -from ..pages.studio.textbooks import TextbooksPage from ..pages.xblock.acid import AcidView from ..fixtures.course import CourseFixture, XBlockFixtureDesc -from .helpers import UniqueCourseTest - - -class LoggedOutTest(WebAppTest): - """ - Smoke test for pages in Studio that are visible when logged out. - """ - - def setUp(self): - super(LoggedOutTest, self).setUp() - self.pages = [LoginPage(self.browser), HowitworksPage(self.browser), SignupPage(self.browser)] - - def test_page_existence(self): - """ - Make sure that all the pages are accessible. - Rather than fire up the browser just to check each url, - do them all sequentially in this testcase. - """ - for page in self.pages: - page.visit() - - -class LoggedInPagesTest(WebAppTest): - """ - Tests that verify the pages in Studio that you can get to when logged - in and do not have a course yet. - """ - - def setUp(self): - super(LoggedInPagesTest, self).setUp() - self.auth_page = AutoAuthPage(self.browser, staff=True) - self.dashboard_page = DashboardPage(self.browser) - - def test_dashboard_no_courses(self): - """ - Make sure that you can get to the dashboard page without a course. - """ - self.auth_page.visit() - self.dashboard_page.visit() - - -class CoursePagesTest(UniqueCourseTest): - """ - Tests that verify the pages in Studio that you can get to when logged - in and have a course. - """ - - COURSE_ID_SEPARATOR = "." - - def setUp(self): - """ - Install a course with no content using a fixture. - """ - super(UniqueCourseTest, self).setUp() - - CourseFixture( - self.course_info['org'], - self.course_info['number'], - self.course_info['run'], - self.course_info['display_name'] - ).install() - - self.auth_page = AutoAuthPage(self.browser, staff=True) - - self.pages = [ - clz(self.browser, self.course_info['org'], self.course_info['number'], self.course_info['run']) - for clz in [ - AssetIndexPage, ChecklistsPage, ImportPage, CourseUpdatesPage, - PagesPage, ExportPage, CourseTeamPage, CourseOutlinePage, SettingsPage, - AdvancedSettingsPage, GradingPage, TextbooksPage - ] - ] - - def test_page_existence(self): - """ - Make sure that all these pages are accessible once you have a course. - Rather than fire up the browser just to check each url, - do them all sequentially in this testcase. - """ - # Log in - self.auth_page.visit() - - # Verify that each page is available - for page in self.pages: - page.visit() - - -class DiscussionPreviewTest(UniqueCourseTest): - """ - Tests that Inline Discussions are rendered with a custom preview in Studio - """ - - def setUp(self): - super(DiscussionPreviewTest, self).setUp() - CourseFixture(**self.course_info).add_children( - XBlockFixtureDesc("chapter", "Test Section").add_children( - XBlockFixtureDesc("sequential", "Test Subsection").add_children( - XBlockFixtureDesc("vertical", "Test Unit").add_children( - XBlockFixtureDesc( - "discussion", - "Test Discussion", - ) - ) - ) - ) - ).install() - - AutoAuthPage(self.browser, staff=True).visit() - cop = CourseOutlinePage( - self.browser, - self.course_info['org'], - self.course_info['number'], - self.course_info['run'] - ) - cop.visit() - self.unit = cop.section('Test Section').subsection('Test Subsection').toggle_expand().unit('Test Unit') - self.unit.go_to() - - def test_is_preview(self): - """ - Ensure that the preview version of the discussion is rendered. - """ - self.assertTrue(self.unit.q(css=".discussion-preview").present) - self.assertFalse(self.unit.q(css=".discussion-show").present) - class XBlockAcidBase(WebAppTest): """ diff --git a/common/test/acceptance/tests/test_studio_container.py b/common/test/acceptance/tests/test_studio_container.py new file mode 100644 index 0000000000..8d9b2617c4 --- /dev/null +++ b/common/test/acceptance/tests/test_studio_container.py @@ -0,0 +1,163 @@ +""" +Acceptance tests for Studio related to the container page. +""" +from ..pages.studio.auto_auth import AutoAuthPage +from ..pages.studio.overview import CourseOutlinePage +from ..fixtures.course import CourseFixture, XBlockFixtureDesc + +from .helpers import UniqueCourseTest + + +class ContainerBase(UniqueCourseTest): + """ + Base class for tests that do operations on the container page. + """ + __test__ = False + + def setUp(self): + """ + Create a unique identifier for the course used in this test. + """ + # Ensure that the superclass sets up + super(ContainerBase, self).setUp() + + self.auth_page = AutoAuthPage(self.browser, staff=True) + self.outline = CourseOutlinePage( + self.browser, + self.course_info['org'], + self.course_info['number'], + self.course_info['run'] + ) + + self.container_title = "" + self.group_a = "Expand or Collapse\nGroup A" + self.group_b = "Expand or Collapse\nGroup B" + self.group_empty = "Expand or Collapse\nGroup Empty" + self.group_a_item_1 = "Group A Item 1" + self.group_a_item_2 = "Group A Item 2" + self.group_b_item_1 = "Group B Item 1" + self.group_b_item_2 = "Group B Item 2" + + self.setup_fixtures() + + self.auth_page.visit() + + def setup_fixtures(self): + course_fix = CourseFixture( + self.course_info['org'], + self.course_info['number'], + self.course_info['run'], + self.course_info['display_name'] + ) + + course_fix.add_children( + XBlockFixtureDesc('chapter', 'Test Section').add_children( + XBlockFixtureDesc('sequential', 'Test Subsection').add_children( + XBlockFixtureDesc('vertical', 'Test Unit').add_children( + XBlockFixtureDesc('vertical', 'Test Container').add_children( + XBlockFixtureDesc('vertical', 'Group A').add_children( + XBlockFixtureDesc('html', self.group_a_item_1), + XBlockFixtureDesc('html', self.group_a_item_2) + ), + XBlockFixtureDesc('vertical', 'Group Empty'), + XBlockFixtureDesc('vertical', 'Group B').add_children( + XBlockFixtureDesc('html', self.group_b_item_1), + XBlockFixtureDesc('html', self.group_b_item_2) + ) + ) + ) + ) + ) + ).install() + + def go_to_container_page(self, make_draft=False): + self.outline.visit() + subsection = self.outline.section('Test Section').subsection('Test Subsection') + unit = subsection.toggle_expand().unit('Test Unit').go_to() + if make_draft: + unit.edit_draft() + container = unit.components[0].go_to_container() + return container + + +class DragAndDropTest(ContainerBase): + """ + Tests of reordering within the container page. + """ + __test__ = True + + def verify_ordering(self, container, expected_orderings): + xblocks = container.xblocks + for expected_ordering in expected_orderings: + for xblock in xblocks: + parent = expected_ordering.keys()[0] + if xblock.name == parent: + children = xblock.children + expected_length = len(expected_ordering.get(parent)) + self.assertEqual( + expected_length, len(children), + "Number of children incorrect for group {0}. Expected {1} but got {2}.".format(parent, expected_length, len(children))) + for idx, expected in enumerate(expected_ordering.get(parent)): + self.assertEqual(expected, children[idx].name) + break + + def drag_and_verify(self, source, target, expected_ordering, after=True): + container = self.go_to_container_page(make_draft=True) + container.drag(source, target, after) + + self.verify_ordering(container, expected_ordering) + + # Reload the page to see that the reordering was saved persisted. + container = self.go_to_container_page() + self.verify_ordering(container, expected_ordering) + + def test_reorder_in_group(self): + """ + Drag Group B Item 2 before Group B Item 1. + """ + expected_ordering = [{self.container_title: [self.group_a, self.group_empty, self.group_b]}, + {self.group_a: [self.group_a_item_1, self.group_a_item_2]}, + {self.group_b: [self.group_b_item_2, self.group_b_item_1]}, + {self.group_empty: []}] + self.drag_and_verify(6, 4, expected_ordering) + + def test_drag_to_top(self): + """ + Drag Group A Item 1 to top level (outside of Group A). + """ + expected_ordering = [{self.container_title: [self.group_a_item_1, self.group_a, self.group_empty, self.group_b]}, + {self.group_a: [self.group_a_item_2]}, + {self.group_b: [self.group_b_item_1, self.group_b_item_2]}, + {self.group_empty: []}] + self.drag_and_verify(1, 0, expected_ordering, False) + + def test_drag_into_different_group(self): + """ + Drag Group A Item 1 into Group B (last element). + """ + expected_ordering = [{self.container_title: [self.group_a, self.group_empty, self.group_b]}, + {self.group_a: [self.group_a_item_2]}, + {self.group_b: [self.group_b_item_1, self.group_b_item_2, self.group_a_item_1]}, + {self.group_empty: []}] + self.drag_and_verify(1, 6, expected_ordering) + + def test_drag_group_into_group(self): + """ + Drag Group B into Group A (last element). + """ + expected_ordering = [{self.container_title: [self.group_a, self.group_empty]}, + {self.group_a: [self.group_a_item_1, self.group_a_item_2, self.group_b]}, + {self.group_b: [self.group_b_item_1, self.group_b_item_2]}, + {self.group_empty: []}] + self.drag_and_verify(4, 2, expected_ordering) + + # Not able to drag into the empty group with automation (difficult even outside of automation). + # def test_drag_into_empty(self): + # """ + # Drag Group B Item 1 to Group Empty. + # """ + # expected_ordering = [{self.container_title: [self.group_a, self.group_empty, self.group_b]}, + # {self.group_a: [self.group_a_item_1, self.group_a_item_2]}, + # {self.group_b: [self.group_b_item_2]}, + # {self.group_empty: [self.group_b_item_1]}] + # self.drag_and_verify(6, 4, expected_ordering, False) diff --git a/common/test/acceptance/tests/test_studio_general.py b/common/test/acceptance/tests/test_studio_general.py new file mode 100644 index 0000000000..a170ee1c61 --- /dev/null +++ b/common/test/acceptance/tests/test_studio_general.py @@ -0,0 +1,148 @@ +""" +Acceptance tests for Studio. +""" +from bok_choy.web_app_test import WebAppTest + +from ..pages.studio.asset_index import AssetIndexPage +from ..pages.studio.auto_auth import AutoAuthPage +from ..pages.studio.checklists import ChecklistsPage +from ..pages.studio.course_import import ImportPage +from ..pages.studio.course_info import CourseUpdatesPage +from ..pages.studio.edit_tabs import PagesPage +from ..pages.studio.export import ExportPage +from ..pages.studio.howitworks import HowitworksPage +from ..pages.studio.index import DashboardPage +from ..pages.studio.login import LoginPage +from ..pages.studio.manage_users import CourseTeamPage +from ..pages.studio.overview import CourseOutlinePage +from ..pages.studio.settings import SettingsPage +from ..pages.studio.settings_advanced import AdvancedSettingsPage +from ..pages.studio.settings_graders import GradingPage +from ..pages.studio.signup import SignupPage +from ..pages.studio.textbooks import TextbooksPage +from ..fixtures.course import CourseFixture, XBlockFixtureDesc + +from .helpers import UniqueCourseTest + + +class LoggedOutTest(WebAppTest): + """ + Smoke test for pages in Studio that are visible when logged out. + """ + + def setUp(self): + super(LoggedOutTest, self).setUp() + self.pages = [LoginPage(self.browser), HowitworksPage(self.browser), SignupPage(self.browser)] + + def test_page_existence(self): + """ + Make sure that all the pages are accessible. + Rather than fire up the browser just to check each url, + do them all sequentially in this testcase. + """ + for page in self.pages: + page.visit() + + +class LoggedInPagesTest(WebAppTest): + """ + Tests that verify the pages in Studio that you can get to when logged + in and do not have a course yet. + """ + + def setUp(self): + super(LoggedInPagesTest, self).setUp() + self.auth_page = AutoAuthPage(self.browser, staff=True) + self.dashboard_page = DashboardPage(self.browser) + + def test_dashboard_no_courses(self): + """ + Make sure that you can get to the dashboard page without a course. + """ + self.auth_page.visit() + self.dashboard_page.visit() + + +class CoursePagesTest(UniqueCourseTest): + """ + Tests that verify the pages in Studio that you can get to when logged + in and have a course. + """ + + COURSE_ID_SEPARATOR = "." + + def setUp(self): + """ + Install a course with no content using a fixture. + """ + super(UniqueCourseTest, self).setUp() + + CourseFixture( + self.course_info['org'], + self.course_info['number'], + self.course_info['run'], + self.course_info['display_name'] + ).install() + + self.auth_page = AutoAuthPage(self.browser, staff=True) + + self.pages = [ + clz(self.browser, self.course_info['org'], self.course_info['number'], self.course_info['run']) + for clz in [ + AssetIndexPage, ChecklistsPage, ImportPage, CourseUpdatesPage, + PagesPage, ExportPage, CourseTeamPage, CourseOutlinePage, SettingsPage, + AdvancedSettingsPage, GradingPage, TextbooksPage + ] + ] + + def test_page_existence(self): + """ + Make sure that all these pages are accessible once you have a course. + Rather than fire up the browser just to check each url, + do them all sequentially in this testcase. + """ + # Log in + self.auth_page.visit() + + # Verify that each page is available + for page in self.pages: + page.visit() + + +class DiscussionPreviewTest(UniqueCourseTest): + """ + Tests that Inline Discussions are rendered with a custom preview in Studio + """ + + def setUp(self): + super(DiscussionPreviewTest, self).setUp() + CourseFixture(**self.course_info).add_children( + XBlockFixtureDesc("chapter", "Test Section").add_children( + XBlockFixtureDesc("sequential", "Test Subsection").add_children( + XBlockFixtureDesc("vertical", "Test Unit").add_children( + XBlockFixtureDesc( + "discussion", + "Test Discussion", + ) + ) + ) + ) + ).install() + + AutoAuthPage(self.browser, staff=True).visit() + cop = CourseOutlinePage( + self.browser, + self.course_info['org'], + self.course_info['number'], + self.course_info['run'] + ) + cop.visit() + self.unit = cop.section('Test Section').subsection('Test Subsection').toggle_expand().unit('Test Unit') + self.unit.go_to() + + def test_is_preview(self): + """ + Ensure that the preview version of the discussion is rendered. + """ + self.assertTrue(self.unit.q(css=".discussion-preview").present) + self.assertFalse(self.unit.q(css=".discussion-show").present) diff --git a/common/test/acceptance/tests/test_video_module.py b/common/test/acceptance/tests/test_video_module.py index 63be00c055..e0caee264f 100644 --- a/common/test/acceptance/tests/test_video_module.py +++ b/common/test/acceptance/tests/test_video_module.py @@ -4,6 +4,8 @@ Acceptance tests for Video. """ +import json +import requests from .helpers import UniqueCourseTest from ..pages.lms.video import VideoPage from ..pages.lms.tab_nav import TabNavPage @@ -13,6 +15,8 @@ from ..pages.lms.course_info import CourseInfoPage from ..fixtures.course import CourseFixture, XBlockFixtureDesc VIDEO_SOURCE_PORT = 8777 +YOUTUBE_STUB_PORT = 9080 +YOUTUBE_STUB_URL = 'http://127.0.0.1:{}/'.format(YOUTUBE_STUB_PORT) HTML5_SOURCES = [ 'http://localhost:{0}/gizmo.mp4'.format(VIDEO_SOURCE_PORT), @@ -25,6 +29,13 @@ HTML5_SOURCES_INCORRECT = [ ] +class YouTubeConfigError(Exception): + """ + Error occurred while configuring YouTube Stub Server. + """ + pass + + class VideoBaseTest(UniqueCourseTest): """ Base class for tests of the Video Player @@ -50,6 +61,10 @@ class VideoBaseTest(UniqueCourseTest): self.metadata = None self.assets = [] self.verticals = None + self.youtube_configuration = {} + + # reset youtube stub server + self.addCleanup(self._reset_youtube_stub_server) def navigate_to_video(self): """ Prepare the course and get to the video and render it """ @@ -76,6 +91,9 @@ class VideoBaseTest(UniqueCourseTest): self.course_fixture.add_children(chapter) self.course_fixture.install() + if len(self.youtube_configuration) > 0: + self._configure_youtube_stub_server(self.youtube_configuration) + def _add_course_verticals(self): """ Create XBlockFixtureDesc verticals @@ -126,6 +144,39 @@ class VideoBaseTest(UniqueCourseTest): self._navigate_to_courseware_video() self.video.wait_for_video_class() + def _configure_youtube_stub_server(self, config): + """ + Allow callers to configure the stub server using the /set_config URL. + :param config: Configuration dictionary. + The request should have PUT data, such that: + Each PUT parameter is the configuration key. + Each PUT value is a JSON-encoded string value for the configuration. + :raise YouTubeConfigError: + """ + youtube_stub_config_url = YOUTUBE_STUB_URL + 'set_config' + + config_data = {param: json.dumps(value) for param, value in config.items()} + response = requests.put(youtube_stub_config_url, data=config_data) + + if not response.ok: + raise YouTubeConfigError( + 'YouTube Server Configuration Failed. URL {0}, Configuration Data: {1}, Status was {2}'.format( + youtube_stub_config_url, config, response.status_code)) + + def _reset_youtube_stub_server(self): + """ + Reset YouTube Stub Server Configurations using the /del_config URL. + :raise YouTubeConfigError: + """ + youtube_stub_config_url = YOUTUBE_STUB_URL + 'del_config' + + response = requests.delete(youtube_stub_config_url) + + if not response.ok: + raise YouTubeConfigError( + 'YouTube Server Configuration Failed. URL: {0} Status was {1}'.format( + youtube_stub_config_url, response.status_code)) + def metadata_for_mode(self, player_mode, additional_data=None): """ Create a dictionary for video player configuration according to `player_mode` @@ -268,7 +319,7 @@ class YouTubeVideoTest(VideoBaseTest): # check if we can download transcript in "srt" format that has text "好 各位同学" unicode_text = "好 各位同学".decode('utf-8') - self.video.downloaded_transcript_contains_text('srt', unicode_text) + self.assertTrue(self.video.downloaded_transcript_contains_text('srt', unicode_text)) def test_download_button_two_transcript_languages(self): """ @@ -292,10 +343,10 @@ class YouTubeVideoTest(VideoBaseTest): self.assertIn('Hi, welcome to Edx.', self.video.captions_text) # check if we can download transcript in "srt" format that has text "Hi, welcome to Edx." - self.video.downloaded_transcript_contains_text('srt', 'Hi, welcome to Edx.') + self.assertTrue(self.video.downloaded_transcript_contains_text('srt', 'Hi, welcome to Edx.')) # select language with code "zh" - self.video.select_language('zh') + self.assertTrue(self.video.select_language('zh')) # check if we see "好 各位同学" text in the captions unicode_text = "好 各位同学".decode('utf-8') @@ -303,7 +354,7 @@ class YouTubeVideoTest(VideoBaseTest): # check if we can download transcript in "srt" format that has text "好 各位同学" unicode_text = "好 各位同学".decode('utf-8') - self.video.downloaded_transcript_contains_text('srt', unicode_text) + self.assertTrue(self.video.downloaded_transcript_contains_text('srt', unicode_text)) def test_fullscreen_video_alignment_on_transcript_toggle(self): """ @@ -337,6 +388,140 @@ class YouTubeVideoTest(VideoBaseTest): # check if video aligned correctly without enabled transcript self.assertTrue(self.video.is_aligned(False)) + def test_video_rendering_with_default_response_time(self): + """ + Scenario: Video is rendered in Youtube mode when the YouTube Server responds quickly + Given the YouTube server response time less than 1.5 seconds + And the course has a Video component in "Youtube_HTML5" mode + Then the video has rendered in "Youtube" mode + """ + # configure youtube server + self.youtube_configuration['time_to_response'] = 0.4 + self.metadata = self.metadata_for_mode('youtube_html5') + + self.navigate_to_video() + + self.assertTrue(self.video.is_video_rendered('youtube')) + + def test_video_rendering_wo_default_response_time(self): + """ + Scenario: Video is rendered in HTML5 when the YouTube Server responds slowly + Given the YouTube server response time is greater than 1.5 seconds + And the course has a Video component in "Youtube_HTML5" mode + Then the video has rendered in "HTML5" mode + """ + # configure youtube server + self.youtube_configuration['time_to_response'] = 2.0 + self.metadata = self.metadata_for_mode('youtube_html5') + + self.navigate_to_video() + + self.assertTrue(self.video.is_video_rendered('html5')) + + def test_video_with_youtube_blocked(self): + """ + Scenario: Video is rendered in HTML5 mode when the YouTube API is blocked + Given the YouTube server response time is greater than 1.5 seconds + And the YouTube API is blocked + And the course has a Video component in "Youtube_HTML5" mode + Then the video has rendered in "HTML5" mode + """ + # configure youtube server + self.youtube_configuration.update({ + 'time_to_response': 2.0, + 'youtube_api_blocked': True, + }) + self.metadata = self.metadata_for_mode('youtube_html5') + + self.navigate_to_video() + + self.assertTrue(self.video.is_video_rendered('html5')) + + def test_download_transcript_button_works_correctly(self): + """ + Scenario: Download Transcript button works correctly + Given the course has Video components A and B in "Youtube" mode + And Video component C in "HTML5" mode + And I have defined downloadable transcripts for the videos + Then I can download a transcript for Video A in "srt" format + And I can download a transcript for Video A in "txt" format + And I can download a transcript for Video B in "txt" format + And the Download Transcript menu does not exist for Video C + """ + + data_a = {'sub': 'OEoXaMPEzfM', 'download_track': True} + youtube_a_metadata = self.metadata_for_mode('youtube', additional_data=data_a) + self.assets.append('subs_OEoXaMPEzfM.srt.sjson') + + data_b = {'youtube_id_1_0': 'b7xgknqkQk8', 'sub': 'b7xgknqkQk8', 'download_track': True} + youtube_b_metadata = self.metadata_for_mode('youtube', additional_data=data_b) + self.assets.append('subs_b7xgknqkQk8.srt.sjson') + + data_c = {'track': 'http://example.org/', 'download_track': True} + html5_c_metadata = self.metadata_for_mode('html5', additional_data=data_c) + + self.verticals = [ + [{'display_name': 'A', 'metadata': youtube_a_metadata}], + [{'display_name': 'B', 'metadata': youtube_b_metadata}], + [{'display_name': 'C', 'metadata': html5_c_metadata}] + ] + + # open the section with videos (open video "A") + self.navigate_to_video() + + # check if we can download transcript in "srt" format that has text "00:00:00,270" + self.assertTrue(self.video.downloaded_transcript_contains_text('srt', '00:00:00,270')) + + # select the transcript format "txt" + self.assertTrue(self.video.select_transcript_format('txt')) + + # check if we can download transcript in "txt" format that has text "Hi, welcome to Edx." + self.assertTrue(self.video.downloaded_transcript_contains_text('txt', 'Hi, welcome to Edx.')) + + # open video "B" + self.course_nav.go_to_sequential('B') + + # check if we can download transcript in "txt" format that has text "Equal transcripts" + self.assertTrue(self.video.downloaded_transcript_contains_text('txt', 'Equal transcripts')) + + # open video "C" + self.course_nav.go_to_sequential('C') + + # menu "download_transcript" doesn't exist + self.assertFalse(self.video.is_menu_exist('download_transcript')) + + def test_video_language_menu_working(self): + """ + Scenario: Language menu works correctly in Video component + Given the course has a Video component in "Youtube" mode + And I have defined multiple language transcripts for the videos + And I make sure captions are closed + And I see video menu "language" with correct items + And I select language with code "zh" + Then I see "好 各位同学" text in the captions + And I select language with code "en" + Then I see "Hi, welcome to Edx." text in the captions + """ + self.assets.extend(['chinese_transcripts.srt', 'subs_OEoXaMPEzfM.srt.sjson']) + data = {'transcripts': {"zh": "chinese_transcripts.srt"}, 'sub': 'OEoXaMPEzfM'} + self.metadata = self.metadata_for_mode('youtube', additional_data=data) + + # go to video + self.navigate_to_video() + + self.video.hide_captions() + + correct_languages = {'en': 'English', 'zh': 'Chinese'} + self.assertEqual(self.video.caption_languages(), correct_languages) + + self.video.select_language('zh') + + unicode_text = "好 各位同学".decode('utf-8') + self.assertIn(unicode_text, self.video.captions_text) + + self.video.select_language('en') + self.assertIn('Hi, welcome to Edx.', self.video.captions_text) + class YouTubeHtml5VideoTest(VideoBaseTest): """ Test YouTube HTML5 Video Player """ @@ -417,7 +602,7 @@ class Html5VideoTest(VideoBaseTest): # check if we can download transcript in "srt" format that has text "好 各位同学" unicode_text = "好 各位同学".decode('utf-8') - self.video.downloaded_transcript_contains_text('srt', unicode_text) + self.assertTrue(self.video.downloaded_transcript_contains_text('srt', unicode_text)) def test_download_button_two_transcript_languages(self): """ @@ -441,10 +626,10 @@ class Html5VideoTest(VideoBaseTest): self.assertIn('Hi, welcome to Edx.', self.video.captions_text) # check if we can download transcript in "srt" format that has text "Hi, welcome to Edx." - self.video.downloaded_transcript_contains_text('srt', 'Hi, welcome to Edx.') + self.assertTrue(self.video.downloaded_transcript_contains_text('srt', 'Hi, welcome to Edx.')) # select language with code "zh" - self.video.select_language('zh') + self.assertTrue(self.video.select_language('zh')) # check if we see "好 各位同学" text in the captions unicode_text = "好 各位同学".decode('utf-8') @@ -453,7 +638,7 @@ class Html5VideoTest(VideoBaseTest): #Then I can download transcript in "srt" format that has text "好 各位同学" unicode_text = "好 各位同学".decode('utf-8') - self.video.downloaded_transcript_contains_text('srt', unicode_text) + self.assertTrue(self.video.downloaded_transcript_contains_text('srt', unicode_text)) def test_full_screen_video_alignment_with_transcript_visible(self): """ @@ -523,3 +708,18 @@ class Html5VideoTest(VideoBaseTest): # check if we see "好 各位同学" text in the captions unicode_text = "好 各位同学".decode('utf-8') self.assertIn(unicode_text, self.video.captions_text) + + def test_video_rendering(self): + """ + Scenario: Video component is fully rendered in the LMS in HTML5 mode + Given the course has a Video component in "HTML5" mode + Then the video has rendered in "HTML5" mode + And video sources are correct + """ + self.metadata = self.metadata_for_mode('html5') + + self.navigate_to_video() + + self.assertTrue(self.video.is_video_rendered('html5')) + + self.assertTrue(all([source in HTML5_SOURCES for source in self.video.sources()])) diff --git a/common/test/data/test_exam_registration/policies/2012_Fall.json b/common/test/data/test_exam_registration/policies/2012_Fall.json index c7e1e3fffe..a12ccecf1c 100644 --- a/common/test/data/test_exam_registration/policies/2012_Fall.json +++ b/common/test/data/test_exam_registration/policies/2012_Fall.json @@ -2,7 +2,7 @@ "course/2012_Fall": { "graceperiod": "2 days 5 hours 59 minutes 59 seconds", "start": "2011-07-17T12:00", - "display_name": "Toy Course", + "display_name": "Toy Course" }, "chapter/Overview": { "display_name": "Overview" diff --git a/conf/locale/ar/LC_MESSAGES/django.mo b/conf/locale/ar/LC_MESSAGES/django.mo index cd89d039ae..6878d9de87 100644 Binary files a/conf/locale/ar/LC_MESSAGES/django.mo and b/conf/locale/ar/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ar/LC_MESSAGES/django.po b/conf/locale/ar/LC_MESSAGES/django.po index c552598562..cc1084271a 100644 --- a/conf/locale/ar/LC_MESSAGES/django.po +++ b/conf/locale/ar/LC_MESSAGES/django.po @@ -6,11 +6,12 @@ # Translators: # abdallah_n , 2013 # abdallah.nassif , 2013 -# abdallah_n , 2013 +# abdallah_n , 2013-2014 # abdallah.nassif , 2013 # Ahmad Abd Arrahman , 2013-2014 # a.nassif , 2013 # a.nassif , 2013 +# Hassan05 , 2014 # khateeb , 2013 # khateeb , 2013 # may , 2013 @@ -40,10 +41,11 @@ # Translators: # abdallah_n , 2013 # abdallah.nassif , 2013 -# abdallah_n , 2013 +# abdallah_n , 2013-2014 # abdallah.nassif , 2013 # Ahmad Abd Arrahman , 2013-2014 # hani1460 , 2014 +# Hassan05 , 2014 # jkfreij , 2014 # khateeb , 2013 # khateeb , 2013 @@ -59,9 +61,12 @@ # Translators: # abdallah_n , 2013 # abdallah.nassif , 2013 +# abdallah_n , 2014 # Safaa_fadl , 2014 +# Hassan05 , 2014 # jkfreij , 2014 # khateeb , 2013 +# may , 2014 # najwan , 2013 # sarina , 2014 # #-#-#-#-# messages.po (edx-platform) #-#-#-#-# @@ -81,13 +86,16 @@ # # Translators: # Almaazon , 2014 +# Hassan05 , 2014 +# mabdelhaq , 2014 +# SalmaGhazal , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" -"PO-Revision-Date: 2014-03-11 14:11+0000\n" -"Last-Translator: Almaazon \n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-05-04 11:18+0000\n" +"Last-Translator: Hassan05 \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/edx-platform/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -250,8 +258,13 @@ msgid "Too many failed login attempts. Try again later." msgstr "" #: common/djangoapps/student/views.py lms/templates/provider_login.html +#, fuzzy msgid "Email or password is incorrect." msgstr "" +"#-#-#-#-# django-partial.po (edx-platform) #-#-#-#-#\n" +"البريد الإلكتروني أو كلمة السر غير صحيحة\n" +"#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" +"البريد الإلكتروني أو كلمة المرور غير صحيحة" #: common/djangoapps/student/views.py msgid "" @@ -847,7 +860,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1412,6 +1425,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -2517,6 +2540,8 @@ msgid "" "Please visit your
dashboard to see your new" " enrollments." msgstr "" +"الرجاء زيارة صفحة المعلومات الرئيسية الخاصة" +" بك للاطلاع على المساقات التي تم تسجيلك بها مؤخراً." #: lms/djangoapps/shoppingcart/models.py msgid "[Refund] User-Requested Refund" @@ -3135,8 +3160,15 @@ msgid "Password Reset Help" msgstr "" #: lms/templates/registration/password_reset_confirm.html +#: cms/templates/login.html lms/templates/login-sidebar.html +#: lms/templates/register-sidebar.html +#, fuzzy msgid "Need Help?" -msgstr "تحتاج إلى مساعدة؟" +msgstr "" +"#-#-#-#-# django-partial.po (edx-platform) #-#-#-#-#\n" +"تحتاج إلى مساعدة؟\n" +"#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" +"هل تحتاج مساعدة؟" #: lms/templates/registration/password_reset_confirm.html msgid "" @@ -4486,6 +4518,12 @@ msgid "" "{platform_name}'s free online MOOCs are interactive and subjects include " "computer science, public health, and artificial intelligence." msgstr "" +"{platform_name} هي منشأة غير ربحية تم تأسيسها من قبل الشركاء {Harvard} " +"و{MIT}، الذين تتمثّل مهمتهم في تقديم أفضل مستويات الدراسات العليا وجعلها في " +"متناول الطلاب من جميع الأعمار وفي أي مكان في العالم يتوفّر فيه الاتصال " +"بالإنترنت. إن مساقات {platform_name} الضخمة المتاحة عبر الإنترنت والمقدّمة " +"بشكلٍ مجاني هي مساقات تفاعلية، وتشمل عدة مواد من ضمنها علوم الحاسوب، الصحة " +"العامة، و الذكاء الاصطناعي." #: lms/templates/footer.html msgid "© 2014 {platform_name}, some rights reserved." @@ -4774,7 +4812,7 @@ msgstr "" #: lms/templates/login.html msgid "Your email or password is incorrect" -msgstr "" +msgstr "عنوان بريدك الإلكتروني أو كلمة السر غير صحيحين" #: lms/templates/login.html msgid "" @@ -4811,10 +4849,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4824,6 +4876,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5127,7 +5183,7 @@ msgstr "" #: lms/templates/register.html msgid "Create My {platform_name} Account" -msgstr "" +msgstr "إنشئ حسابي على {platform_name}" #: lms/templates/register.html msgid "Welcome!" @@ -5167,7 +5223,7 @@ msgstr "" #: lms/templates/register.html lms/templates/verify_student/face_upload.html msgid "example: Jane Doe" -msgstr "" +msgstr "الإسم الكامل" #: lms/templates/register.html lms/templates/register.html msgid "Needed for any certificates you may earn" @@ -5623,10 +5679,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" @@ -5902,11 +5954,11 @@ msgstr "" #: lms/templates/courseware/course_about.html msgid "Classes Start" -msgstr "" +msgstr "تبدأ المساقات" #: lms/templates/courseware/course_about.html msgid "Classes End" -msgstr "" +msgstr "تنتهي المساقات" #: lms/templates/courseware/course_about.html msgid "Estimated Effort" @@ -9768,6 +9820,8 @@ msgid "" "Thank you for activating your account. You may now sign in and start using " "edX Studio to author courses." msgstr "" +"نشكرك على تفعيل حسابك. بإمكانك الآن تسجيل الدخول و البدء باستعمال استوديو " +"edX لتأليف المساقات." #: cms/templates/activation_invalid.html msgid "Your account activation is invalid" @@ -10196,7 +10250,7 @@ msgstr "" #: cms/templates/export.html msgid "About Exporting Courses" -msgstr "" +msgstr "عن تصدير المساقات" #. Translators: ".tar.gz" is a file extension, and should not be translated #: cms/templates/export.html @@ -10356,6 +10410,8 @@ msgstr "" msgid "" "Studio helps manage your courses online, so you can focus on teaching them" msgstr "" +"يساعدك الاستوديو على إدارة مساقاتك عبر الإنترنت، مما يمكّنك من التركيز على " +"عملية إعطاء هذه المقرّرات" #: cms/templates/howitworks.html msgid "Studio's Many Features" @@ -10635,6 +10691,8 @@ msgid "" "Integrating your imported content into this course. This may take a while " "with larger courses." msgstr "" +"يتم دمج المحتوى الذي قمت باستيراده في هذا المقرر. قد يستغرق ذلك وقتاً مع " +"المساقات الكبيرة. " #: cms/templates/import.html msgid "Success" @@ -10714,7 +10772,7 @@ msgstr "" #: cms/templates/index.html cms/templates/index.html #: cms/templates/widgets/header.html msgid "My Courses" -msgstr "" +msgstr "مساقاتي" #: cms/templates/index.html msgid "New Course" @@ -10731,6 +10789,7 @@ msgstr "" #: cms/templates/index.html msgid "Here are all of the courses you currently have access to in Studio:" msgstr "" +"ستجد هنا قائمة بجميع المساقات التي لديك صلاحية الدخول عليها في الاستوديو:" #: cms/templates/index.html msgid "You currently aren't associated with any Studio Courses." @@ -10817,7 +10876,7 @@ msgstr "" #: cms/templates/index.html msgid "Are you staff on an existing Studio course?" -msgstr "" +msgstr "هل أنت ضمن طاقم أي من مساقات الاستوديو؟" #: cms/templates/index.html msgid "" @@ -10846,6 +10905,10 @@ msgid "" "evaluate your request and provide you feedback within 24 hours during the " "work week." msgstr "" +"EDX استوديو هو حل برمجي مستضاف نوفّره لشركاء xConsortium وللضيوف المحددين. " +"تظهر المساقات التي كنت عضواً في فريق إنشائها في الأعلى وبإمكانك تعديلها، في " +"الأثناء التي يتم خلالها منح امتيازات صاحب المقرر من قبل EDX. سيقوم فريقنا " +"بتقييم طلبك وإعطائك إجابةً بشأنه في غضون 24 ساعة خلال أسبوع العمل." #: cms/templates/index.html cms/templates/index.html cms/templates/index.html msgid "Your Course Creator Request Status:" @@ -10853,7 +10916,7 @@ msgstr "" #: cms/templates/index.html msgid "Request the Ability to Create Courses" -msgstr "" +msgstr "طلب صلاحية إنشاء المساقات" #: cms/templates/index.html cms/templates/index.html msgid "Your Course Creator Request Status" @@ -10866,6 +10929,10 @@ msgid "" "edit, while course creator privileges are granted by edX. Our team is has " "completed evaluating your request." msgstr "" +"EDX استوديو هو حل برمجي مستضاف نوفّره لشركاء xConsortium وللضيوف المحددين. " +"تظهر المساقات التي كنت عضواً في فريق إنشائها في الأعلى وبإمكانك تعديلها، في " +"الأثناء التي يتم خلالها منح امتيازات صاحب المقرر من قبل EDX. لقد أنهى فريقنا" +" عملية تقييم طلبك." #: cms/templates/index.html cms/templates/index.html msgid "Your Course Creator request is:" @@ -10887,6 +10954,10 @@ msgid "" "edit, while course creator privileges are granted by edX. Our team is " "currently evaluating your request." msgstr "" +"EDX استوديو هو حل برمجي مستضاف نوفّره لشركاء xConsortium وللضيوف المحددين. " +"تظهر المساقات التي كنت عضواً في فريق إنشائها في الأعلى وبإمكانك تعديلها، في " +"الأثناء التي يتم خلالها منح امتيازات صاحب المقرر من قبل EDX. طلبك قيد " +"التقييم الآن من قبل فريقنا." #: cms/templates/index.html msgid "" @@ -10896,7 +10967,7 @@ msgstr "" #: cms/templates/index.html cms/templates/index.html msgid "Need help?" -msgstr "" +msgstr "هل تحتاج إلى مساعدة؟" #: cms/templates/index.html msgid "" @@ -10914,7 +10985,7 @@ msgstr "" #: cms/templates/index.html cms/templates/index.html cms/templates/index.html msgid "Can I create courses in Studio?" -msgstr "" +msgstr "هل أستطيع إنشاء مساقات باستخدام برنامج استوديو؟" #: cms/templates/index.html msgid "In order to create courses in Studio, you must" @@ -10932,7 +11003,7 @@ msgstr "" #: cms/templates/index.html msgid "Your request to author courses in studio has been denied. Please" -msgstr "" +msgstr "الطلب الذي تقدمت به لتأليف المساقات في الاستوديو قد رفض. الرجاء" #: cms/templates/index.html msgid "contact edX Staff with further questions" @@ -11251,7 +11322,7 @@ msgstr "" #: cms/templates/register.html msgid "Create My Account & Start Authoring Courses" -msgstr "" +msgstr "قم بإنشاء حسابي و ابدأ بتأليف المساقات" #: cms/templates/register.html msgid "Common Studio Questions" @@ -11960,6 +12031,9 @@ msgid "" "Take advantage of our documentation, help center, as well as our edX101 " "introduction course for course authors." msgstr "" +"هل تحتاج مساعدة في استعمال برنامج استوديو؟ إن وضع مقررٍ ما هو أمرٌ معقد، " +"لذلك فنحن هنا للمساعدة. استفد من التوثيق الكامل الذي نوفّره، ومن مركز " +"المساعدة، وأيضاً من مقرر edX101 التمهيدي لمؤلفي المساقات." #: cms/templates/widgets/sock.html msgid "Download Studio Documentation" diff --git a/conf/locale/ar/LC_MESSAGES/djangojs.mo b/conf/locale/ar/LC_MESSAGES/djangojs.mo index 9a005f6a8f..890b2e7c5b 100644 Binary files a/conf/locale/ar/LC_MESSAGES/djangojs.mo and b/conf/locale/ar/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ar/LC_MESSAGES/djangojs.po b/conf/locale/ar/LC_MESSAGES/djangojs.po index 595804891f..3b2b54e3d8 100644 --- a/conf/locale/ar/LC_MESSAGES/djangojs.po +++ b/conf/locale/ar/LC_MESSAGES/djangojs.po @@ -36,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-26 09:40+0000\n" "Last-Translator: may \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/edx-platform/language/ar/)\n" diff --git a/conf/locale/az/LC_MESSAGES/django.mo b/conf/locale/az/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..a8894ad514 Binary files /dev/null and b/conf/locale/az/LC_MESSAGES/django.mo differ diff --git a/conf/locale/az/LC_MESSAGES/django.po b/conf/locale/az/LC_MESSAGES/django.po new file mode 100644 index 0000000000..472649a1d8 --- /dev/null +++ b/conf/locale/az/LC_MESSAGES/django.po @@ -0,0 +1,12580 @@ +# #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Azerbaijani (http://www.transifex.com/projects/p/edx-platform/language/az/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Azerbaijani (http://www.transifex.com/projects/p/edx-platform/language/az/) +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# messages.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2013 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-07 13:46+0000\n" +"Last-Translator: sarina \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/edx-platform/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 1.3\n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Translators: "Open Ended Panel" appears on a tab that, when clicked, opens +#. up a panel that +#. displays information about open-ended problems that a user has submitted or +#. needs to grade +#: cms/djangoapps/contentstore/utils.py common/lib/xmodule/xmodule/tabs.py +msgid "Open Ended Panel" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "Honor Code Certificate" +msgstr "" + +#: common/djangoapps/course_modes/views.py common/djangoapps/student/views.py +msgid "Enrollment is closed" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment mode not supported" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Invalid amount selected." +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "No selected price or selected price is too low." +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Community TA" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "" +"Your account has been disabled. If you believe this was done in error, " +"please contact us at {link_start}{support_email}{link_end}" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "Disabled Account" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Male" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Female" +msgstr "" + +#. Translators: 'Other' refers to the student's gender +#. Translators: 'Other' refers to the student's level of education +#: common/djangoapps/student/models.py common/djangoapps/student/models.py +msgid "Other" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Doctorate" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Master's or professional degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Bachelor's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Associate's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Secondary/high school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Junior secondary/junior high/middle school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Elementary/primary school" +msgstr "" + +#. Translators: 'None' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "None" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id not specified" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id is invalid" +msgstr "" + +#: common/djangoapps/student/views.py +#: lms/templates/courseware/course_about.html +msgid "Course is full" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You are not enrolled in this course" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Enrollment action is invalid" +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "There was an error receiving your login information. Please email us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has been temporarily locked due to excessive login failures. " +"Try again later." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Too many failed login attempts. Try again later." +msgstr "" + +#: common/djangoapps/student/views.py lms/templates/provider_login.html +msgid "Email or password is incorrect." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has not been activated. We have sent another activation " +"message. Please check your e-mail for the activation instructions." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please enter a username" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please choose an option" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "User with username {} does not exist" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully disabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully reenabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unexpected account status" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Public Username '{username}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Email '{email}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Error (401 {field}). E-mail us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Accepting Terms of Service is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Agreeing to the Honor Code is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Email cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail is required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Could not send activation e-mail." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unknown error. Please e-mail us to let us know how it happened." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "No inactive user with this e-mail exists" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unable to send reactivation email" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Invalid password" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail address required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with this e-mail already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Old email is the same as the new email." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Name required" +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Invalid ID" +msgstr "" + +#. Translators: the translation for "LONG_DATE_FORMAT" must be a format +#. string for formatting dates in a long form. For example, the +#. American English form is "%A, %B %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "LONG_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "DATE_TIME_FORMAT" must be a format +#. string for formatting dates with times. For example, the American +#. English form is "%b %d, %Y at %H:%M". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "DATE_TIME_FORMAT" +msgstr "" + +#. Translators: the translation for "SHORT_DATE_FORMAT" must be a +#. format string for formatting dates in a brief form. For example, +#. the American English form is "%b %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "SHORT_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "TIME_FORMAT" must be a format +#. string for formatting times. For example, the American English +#. form is "%H:%M:%S". See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "TIME_FORMAT" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "AM" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "PM" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Monday Februrary 10, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Monday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Tuesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Wednesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Thursday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Friday Februrary 14, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Friday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Saturday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Sunday" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jan 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Feb 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Mar 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Apr 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "May 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "May" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jun 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jul 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Aug 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Sep 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Oct 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Nov 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Dec 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "January 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "January" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "February 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "February" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "March 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "March" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "April 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "April" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "May 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "May" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "June 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "June" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "July 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "July" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "August 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "August" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "September 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "September" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "October 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "October" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "November 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "November" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "December 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "December" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Invalid Length ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or more" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or less" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Must be more complex ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more uppercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more lowercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more digits" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more punctuation characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more non ascii characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more unique words" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Too similar to a restricted dictionary word." +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +msgid "Cannot rescore problems with possible file submissions" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "correct" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incorrect" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incomplete" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +msgid "unanswered" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "processing" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your file(s) have been submitted. As soon as your submission is graded, this" +" message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your answer has been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Submitted. As soon as a response is returned, this message will be replaced " +"by that feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Error {err} in evaluating hint function {hintfn}." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "(Source code line unavailable)" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "See XML source line {sourcenum}." +msgstr "" + +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +msgid "There was a problem with the staff answer to this problem." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{student_answer}' as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use variables ({bad_variables}) in numerical problems." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "factorial function evaluated outside its domain:'{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid math syntax: '{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use complex numbers in range tolerance problems" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: complex boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: empty boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "CustomResponse: check function returned an invalid dictionary!" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"Unable to deliver your submission to grader (Reason: {error_msg}). Please " +"try again later." +msgstr "" + +#. Translators: 'grader' refers to the edX automatic code grader. +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/capa/capa/responsetypes.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Invalid grader reply. Please contact the course staff." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: {bad_input} not permitted in answer." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"factorial function not permitted in answer for this problem. Provided answer" +" was: {bad_input}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula" +msgstr "" + +#. Translators: 'SchematicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "The Staff answer could not be interpreted as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{given_answer}' as a number." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Final Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Warning: The problem has been reset to its initial state!" +msgstr "" + +#. Translators: Following this message, there will be a bulleted list of +#. items. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"The problem's state was corrupted by an invalid submission. The submission " +"consisted of:" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "If this error persists, please contact the course staff." +msgstr "" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem is closed." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be reset before it can be checked again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You must wait at least {wait} seconds between submissions." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + +#. Translators: {msg} will be replaced with a problem's error message. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Error: {msg}" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + +#. Translators: 'rescoring' refers to the act of re-submitting a student's +#. solution so it can get a new score. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem's definition does not support rescoring." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be answered before it can be graded again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem needs to be reset prior to save." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Your answers have been saved." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Your answers have been saved but not graded. Click 'Check' to grade them." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Refresh the page and make an attempt before resetting." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"We're sorry, there was an error with processing your request. Please try " +"reloading your page and trying again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"The state of this problem has changed since you loaded this page. Please " +"refresh your page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "General" +msgstr "" + +#. Translators: TBD stands for 'To Be Determined' and is used when a course +#. does not yet have an announced start date. +#: common/lib/xmodule/xmodule/course_module.py +msgid "TBD" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: 'Courseware' refers to the tab in the courseware that leads to +#. the content of a course +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/courseware/courseware-error.html +msgid "Courseware" +msgstr "" + +#. Translators: "Course Info" is the name of the course's information and +#. updates page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Course Info" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Progress" is the name of the student's course progress page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/peer_grading/peer_grading.html +msgid "Progress" +msgstr "" + +#. Translators: "Wiki" is the name of the course's wiki page +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/course_wiki/views.py +#: lms/templates/wiki/base.html +msgid "Wiki" +msgstr "" + +#. Translators: "Discussion" is the title of the course forum page +#. Translators: 'Discussion' refers to the tab in the courseware that leads to +#. the discussion forums +#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +msgid "Discussion" +msgstr "" + +#: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Textbooks" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Staff grading" appears on a tab that allows +#. staff to view open-ended problems that require staff grading +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/instructor/staff_grading.html +msgid "Staff grading" +msgstr "" + +#. Translators: "Peer grading" appears on a tab that allows +#. students to view open-ended problems that require grading +#: common/lib/xmodule/xmodule/tabs.py +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 +msgid "Syllabus" +msgstr "" + +#. Translators: 'Instructor' appears on the tab that leads to the instructor +#. dashboard, which is +#. a portal where an instructor can get data and perform various actions on +#. their course +#: common/lib/xmodule/xmodule/tabs.py +msgid "Instructor" +msgstr "" + +#. Translators: "Self" is used to denote an openended response that is self- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Self" +msgstr "" + +#. Translators: "AI" is used to denote an openended response that is machine- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "AI" +msgstr "" + +#. Translators: "Peer" is used to denote an openended response that is peer- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Peer" +msgstr "" + +#. Translators: "Not started" is used to communicate to a student that their +#. response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Not started." +msgstr "" + +#. Translators: "Being scored." is used to communicate to a student that their +#. response +#. are in the process of being scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Being scored." +msgstr "" + +#. Translators: "Scoring finished" is used to communicate to a student that +#. their response +#. have been scored, but the full scoring process is not yet complete +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scoring finished." +msgstr "" + +#. Translators: "Complete" is used to communicate to a student that their +#. openended response has been fully scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Complete." +msgstr "" + +#. Translators: "Scored rubric" appears to a user as part of a longer +#. string that looks something like: "Scored rubric from grader 1". +#. "Scored" is an adjective that modifies the noun "rubric". +#. That longer string appears when a user is viewing a graded rubric +#. returned from one of the graders of their openended response problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scored rubric" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "" +"You have attempted this question {number_of_student_attempts} times. You are" +" only allowed to attempt it {max_number_of_attempts} times." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "The problem state got out-of-sync. Please try reloading the page." +msgstr "" + +#. Translators: "Self-Assessment" refers to the self-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Self-Assessment" +msgstr "" + +#. Translators: "Peer-Assessment" refers to the peer-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Peer-Assessment" +msgstr "" + +#. Translators: "Instructor-Assessment" refers to the instructor-assessed mode +#. of openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Instructor-Assessment" +msgstr "" + +#. Translators: "AI-Assessment" refers to the machine-graded mode of openended +#. evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "AI-Assessment" +msgstr "" + +#. Translators: 'tag' is one of 'feedback', 'submission_id', +#. 'grader_id', or 'score'. They are categories that a student +#. responds to when filling out a post-assessment survey +#. of his or her grade from an openended problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Could not find needed tag {tag_name} in the survey responses. Please try " +"submitting again." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "There was an error saving your feedback. Please contact course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Couldn't submit feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Unable to save your feedback. Please try again later." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your submission." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Unable to submit your submission to the grader. Please try again later." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error getting feedback from grader." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "No feedback available from grader." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error handling action. Please try again." +msgstr "" + +#. Translators: this string appears once an openended response +#. is submitted but before it has been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: "Not started" communicates to a student that their response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Not started" +msgstr "" + +#. Translators: "In progress" communicates to a student that their response +#. is currently in the grading process +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "In progress" +msgstr "" + +#. Translators: "Done" communicates to a student that their response +#. has been fully graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Done" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We could not find a file in your submission. Please try choosing a file or " +"pasting a URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We are having trouble saving your file. Please try another file or paste a " +"URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/self_assessment_module.py +msgid "Error saving your score. Please notify course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Can't receive transcripts from Youtube for {youtube_id}. Status code: " +"{status_code}." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Can't find any transcripts on the Youtube service." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "We support only SubRip (*.srt) transcripts format." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Something wrong with SubRip transcripts file during parsing. Inner message " +"is {error_message}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Something wrong with SubRip transcripts file during parsing." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "A YouTube URL or a link to a file hosted anywhere on the web." +msgstr "" + +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Navigation" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "About these documents" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Index" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Search" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/copyright.html +msgid "Copyright" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: " +"{grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "students" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "questions" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{num_students} student(s) opened Subsection {subsection_num}: " +"{subsection_name}" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{problem_info_x} {problem_info_n} - {count_grade} {students} " +"({percent:.0f}%: {grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#. Translators: this string includes wiki markup. Leave the ** and the _ +#. alone. +#: lms/djangoapps/course_wiki/views.py +msgid "This is the wiki for **{organization}**'s _{course_name}_." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Course page automatically created." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Welcome to the edX Wiki" +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Visit a course wiki to add an article." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} does not exist." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} has never accessed problem {location}" +msgstr "" + +#: lms/djangoapps/courseware/features/video.py lms/templates/video.html +msgid "ERROR: No playable video sources found!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Path {0} doesn't exist, please create it, or configure a different path with" +" GIT_REPO_DIR" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Non usable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to get git log" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "git clone or pull failed!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to run import command." +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "The underlying module store does not support import." +msgstr "" + +#. Translators: This is an error message when they ask for a +#. particular version of a git repository and that version isn't +#. available from the remote source they specified +#: lms/djangoapps/dashboard/git_import.py +msgid "The specified remote branch is not available." +msgstr "" + +#. Translators: Error message shown when they have asked for a git +#. repository branch, a specific version within a repository, that +#. doesn't exist, or there is a problem changing to it. +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to switch to specified branch. Please check your branch name." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}, error {1}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "fixed password" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "All ok!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide full name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email must end in" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed - email {0} already exists as external_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Password must be supplied if not using certificates" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email address required (not username)" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Oops, failed to create user {0}, IntegrityError" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "User {0} created successfully!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with email address {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with username {0} - {1}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted user {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Statistic" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Value" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Site statistics" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Total number of users" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Courses loaded in the modulestore" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/templates/tracking_log.html +msgid "username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "email" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Repair Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Create User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Delete User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "The git repo location should end with '.git', and be a valid url" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Added Course" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Refusing to import. GIT_IMPORT_WITH_XMLMODULESTORE is not turned on, and it " +"is generally not safe to import into an XMLModuleStore with multithreaded. " +"We recommend you enable the MongoDB based module store instead, unless this " +"is a development environment." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "" +"The course {0} already exists in the data directory! (reloading anyway)" +msgstr "" + +#. Translators: unable to download the course content from +#. the source git repository. Clone occurs if this is brand +#. new, and pull is when it is being updated from the +#. source. +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Unable to clone or pull repository. Please check your url. Output was: {0!r}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed to clone repository to {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Successfully switched to branch: {branch_name}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Loaded course {0} {1}
Errors:" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: cms/templates/index.html cms/templates/settings.html +msgid "Course Name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Directory/ID" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Git Commit" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Change" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Editor" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Information about all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Error - cannot get course with ID {0}
{1}
" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "course_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# enrolled" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# staff" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "instructors" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Enrollment information for all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "role" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "full_name" +msgstr "" + +#: lms/djangoapps/dashboard/management/commands/git_add_course.py +msgid "" +"Import the specified git repository and optional branch into the modulestore" +" and optionally specified directory." +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with email address" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with username" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Failed in authenticating" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Unable to clone or pull repository" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Error - cannot get course with ID" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Re-open thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Close thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Title can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Body can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Comment level too deep" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "allowed file types are '%(file_types)s'" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "maximum upload file size is %(file_size)sK" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "" +"Error uploading file. Please contact the site administrator. Thank you." +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Good" +msgstr "" + +#: lms/djangoapps/django_comment_client/forum/views.py +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "All Groups" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "User does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Task is already running." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Username" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Name" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Email" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Language" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Location" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Birth Year" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "Gender" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Level of Education" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +msgid "Mailing Address" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Goals" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Complete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Incomplete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Your grade report is being generated! You can view the status of the " +"generation task in the 'Pending Instructor Tasks' section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"A grade report generation task is already in progress. Check the 'Pending " +"Instructor Tasks' table for the status of the task. When completed, the " +"report will be available for download in the table below." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully changed due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully reset due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Membership" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Student Admin" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Extensions" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Data Download" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/courseware/instructor_dashboard.html +msgid "Analytics" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Course Statistics At A Glance" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found a single student. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find student with that email or username." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Summary Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Raw Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for resetting \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found module. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname: {url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Deleted student module state for {state}!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to delete module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Module state successfully reset!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't reset module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{key}\" for student {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{key}\": {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Progress page for username: {username} with email address: {email}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Assignment Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Please enter an assignment name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Invalid assignment name '{name}'" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "External email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades for assignment \"{name}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Staff" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Instructors" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student profile data for course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found {num} records to dump." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student state for problem {problem}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Beta Testers" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades from {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook defined in course metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook url defined in settings.FEATURES" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No gradebook name defined in course remote_gradebook metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to communicate with gradebook server at {url}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: {err}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Remote gradebook response for {action}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Full name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Roles" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Forum {name}s in course {id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown rolename \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown username \"{username}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" does not have rolename \"{rolename}\", cannot " +"remove" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Removed \"{username}\" from \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: user \"{username}\" already has rolename \"{rolename}\", cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" should first be added as staff before adding as a" +" forum administrator, cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Added \"{username}\" to \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "{title} in course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "ID" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py cms/templates/register.html +#: lms/templates/dashboard.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "Full Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "edX email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Un-enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\", module " +"\"{problem}\" and student \"{student}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\" and module " +"\"{problem}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unable to parse date: " +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Couldn't find module for url: {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor/views/tools.py +msgid "Extended Due Date" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Users with due date extensions for {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unit" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Due date extensions for {0} {1} ({2})" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "rescored" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "reset" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/templates/wiki/plugins/attachments/index.html wiki/models/article.py +msgid "deleted" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "emailed" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks.py +msgid "graded" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#: lms/djangoapps/instructor_task/views.py +msgid "No status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No task_output information found for instructor_task {0}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No message provided" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "Invalid task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No progress status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_input information found for instructor_task {0}: {1}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} and {succeeded} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Progress: {action} {succeeded} of {attempted} so far" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find submission to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any students with submissions to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for any of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem {action} for {succeeded} of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any recipients to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message failed to be {action} for any of {attempted} recipients " +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message successfully {action} for {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Message {action} for {succeeded} of {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Status: {action} {succeeded} of {attempted}" +msgstr "" + +#. Translators: {skipped} is a count. This message is appended to task +#. progress status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (skipping {skipped})" +msgstr "" + +#. Translators: {total} is a count. This message is appended to task progress +#. status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (out of {total})" +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +"\n" +" Dear %(student_name)s,\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +" \n" +" Congratulations on earning your certificate in %(course_name)s!\n" +" Since you have an account on LinkedIn, you can display your hard earned\n" +" credential for your colleagues to see. Click the button below to add the\n" +" certificate to your profile.\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "Add to profile" +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Could not contact the external grading server. Please contact the " +"development team at {email}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Cannot find any open response problems in this course. Have you submitted " +"answers to any open response assessment questions? If not, please do so and " +"return to this page." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "AI Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Peer Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Not yet available" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Automatic Checker" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Instructor Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify course " +"staff." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify your edX" +" point of contact." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "for course {0} and student {1}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View all problems that require peer assessment in this particular course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View ungraded submissions submitted by students for the open ended problems " +"in the course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View open ended problems that you have previously submitted for grading." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "View submissions that have been flagged by students as inappropriate." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +#: lms/djangoapps/open_ended_grading/views.py +msgid "New submissions to grade" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "New grades have been returned" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "Submissions have been flagged for review" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"\n" +" Error with initializing peer grading.\n" +" There has not been a peer grading module created in the courseware that would allow you to grade others.\n" +" Please check back later for this.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Order Payment Confirmation" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Trying to add a different currency into the cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Please visit your dashboard to see your new" +" enrollments." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "[Refund] User-Requested Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Mode {mode} does not exist for {course_id}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Certificate of Achievement, {mode_name} for course {course}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Note - you have up to 2 weeks into the course to unenroll from the Verified " +"Certificate option and receive a full refund. To receive your refund, " +"contact {billing_email}. Please include your order number in your e-mail. " +"Please do NOT include your credit card information." +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order Number" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Customer Name" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Original Transaction" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Amount of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "Service Fees (if any)" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Purchase Time" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order ID" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Status" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +msgid "Quantity" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Unit Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Currency" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: wiki/plugins/attachments/forms.py +msgid "Description" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Comments" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "University" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html +#: cms/templates/widgets/header.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Course" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Announce Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html +msgid "Course Start Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Close Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Period" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Enrolled" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Audit Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Honor Code Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Verified Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue over the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Verified Students Contributing More than the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Dollars Refunded" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Transactions" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Payments Collected" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Successful Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Amount of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You must be logged-in to add to a shopping cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course you requested does not exist." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course {0} is already in your cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "You are already registered in course {0}." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Course added to cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You do not have permission to view this page." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor did not return a required parameter: {0}" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor returned a badly-typed value {0} for param {1}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The payment processor accepted an order whose number is not in our system." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The amount charged by the processor {0} {1} is different than the total cost" +" of the order {2} {3}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor did not accept your payment.\n" +" The decision they returned was {decision},\n" +" and the reason was {reason_code}:{reason_msg}.\n" +" You were not charged. Please try a different form of payment.\n" +" Contact us with payment-related questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a payment confirmation that had inconsistent data!\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" The specific error message is: {msg}.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Due to an error your purchase was charged for a different amount than the order total!\n" +" The specific error message is: {msg}.\n" +" Your credit card has probably been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a corrupted message regarding your charge, so we are\n" +" unable to validate that the message actually came from the payment processor.\n" +" The specific error message is: {msg}.\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Successful transaction." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request is missing one or more required fields." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "One or more fields in the request contains invalid data." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The merchantReferenceCode sent with this authorization request matches the\n" +" merchantReferenceCode of another authorization request that you sent in the last 15 minutes.\n" +" Possible fix: retry the payment after 15 minutes.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Error: General system failure. Possible fix: retry the payment after a few " +"minutes." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received but there was a server timeout.\n" +" This error does not include timeouts between the client and the server.\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but a service did not finish running in time\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The issuing bank has questions about the request. Possible fix: retry with " +"another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Expired card. You might also receive this if the expiration date you\n" +" provided does not match the date the issuing bank has on file.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" General decline of the card. No other information provided by the issuing bank.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Insufficient funds in the account. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Unknown reason" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Issuing bank unavailable. Possible fix: retry again after a few minutes" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Inactive card or card not authorized for card-not-present transactions.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The card has reached the credit limit. Possible fix: retry with another form" +" of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid card verification number. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid account number. Possible fix: retry with another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type is not accepted by the payment processor.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"General decline by the processor. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" There is a problem with our CyberSource merchant configuration. Please let us know at {0}\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The requested amount exceeds the originally authorized amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Processor Failure. Possible fix: retry the payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The authorization has already been captured" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The requested transaction amount must match the previous transaction amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type sent is invalid or does not correlate with the credit card number.\n" +" Possible fix: retry with the same card or another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request ID is invalid." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" You requested a capture through the API, but there is no corresponding, unused authorization record.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The transaction has already been settled or reversed." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The capture or credit is not voidable because the capture or credit information has already been\n" +" submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "You requested a credit for a capture that was previously voided" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but there was a timeout at the payment processor.\n" +" Possible fix: retry the payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource.'\n" +" Possible fix: retry with a different form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Reports" +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "" +"There was an error in your date input. It should be formatted as YYYY-MM-DD" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "No photo ID was provided." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "We couldn't read your name from your photo ID image." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "" +"The name associated with your account and the name on your ID do not match." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "The image of your face was not clear." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "Your face was not visible in your self-photo" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "There was an error verifying your ID photos." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Selected price is not valid number." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "This course doesn't support verified certificates" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "No selected price or selected price is below minimum." +msgstr "" + +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html +msgid "Skip to this view's content" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +#: lms/templates/registration/password_reset_complete.html +msgid "Your Password Reset is Complete" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +msgid "" +"\n" +" Your password has been set. You may go ahead and %(link_start)slog in%(link_end)s now.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Form" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" We're sorry, %(platform_name)s enrollment is not available in your region\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The following errors occurred while processing your registration: " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "You must complete all fields." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The two password fields didn't match." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"We're sorry, our systems seem to be having trouble processing your password " +"reset" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Someone has been made aware of this issue. Please try again shortly. Please %(start_link)scontact us%(end_link)s about any concerns you have.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"Please enter your new password twice so we can verify you typed it in " +"correctly.
Required fields are noted by bold text and an asterisk (*)." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: lms/templates/forgot_password_modal.html lms/templates/login.html +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Required Information" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password Again" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Change My Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your Password Reset Was Unsuccessful" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" The password reset link was invalid, possibly because the link has already been used. Please return to the %(start_link)slogin page%(end_link)s and start the password reset process again.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Help" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: cms/templates/login.html lms/templates/login-sidebar.html +#: lms/templates/register-sidebar.html +msgid "Need Help?" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" View our %(start_link)shelp section for contact information and answers to commonly asked questions%(end_link)s\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"You're receiving this e-mail because you requested a password reset for your" +" user account at edx.org." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet reset your password." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Thanks for using our site!" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "The edX Team" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "Last modified:" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "See all children" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "This article was last modified:" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/create.html.py +msgid "Add new article" +msgstr "" + +#: lms/templates/wiki/create.html +msgid "Create article" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/delete.html +#: lms/templates/wiki/delete.html.py +msgid "Go back" +msgstr "" + +#: lms/templates/wiki/delete.html lms/templates/wiki/delete.html.py +#: lms/templates/wiki/edit.html +msgid "Delete article" +msgstr "" + +#: lms/templates/wiki/delete.html +#: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Delete" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You cannot delete a root article." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You cannot delete this article because you do not have permission to delete " +"articles with children. Try to remove the children manually one-by-one." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You are deleting an article. This means that its children will be deleted as" +" well. If you choose to purge, children will also be purged!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "Articles that will be deleted" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "...and more!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You are deleting an article. Please confirm." +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/wiki/includes/article_menu.html +msgid "Edit" +msgstr "" + +#: lms/templates/wiki/edit.html lms/templates/wiki/edit.html.py +msgid "Save changes" +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/unit.html +msgid "Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this is a control to allow users to exit out of this modal +#. interface (a menu or piece of UI that takes the full focus of the screen) +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/modal/_modal-settings-language.html +#: lms/templates/modal/accessible_confirm.html +msgid "Close" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Wiki Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html +#: lms/templates/modal/_modal-settings-language.html +msgid "window open" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Back to editor" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "History" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"Click each revision to see a list of edited lines. Click the Preview button " +"to see how the article looked at this stage. At the bottom of this page, you" +" can change to a particular revision or merge an old revision with the " +"current one." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "(no log message)" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Preview this revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Auto log:" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Change" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Merge selected with current..." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Switch to selected version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Wiki Revision Preview" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Back to history view" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Switch to this version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge Revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge with current" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"When you merge a revision with the current, all data will be retained from " +"both versions and merged at its approximate location from each revision." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "After this, it's important to do a manual review." +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Create new merged version" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing revision:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing a merge between two revisions:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "This revision has been deleted." +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Restoring to this revision will mark the article as deleted." +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "" +"\n" +" You need to log in or sign up to use this function.\n" +" " +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in or sign up to use this function." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Cheatsheet" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Syntax Help" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"This wiki uses Markdown for styling. There are several " +"useful guides online. See any of the links below for in-depth details:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Markdown: Basics" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quick Markdown Syntax Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Miniature Markdown Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"To create a new wiki article, create a link to it. Clicking the link gives " +"you the creation page." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "[Article Name](wiki:ArticleName)" +msgstr "" + +#. Translators: Do not translate "edX" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Additions:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Math Expression" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Useful examples:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wikipedia" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Wiki" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Huge Header" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Smaller Header" +msgstr "" + +#. Translators: Leave the punctuation, but translate "emphasis" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "*emphasis* or _emphasis_" +msgstr "" + +#. Translators: Leave the punctuation, but translate "strong" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "**strong** or __strong__" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Unordered List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 1" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 2" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Ordered" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quotes" +msgstr "" + +#: lms/templates/wiki/includes/editor_widget.html +msgid "" +"\n" +" Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for help.\n" +" " +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/wiki_plugin.py +msgid "Attachments" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload new file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search and add file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload File" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search files and articles" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"You can reuse files from other articles. These files are subject to updates " +"on other articles which may or may not be a good thing." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"The following files are available for this article. Copy the markdown tag to" +" directly refer to a file from the article text." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Markdown tag" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Uploaded by" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Size" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File History" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Detach" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Replace" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Restore" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "anonymous (IP logged)" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File history" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "revisions" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "There are no attachments for this article." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Invalid course update id." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Course update not found." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " +"configure a different path with GIT_REPO_EXPORT_DIR" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Non writable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"If using http urls, you must provide the username and password in the url. " +"Similar to https://user:pass@github.com/user/course." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to determine branch, repo in detached HEAD mode" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to update or clone git repository." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to export course to xml." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to configure git username and password" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to commit changes. This is usually because there are no changes to be" +" committed" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to push changes. This is usually because the remote repository " +"cannot be contacted" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Bad course location provided" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Missing branch on fresh clone" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command was: {0!r}. Working directory was: {1!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command output was: {0!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Directory already exists, doing a git reset and pull instead of git clone." +msgstr "" + +#: cms/djangoapps/contentstore/utils.py lms/templates/notes.html +msgid "My Notes" +msgstr "" + +#: cms/djangoapps/contentstore/management/commands/git_export.py +msgid "" +"Take the specified course and attempt to export it to a git repository\n" +". Course directory must already be a git repository. Usage: git_export " +msgstr "" + +#: cms/djangoapps/contentstore/views/assets.py +msgid "Upload completed" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Special characters not allowed in organization, course number, and course " +"run." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Unable to create course '{name}'.\n" +"\n" +"{err}" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization, course number," +" and course run. Please change either organization or course number to be " +"unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Please change either the organization or course number so that it is unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization and course " +"number. Please change at least one field to be unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/export_git.py +msgid "Course successfully exported to git repository" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "We only support uploading a .tar.gz file." +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "File upload corrupted. Please try again" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "Could not find the course.xml file in the package." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of {0}" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of '{0}'" +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Incoming video data is empty." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Can't find item by locator." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Transcripts are supported only for \"video\" modules." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Insufficient permissions" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Could not find user by email address '{email}'." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "User {email} has registered but has not yet activated his/her account." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "`role` is required" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Only instructors may create other instructors" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "You may not remove the last instructor from a course" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "unrequested" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "pending" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "granted" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "denied" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Studio user" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "The date when state was last updated" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Current course creator state" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "" +"Optional notes about this user (for example, why course creation access was " +"denied)" +msgstr "" + +#: cms/templates/404.html cms/templates/error.html +#: lms/templates/static_templates/404.html +msgid "Page Not Found" +msgstr "" + +#: cms/templates/404.html lms/templates/static_templates/404.html +msgid "Page not found" +msgstr "" + +#: cms/templates/asset_index.html lms/templates/courseware/courseware.html +#: lms/templates/verify_student/_modal_editname.html +msgid "close" +msgstr "" + +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." +msgstr "" + +#. Translators: this is a verb describing the action of viewing more details +#: cms/templates/container_xblock_component.html +#: lms/templates/wiki/includes/article_menu.html +msgid "View" +msgstr "" + +#: cms/templates/html_error.html lms/templates/module-error.html +msgid "Error:" +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +#: lms/templates/courseware/course_about.html +msgid "Course Number" +msgstr "" + +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Organization:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Number:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Pending" +msgstr "" + +#: cms/templates/login.html lms/templates/login.html +#: lms/templates/university_profile/edge.html +msgid "Forgot password?" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/login.html lms/templates/provider_login.html +#: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Password" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + +#: cms/templates/manage_users.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Admin" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + +#: cms/templates/register.html cms/templates/widgets/header.html +#: lms/templates/index.html +msgid "Sign Up" +msgstr "" + +#: cms/templates/register.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "Public Username" +msgstr "" + +#: cms/templates/register.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "Preferred Language" +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Thanks for activating your account." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "This account has already been activated." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Visit your {link_start}dashboard{link_end} to see your courses." +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html +#: lms/templates/static_templates/tos.html +msgid "Terms of Service" +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/footer.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/privacy.html +msgid "Privacy Policy" +msgstr "" + +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py +msgid "Help" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Register for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sorry, there was an error when trying to register you" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your track:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Certificate of Achievement (ID Verified)" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your contribution for this course (min. $" +msgstr "" + +#: common/templates/course_modes/choose.html +#: lms/templates/verify_student/photo_verification.html +msgid "):" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay? What if I don't meet all the requirements?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"As a not-for-profit, edX uses your contribution to support our mission to " +"provide quality education to everyone around the world, and to improve " +"learning through research. While we have established a minimum fee, we ask " +"that you contribute as much as you can." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"I'd like to pay more than the minimum. Is my contribution tax deductible?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please check with your tax advisor to determine whether your contribution is" +" tax deductible." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What if I can't afford it or don't have the necessary equipment?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"If you can't afford the minimum fee or don't meet the requirements, you can " +"audit the course or elect to pursue an honor code certificate at no cost. If" +" you would like to pursue the honor code certificate, please check the honor" +" code certificate box, tell us why you can't pursue the verified certificate" +" below, and then click the 'Select Certificate' button to complete your " +"registration." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Honor Code Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Explain your situation: " +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please write a few sentences about why you'd like to opt out of the paid " +"verified certificate to pursue the honor code certificate:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Verified Registration Requirements" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To upgrade your registration and work towards a Verified Certificate of " +"Achievement, you will need a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To register for a Verified Certificate of Achievement option, you will need " +"a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What is an ID Verified Certificate?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"An ID Verified Certificate requires proof of your identity through your " +"photo and ID and is checked throughout the course to verify that it is you " +"who earned the passing grade." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "or" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Audit This Course" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up to audit this course for free and track your own progress." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Audit" +msgstr "" + +#: lms/templates/admin_dashboard.html +msgid "{platform_name}-wide Summary" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/open_ended_problems/combined_notifications.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Instructions" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "Collapse Instructions" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Guided Discussion" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Hide Annotations" +msgstr "" + +#: lms/templates/contact.html lms/templates/static_templates/about.html +#: lms/templates/static_templates/about.html +msgid "Vision" +msgstr "" + +#: lms/templates/contact.html +msgid "Faq" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +msgid "Press" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/contact.html +msgid "Contact" +msgstr "" + +#: lms/templates/contact.html +msgid "Class Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"We are always seeking feedback to improve our courses. If you are an " +"enrolled student and have any questions, feedback, suggestions, or any other" +" issues specific to a particular class, please post on the discussion forums" +" of that class." +msgstr "" + +#: lms/templates/contact.html +msgid "General Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." +msgstr "" + +#: lms/templates/contact.html +msgid "Technical Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have suggestions/feedback about the overall {platform_name} platform," +" or are facing general technical issues with the platform (e.g., issues with" +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Media" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"Please visit our {link_start}media/press page{link_end} for more " +"information. For any media or press inquiries, please email {email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Universities" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you are a university wishing to collaborate with or if you have questions" +" about {platform_name}, please email {email}." +msgstr "" + +#: lms/templates/course.html +msgid "New" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Dashboard" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/courseware/course_about.html +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "An error occurred. Please try again later." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please verify your new email" +msgstr "" + +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "edit" +msgstr "" + +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Reset Password" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Current Courses" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't registered for any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Find courses now!" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't been enrolled in any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Course-loading errors" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Email Settings for {course_number}" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Receive course emails" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Save Settings" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Password Reset Email Sent" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"An email has been sent to {email}. Follow the link in the email to change " +"your password." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Change Email" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please enter your new email address:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please confirm your password:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"We will send a confirmation to both {email} and your new email as part of " +"the process." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change your name" +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"To uphold the credibility of your {platform} {cert_name_short}, all name " +"changes will be logged and recorded." +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"Enter your desired full name, as it will appear on your {platform} " +"{cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/verify_student/_modal_editname.html +msgid "Reason for name change:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change My Name" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +" {course_number}? " +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Unregister" +msgstr "" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +msgid "E-mail change failed" +msgstr "" + +#: lms/templates/email_change_failed.html +msgid "We were unable to send a confirmation email to {email}" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +#: lms/templates/invalid_email_key.html +msgid "Go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "E-mail change successful!" +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "You should see your new email in your {link_start}dashboard{link_end}." +msgstr "" + +#: lms/templates/email_exists.html +msgid "An account with the new e-mail address already exists." +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Student Enrollment Form" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Course: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Add new students" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Existing students:" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "New students added: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Students rejected: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Debug: " +msgstr "" + +#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +msgid "External Authentication failed" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Due:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Status:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have successfully gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have not yet gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Completed puzzles" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Level" +msgstr "" + +#: lms/templates/folditbasic.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Submitted" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Puzzle Leaderboard" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "User" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Score" +msgstr "" + +#: lms/templates/footer.html +msgid "About" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/jobs.html +msgid "Jobs" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/faq.html +#: lms/templates/static_templates/faq.html +msgid "FAQ" +msgstr "" + +#: lms/templates/footer.html +msgid "{platform_name} Logo" +msgstr "" + +#: lms/templates/footer.html +msgid "" +"{platform_name} is a non-profit created by founding partners {Harvard} and " +"{MIT} whose mission is to bring the best of higher education to students of " +"all ages anywhere in the world, wherever there is Internet access. " +"{platform_name}'s free online MOOCs are interactive and subjects include " +"computer science, public health, and artificial intelligence." +msgstr "" + +#: lms/templates/footer.html +msgid "© 2014 {platform_name}, some rights reserved." +msgstr "" + +#: lms/templates/footer.html +msgid "Terms of Service and Honor Code" +msgstr "" + +#: lms/templates/forgot_password_modal.html +#: lms/templates/forgot_password_modal.html +msgid "Password Reset" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "" +"Please enter your e-mail address below, and we will e-mail instructions for " +"setting a new password." +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Your E-mail Address" +msgstr "" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +msgid "This is the e-mail address you used to register with {platform}" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Reset My Password" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Email is incorrect." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +msgid "{platform_name} Help" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"For questions on course lectures, homework, tools, or materials for " +"this course, post in the {link_start}course discussion " +"forum{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have general questions about {platform_name}? You can find " +"lots of helpful information in the {platform_name} " +"{link_start}FAQ{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have a question about something specific? You can contact " +"the {platform_name} general support team directly:" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Please note: The {platform_name} support team is English speaking. While we " +"will do our best to address your inquiry in any language, our responses will" +" be in English." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/login.html +#: lms/templates/provider_login.html lms/templates/provider_login.html +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "E-mail" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Briefly describe your issue" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Tell us the details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +#: lms/templates/instructor/staff_grading.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Submit" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Thank You!" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Thank you for your inquiry or feedback. We typically respond to a request " +"within one business day (Monday to Friday, {open_time} UTC to {close_time} " +"UTC.) In the meantime, please review our {link_start}detailed FAQs{link_end}" +" where most questions have already been answered." +msgstr "" + +#: lms/templates/help_modal.html +msgid "problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a Problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of the problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Details of the problem you are encountering" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc." +msgstr "" + +#: lms/templates/help_modal.html +msgid "suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a Suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of your suggestion" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/module-error.html +msgid "Details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a Question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief summary of your question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "An error has occurred." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please {link_start}send us e-mail{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please try again later." +msgstr "" + +#: lms/templates/index.html +msgid "Free courses from {university_name}" +msgstr "" + +#: lms/templates/index.html +msgid "The Future of Online Education" +msgstr "" + +#: lms/templates/index.html +msgid "For anyone, anywhere, anytime" +msgstr "" + +#: lms/templates/index.html +msgid "Stay up to date with all {platform_name} has to offer!" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Invalid email change key" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "This e-mail key is not valid. Please check:" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "" +"Was this key already used? Check whether the e-mail change has already " +"happened." +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Did your e-mail client break the URL into two lines?" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "The keys are valid for a limited amount of time. Has the key expired?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Helpful Information" +msgstr "" + +#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +msgid "Login via OpenID" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "" +"You can now start learning with {platform_name} by logging in with your OpenID account." +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Not Enrolled?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Sign up for {platform_name} today!" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Looking for help in logging in or with your {platform_name} account?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "View our help section for answers to commonly asked questions." +msgstr "" + +#: lms/templates/login.html +msgid "Log into your {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Log into My {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Access My Courses" +msgstr "" + +#: lms/templates/login.html lms/templates/register.html +msgid "Processing your account information…" +msgstr "" + +#: lms/templates/login.html +msgid "Please log in" +msgstr "" + +#: lms/templates/login.html +msgid "to access your account and courses" +msgstr "" + +#: lms/templates/login.html +msgid "We're Sorry, {platform_name} accounts are unavailable currently" +msgstr "" + +#: lms/templates/login.html +msgid "The following errors occurred while logging you in:" +msgstr "" + +#: lms/templates/login.html +msgid "Your email or password is incorrect" +msgstr "" + +#: lms/templates/login.html +msgid "" +"Please provide the following information to log into your {platform_name} " +"account. Required fields are noted by bold text " +"and an asterisk (*)." +msgstr "" + +#: lms/templates/login.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +msgid "example: username@domain.com" +msgstr "" + +#: lms/templates/login.html +msgid "Account Preferences" +msgstr "" + +#: lms/templates/login.html +msgid "Remember me" +msgstr "" + +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS +#: lms/templates/lti.html +msgid "External resource" +msgstr "" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + +#: lms/templates/lti.html +msgid "View resource in a new window" +msgstr "" + +#: lms/templates/lti.html +msgid "" +"Please provide launch_url. Click \"Edit\", and fill in the required fields." +msgstr "" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable or Reenable student accounts" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Username:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Reenable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Students whose accounts have been disabled" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "(reload your page to refresh)" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "working..." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"This page features MathJax technology to render mathematical formulae. To " +"make math accessibile, we suggest using the MathPlayer plugin. Please visit " +"the {link_start}MathPlayer Download Page{link_end} to download the plugin " +"for your browser." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"Your browser does not support the MathPlayer plugin. To use MathPlayer, " +"please use Internet Explorer 6 through 9." +msgstr "" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" +msgstr "" + +#: lms/templates/module-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/module-error.html +msgid "Raw data:" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Accepted" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Error" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Rejected" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Pending name changes" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/modal/accessible_confirm.html +msgid "Confirm" +msgstr "" + +#: lms/templates/name_changes.html +msgid "[Reject]" +msgstr "" + +#: lms/templates/navigation.html +msgid "Global Navigation" +msgstr "" + +#: lms/templates/navigation.html +msgid "Find Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Dashboard for:" +msgstr "" + +#: lms/templates/navigation.html +msgid "More options dropdown" +msgstr "" + +#: lms/templates/navigation.html +msgid "Log Out" +msgstr "" + +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + +#: lms/templates/navigation.html +msgid "How it Works" +msgstr "" + +#: lms/templates/navigation.html lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/courseware/courses.html +msgid "Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Schools" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Register Now" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Log in" +msgstr "" + +#: lms/templates/navigation.html +msgid "" +"Warning: Your browser is not fully supported. We strongly " +"recommend using {chrome_link_start}Chrome{chrome_link_end} or " +"{ff_link_start}Firefox{ff_link_end}." +msgstr "" + +#: lms/templates/notes.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "You do not have any notes." +msgstr "" + +#: lms/templates/problem.html +msgid "Reset" +msgstr "" + +#: lms/templates/problem.html +msgid "Show Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "Reveal Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "You have used {num_used} of {num_total} submissions" +msgstr "" + +#: lms/templates/provider_login.html +#: lms/templates/university_profile/edge.html +msgid "Log In" +msgstr "" + +#: lms/templates/provider_login.html +msgid "" +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." +msgstr "" + +#: lms/templates/provider_login.html +msgid "Return To %s" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Preferences for {platform_name}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update my {platform_name} Account" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Processing your account information …" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Welcome {username}! Please set your preferences below" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"We're sorry, {platform_name} enrollment is not available in your region" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "The following errors occurred while processing your registration:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"Required fields are noted by bold text and an " +"asterisk (*)." +msgstr "" + +#: lms/templates/register-shib.html lms/templates/signup_modal.html +msgid "Enter a public username:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "example: JaneDoe" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "Will be shown in any discussions or forums you participate in" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Account Acknowledgements" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Terms of Service{link_end}" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Honor Code{link_end}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update My Account" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Registration Help" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Already registered?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Click here to log in." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Registering with {platform_name} gives you access to all of our current and " +"future free courses. Not ready to take a course just yet? Registering puts " +"you on our mailing list - we will update you as courses are added." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Next Steps" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"You will receive an activation email. You must click on the activation link" +" to complete the process. Don't see the email? Check your spam folder and " +"mark emails from class.stanford.edu as 'not spam', since you'll want to be " +"able to receive email from your courses." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"As part of joining {platform_name}, you will receive an activation email. " +"You must click on the activation link to complete the process. Don't see " +"the email? Check your spam folder and mark {platform_name} emails as 'not " +"spam'. At {platform_name}, we communicate mostly through email." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Need help in registering with {platform_name}?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "View our FAQs for answers to commonly asked questions." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Once registered, most questions can be answered in the course specific " +"discussion forums or through the FAQs." +msgstr "" + +#: lms/templates/register.html +msgid "Register for {platform_name}" +msgstr "" + +#: lms/templates/register.html +msgid "Create My {platform_name} Account" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome!" +msgstr "" + +#: lms/templates/register.html +msgid "Register below to create your {platform_name} account" +msgstr "" + +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + +#: lms/templates/register.html +msgid "Please complete the following fields to register for an account. " +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "cannot be changed later" +msgstr "" + +#: lms/templates/register.html lms/templates/verify_student/face_upload.html +msgid "example: Jane Doe" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Needed for any certificates you may earn" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome {username}" +msgstr "" + +#: lms/templates/register.html +msgid "Enter a Public Display Name:" +msgstr "" + +#: lms/templates/register.html +msgid "Public Display Name" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Extra Personal Information" +msgstr "" + +#: lms/templates/register.html +msgid "City" +msgstr "" + +#: lms/templates/register.html +msgid "example: New York" +msgstr "" + +#: lms/templates/register.html +msgid "Country" +msgstr "" + +#: lms/templates/register.html +msgid "Highest Level of Education Completed" +msgstr "" + +#: lms/templates/register.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Year of Birth" +msgstr "" + +#: lms/templates/register.html +msgid "Please share with us your reasons for registering with {platform_name}" +msgstr "" + +#: lms/templates/register.html lms/templates/university_profile/edge.html +msgid "Register" +msgstr "" + +#: lms/templates/register.html lms/templates/signup_modal.html +msgid "Create My Account" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "Re-subscribe Successful!" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "" +"You have re-enabled forum notification emails from {platform_name}. Click " +"{dashboard_link_start}here{link_end} to return to your dashboard. " +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Previous" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +msgid "Section Navigation" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Next" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Sign Up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname@domain.com" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname (shown on forums)" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. Your Name (for certificates)" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Welcome {name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Ed. Completed" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Year of birth" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Mailing address" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Goals in signing up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Already have an account?" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Login." +msgstr "" + +#. Translators: The 'Group' here refers to the group of users that has been +#. sorted into group_id +#: lms/templates/split_test_staff_view.html +msgid "Group {group_id}" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug Info" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission history" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "{platform_name} Content Quality Assessment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Optional tag (eg \"done\" or \"broken\"):" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Add comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug" +msgstr "" + +#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +msgid "Module Fields" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "XML attributes" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission History Viewer" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "User:" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "View History" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "{course_number} Textbook" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "Textbook Navigation" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Previous page" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Next page" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Sysadmin Dashboard" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Users" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Staffing and Enrollment" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Logs" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "User Management" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Email or username" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Create user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download list of all users (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Check and repair external authentication map" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "" +"Go to each individual course's Instructor dashboard to manage course " +"enrollment." +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Manage course staff and instructors" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download staff and instructor list (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Administer Courses" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Location" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware and branch is a specific version within that repository +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Branch (optional)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Load new course from github" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Course ID or dir" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete course from site" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Django PID" +msgstr "" + +#. Translators: A version number appears after this string +#: lms/templates/sysadmin_dashboard.html +msgid "Platform Version" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Date" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Course ID" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Action" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Recent git load activity for" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "git action" +msgstr "" + +#: lms/templates/textannotation.html +msgid "Source:" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "Tracking Log" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "datetime" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "ipaddr" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "source" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "type" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "Unsubscribe Successful!" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "" +"You will no longer receive forum notification emails from {platform_name}. " +"Click {dashboard_link_start}here{link_end} to return to your dashboard. If " +"you did not mean to do this, click {undo_link_start}here{link_end} to re-" +"subscribe." +msgstr "" + +#: lms/templates/using.html +msgid "Using the system" +msgstr "" + +#: lms/templates/using.html +msgid "" +"During video playback, use the subtitles and the scroll bar to navigate. " +"Clicking the subtitles is a fast way to skip forwards and backwards by small" +" amounts." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you are on a low-resolution display, the left navigation bar can be " +"hidden by clicking on the set of three left arrows next to it." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you need bigger or smaller fonts, use your browsers settings to scale " +"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" +" ctrl-minus at the same time." +msgstr "" + +#: lms/templates/video.html +msgid "Skip to a navigable version of this video's transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Loading video player" +msgstr "" + +#: lms/templates/video.html +msgid "Play video" +msgstr "" + +#: lms/templates/video.html +msgid "Video position" +msgstr "" + +#: lms/templates/video.html +msgid "Play" +msgstr "" + +#: lms/templates/video.html +msgid "Speeds" +msgstr "" + +#: lms/templates/video.html +msgid "Speed" +msgstr "" + +#: lms/templates/video.html +msgid "Volume" +msgstr "" + +#: lms/templates/video.html +msgid "Fill browser" +msgstr "" + +#: lms/templates/video.html +msgid "HD off" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Turn off captions" +msgstr "" + +#: lms/templates/video.html +msgid "Skip to end of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "" +"Activating an item in this group will spool the video to the corresponding " +"time point. To skip transcript, go to previous item." +msgstr "" + +#: lms/templates/video.html +msgid "Go back to start of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Download video" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Download transcript" +msgstr "" + +#: lms/templates/video.html +msgid "Download Handout" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Your words:" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Total number of words:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Open Response" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Assessments:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Hide Question" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "New Submission" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Next Step" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "" +"Staff Warning: Please note that if you submit a duplicate of text that has " +"already been submitted for grading, it will not show up in the staff grading" +" view. It will be given the same grade that the original received " +"automatically, and will be returned within 30 minutes if the original is " +"already graded, or when the original is graded if not." +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_legend.html +msgid "Legend" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Submitted Rubric" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Toggle Full Rubric" +msgstr "" + +#. Translators: an example of what this string will look +#. like is: "Scored rubric from grader 1", where +#. "Scored rubric" replaces {result_of_task} and +#. "1" replaces {number}. +#. This string appears when a user is viewing one of +#. their graded rubrics for an openended response problem. +#. the number distinguishes between the different +#. graded rubrics the user might have received +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "{result_of_task} from grader {number}" +msgstr "" + +#. Translators: "See full feedback" is the text of +#. a link that allows a user to see more detailed +#. feedback from a self, peer, or instructor +#. graded openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +msgid "See full feedback" +msgstr "" + +#. Translators: this text forms a link that, when +#. clicked, allows a user to respond to the feedback +#. the user received on his or her openended problem +#. Translators: when "Respond to Feedback" is clicked, a survey +#. appears on which a user can respond to the feedback the user +#. received on an openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Respond to Feedback" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "How accurate do you find this feedback?" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "No Opinion" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Additional comments:" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Submit Feedback" +msgstr "" + +#. Translators: "Response" labels an area that contains the user's +#. Response to an openended problem. It is a noun. +#. Translators: "Response" labels a text area into which a user enters +#. his or her response to a prompt from an openended problem. +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Response" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Unanswered" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Skip Post-Assessment" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_combined_rubric.html +msgid "{num} point: {explanatory_text}" +msgid_plural "{num} points: {explanatory_text}" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/combinedopenended/openended/open_ended_error.html +msgid "There was an error with your submission. Please contact course staff." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "Rubric" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "" +"Select the criteria you feel best represents this submission in each " +"category." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "{num} point: {text}" +msgid_plural "{num} points: {text}" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/combinedopenended/selfassessment/self_assessment_hint.html +msgid "Please enter a hint below:" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohort groups" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Show cohorts" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohorts in the course" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add users by username or email. One per line or comma-separated." +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort members" +msgstr "" + +#: lms/templates/courseware/accordion.html +msgid "{chapter}, current chapter" +msgstr "" + +#: lms/templates/courseware/accordion.html +#: lms/templates/courseware/progress.html +msgid "due {date}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"The currently logged-in user account does not have permission to enroll in " +"this course. You may need to {start_logout_tag}log out{end_tag} then try the" +" register button again. Please visit the {start_help_tag}help page{end_tag} " +"for a possible solution." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "About {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "You are registered for this course" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View Courseware" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "This course is in your cart." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"Add {course.display_number_with_default} to Cart ({currency_symbol}{cost})" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Register for {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Overview" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Share with friends and family!" +msgstr "" + +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes Start" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes End" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Estimated Effort" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Prerequisites" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Additional Resources" +msgstr "" + +#. Translators: 'needs attention' is an alternative string for the +#. notification image that indicates the tab "needs attention". +#: lms/templates/courseware/course_navigation.html +msgid "needs attention" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/course_navigation.html +msgid "Staff view" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +msgid "Student view" +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from leading universities." +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from {university_name}." +msgstr "" + +#: lms/templates/courseware/courseware-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "{course_number} Courseware" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Return to Exam" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Course Navigation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Open Calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Input Field" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "" +"Use the arrow keys to navigate the tips or use the tab key to return to the " +"calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Hints" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Integers" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Decimals" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Scientific notation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Appending SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Supported SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Operators" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "parallel resistors function" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Functions" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Constants" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Euler's number" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "ratio of a circle's circumference to it's diameter" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Boltzmann constant" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "speed of light" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "freezing point of water in degrees Kelvin" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "fundamental charge" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculate" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Output Field" +msgstr "" + +#: lms/templates/courseware/error-message.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {link_to_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/grade_summary.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade summary" +msgstr "" + +#: lms/templates/courseware/grade_summary.html +msgid "Not implemented yet" +msgstr "" + +#: lms/templates/courseware/gradebook.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "Search students" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "{course_number} Course Info" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + +#: lms/templates/courseware/info.html lms/templates/courseware/info.html +msgid "Course Updates & News" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Handout Navigation" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Course Handouts" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Instructor Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Try New Beta Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Psychometrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Forum Admin" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "DataDump" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Manage Groups" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Metrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade Downloads" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Note: some of these buttons are known to time out for larger courses. We " +"have temporarily disabled those features for courses with more than " +"{max_enrollment} students. We are urgently working on fixing this issue. " +"Thank you for your patience as we continue working to improve the platform!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Export grades to remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"The assignments defined for this course should match the ones stored in the " +"gradebook, for this to work properly!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Assignment name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Course-specific grade adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Specify a particular problem in the course here by its url:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is " +"i4x://university/course/problem/problemname, then just provide the " +"problemname. If the location is " +"i4x://university/course/notaproblem/someothername, then provide " +"notaproblem/someothername.)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Then select an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"These actions run in the background, and status for active tasks will appear" +" in a table below. To see status for all tasks submitted for this problem, " +"click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student-specific grade inspection and adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Specify the {platform_name} email address or username of a student here:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Click this, and a link to student's progress page will appear below:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may also delete the entire state of a student for the specified module:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" a table below. To see status for all tasks submitted for this problem and " +"student, click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Select a problem and an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"User requires forum administrator privileges to perform administration " +"tasks. See instructor." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Explanation of Roles:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Moderators: can edit or delete any post, remove misuse flags, close " +"and re-open threads, endorse responses, and see posts from all cohorts (if " +"the course is cohorted). Moderators' posts are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Admins: have moderator privileges, as well as the ability to edit the " +"list of forum moderators (e.g. to appoint a new moderator). Admins' posts " +"are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Community TAs: have forum moderator privileges, and their posts are labelled" +" 'Community TA'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment Data" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Pull enrollment from remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Section:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enroll or un-enroll one or many students: enter emails, separated by new " +"lines or commas;" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Notify students by email" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Auto-enroll students when they activate" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Problem urlname:" +msgstr "" + +#. Translators: days_early_for_beta should not be translated +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enter usernames or emails for students who should be beta-testers, one per " +"line, or separated by commas. They will get to see course materials early, " +"as configured via the days_early_for_beta option in the course " +"policy." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send to:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Myself" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Staff and instructors" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "All (students, staff and instructors)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Subject: " +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Max 128 characters)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Please try not to email students more than once per week. Important things " +"to consider before sending:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you read over the email to make sure it says everything you want to " +"say?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you sent the email to yourself first to make sure you're happy with how" +" it's displayed, and that embedded links and images work properly?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "CAUTION!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Once the 'Send Email' button is clicked, your email will be queued for " +"sending." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "A queued email CANNOT be cancelled." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "No Analytics are available at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Students enrolled (historical count, includes those who have since " +"unenrolled):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students active in the last week:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student activity day by day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Score distribution for problems" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Max" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Points Earned (Num Students)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There is no data available to display at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"Loading the latest graphs for you; depending on your class size, this may " +"take a few minutes." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Count of Students that Opened a Subsection" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution per Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There are no problems in this section." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students answering correctly" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Number of students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Student distribution per country, all courses, Sep-12 to Oct-17, 1 server " +"(shown here as an example):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Pending Instructor Tasks" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Type" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task inputs" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Id" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Requester" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task State" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Duration (sec)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Progress" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "unknown" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Course errors" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "About {course_id}" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "Coming Soon" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "About {course_number}" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Access Courseware" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "You Are Registered" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Register for" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Registration Is Closed" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "News - MITx 6.002x" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "Updates to Discussion Posts You Follow" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{course_number} Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress for Student '{username}' ({email})" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{earned:.3n} of {total:.3n} possible points" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Problem Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Practice Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "No problem scores in this section" +msgstr "" + +#: lms/templates/courseware/syllabus.html +msgid "{course.display_number_with_default} Course Info" +msgstr "" + +#: lms/templates/courseware/welcome-back.html +msgid "" +"You were most recently in {section_link}. If you're done with that, choose " +"another section on the left." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Final course details are being wrapped up at this time. Your final standing " +"will be available shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final grade:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required for a {cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your verified {cert_name_long} is being held pending confirmation that the " +"issuance of your {cert_name_short} is in compliance with strict U.S. " +"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " +"mistakenly identified you as being connected with one of those countries, " +"please let us know by contacting {email}. If you would like a refund on your" +" {cert_name_long}, please contact our billing address {billing_email}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your {cert_name_long} is being held pending confirmation that the issuance " +"of your {cert_name_short} is in compliance with strict U.S. embargoes on " +"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " +"identified you as being connected with one of those countries, please let us" +" know by contacting {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your {cert_name_short} is Generating" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open/download a PDF document" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"This link will open/download a PDF document of your verified " +"{cert_name_long}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your ID Verified {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Complete our course feedback survey" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Cover Image" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Enrolled as: " +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +msgid "ID Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Completed - {end_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Started - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course has not yet started" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Starts - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Document your accomplishment!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Challenge Yourself!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Take this course as an ID-verified student." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can still sign up for an ID verified {cert_name_long} for this course. " +"If you plan to complete the whole course, it is a great way to recognize " +"your achievement. {link_start}Learn more about the verified " +"{cert_name_long}{link_end}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Upgrade to Verified Track" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Archived Course" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Course" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Are you sure you want to unregister from" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Are you sure you want to unregister from the verified {cert_name_long} track" +" of" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Email Settings" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "You need to re-verify to continue" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in the following courses, you need to " +"re-verify your identity:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "{course_name}: Re-verify by {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Notification Actions" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course_name}, you need to re-verify" +" your identity by {date}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Your re-verification failed" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"Your re-verification for {course_name} failed and you are no longer eligible" +" for a Verified Certificate. If you think this is in error, please contact " +"us at {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Dismiss" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verification now open for:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verify now:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Pending:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Denied:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Approved:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "ID-Verification Status" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Reviewed and Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Your verification status is good for one year after submission." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification photos have been submitted and will be reviewed shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Re-verify Yourself" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"If you fail to pass a verification attempt before your course ends, you will" +" not receive a verified certificate." +msgstr "" + +#: lms/templates/debug/run_python_form.html +msgid "Results:" +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "" +"Sorry! We can't find anything matching your search. Please try another " +"search." +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "There are no posts here yet. Be the first one to post!" +msgstr "" + +#: lms/templates/discussion/_discussion_course_navigation.html +#: lms/templates/discussion/_discussion_module.html +msgid "New Post" +msgstr "" + +#: lms/templates/discussion/_discussion_module.html +msgid "Show Discussion" +msgstr "" + +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Filter Topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "filter topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Show All Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Show Flagged Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Posts I'm Following" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "follow this post" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously to classmates" +msgstr "" + +#. Translators: This labels the selector for which group of students can view +#. a +#. post +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Make visible to:" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +msgid "My Cohort" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "new post title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: wiki/forms.py wiki/forms.py wiki/forms.py +msgid "Title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Enter your question or comment…" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Add post" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Create new post about:" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter List" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter discussion areas" +msgstr "" + +#: lms/templates/discussion/_recent_active_posts.html +msgid "Following" +msgstr "" + +#: lms/templates/discussion/_search_bar.html +msgid "Search posts" +msgstr "" + +#: lms/templates/discussion/_similar_posts.html +msgid "Hide" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Home" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Topics" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion topics; current selection is: " +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Search all discussions" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Sort by:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "date" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "votes" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "comments" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Show:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View All" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View as {name}" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Add A Response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Post a response:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "anonymous" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "• This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "follow" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow this post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Pin Thread" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Pinned" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "(this post is about %(courseware_title_linked)s)" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Edit post title" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment..." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "endorse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Delete Comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "-posted %(time_ago)s by" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"%(comments_count)s %(span_sr_open)scomments (%(unread_comments_count)s " +"unread comments)%(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(comments_count)s %(span_sr_open)scomments %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(votes_up_count)s%(span_sr_open)s votes %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "DISCUSSION HOME:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "HOW TO USE EDX DISCUSSIONS" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Find discussions" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Focus in on specific topics" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Search for specific posts " +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Sort by date, vote, or comments" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Engage with posts" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Upvote posts and good responses" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Forum Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow posts for updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Receive updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Toggle Notifications Setting" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"Check this box to receive an email digest once a day notifying you about " +"new, unread activity from posts you are following." +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid ", " +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s discussion started" +msgid_plural "%s discussions started" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/discussion/index.html +#: lms/templates/discussion/user_profile.html +msgid "Discussion - {course_number}" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "We're sorry" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "" +"The forums are currently undergoing maintenance. We'll have them back up " +"shortly!" +msgstr "" + +#: lms/templates/discussion/user_profile.html +msgid "User Profile" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Collapse discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "This thread has been pinned by course staff." +msgstr "" + +#: lms/templates/discussion/mustache/_pagination.mustache +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "…" +msgstr "" + +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + +#: lms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for {platform_name}! To activate your account, " +"please copy and paste this address into your web browser's address bar:" +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the about section of the {platform_name} Courses web site." +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the {platform_name} web site." +msgstr "" + +#: lms/templates/emails/activation_email_subject.txt +msgid "Your account for {platform_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Dear {full_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "" +"You have been invited to be a beta tester for {course_name} at {site_name} " +"by a member of the course staff." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {course_about_url} to join the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_allowedmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "This email was automatically sent from {site_name} to {email_address}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_subject.txt +msgid "You have been invited to a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us at" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us immediately. Contact information is listed at:" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "" + +#: lms/templates/emails/email_change.txt +msgid "" +"We received a request to change the e-mail associated with your " +"{platform_name} account from {old_email} to {new_email}. If this is correct," +" please confirm your new e-mail address by visiting:" +msgstr "" + +#: lms/templates/emails/email_change_subject.txt +msgid "Request to change {platform_name} account e-mail" +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "Dear student," +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"You have been invited to join {course_name} at {site_name} by a member of " +"the course staff." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "To access the course visit {course_url} and login." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To access the course visit {course_about_url} and register for the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To finish your registration, please visit {registration_url} and fill out " +"the registration form making sure to use {email_address} in the E-mail " +"field." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, you will see " +"{course_name} listed on your dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, visit " +"{course_about_url} to join the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedsubject.txt +msgid "You have been invited to register for {course_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "" +"You have been enrolled in {course_name} at {site_name} by a member of the " +"course staff. The course should now appear on your {site_name} dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "This email was automatically sent from {site_name} to {full_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledsubject.txt +msgid "You have been enrolled in {course_name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Hi {name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"Your payment was successful. You will see the charge below on your next " +"credit or debit card statement." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"The charge will show up on your statement under the company name " +"{merchant_name}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"If you have billing questions, please read the FAQ ({faq_url}) or contact " +"{billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "If you have billing questions, please contact {billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "-The {platform_name} Team" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Your order number is: {order_number}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "The items in your order are:" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Quantity - Description - Price" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/shoppingcart/receipt.html +msgid "#:" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the tech support at" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the course staff at ta@edx.org." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +msgid "" +"You have been removed as a beta tester for {course_name} at {site_name} by a" +" member of the course staff. The course will remain on your dashboard, but " +"you will no longer be part of the beta testing group." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Your other courses have not been affected." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_subject.txt +msgid "You have been removed from a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "Dear Student," +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "" +"You have been un-enrolled from course {course_name} by a member of the " +"course staff. Please disregard the invitation previously sent." +msgstr "" + +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "" +"You have been un-enrolled in {course_name} at {site_name} by a member of the" +" course staff. The course will no longer appear on your {site_name} " +"dashboard." +msgstr "" + +#: lms/templates/emails/unenroll_email_subject.txt +msgid "You have been un-enrolled from {course_name}" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "{course_number} Staff Grading" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"This is the list of problems that currently need to be graded in order to " +"train AI grading and create calibration essays for peer grading. Each " +"problem needs to be treated separately, and we have indicated the number of " +"student submissions that need to be graded. You can grade more than the " +"minimum required number of submissions--this will improve the accuracy of AI" +" grading, though with diminishing returns. You can see the current accuracy " +"of AI grading in the problem view." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Problem List" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"Please note that when you see a submission here, it has been temporarily " +"removed from the grading pool. The submission will return to the grading " +"pool after 30 minutes without any grade being submitted. Hitting the back " +"button will result in a 30 minute wait to be able to grade this submission " +"again." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Prompt" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "(Hide)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Student Response" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Written Feedback" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Feedback for student (optional)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Flag as inappropriate content for later review" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Skip" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Score Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"The chart below displays the score distribution for each standard problem in" +" your class, specified by the problem's url name." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"Scores are shown without weighting applied, so if your problem contains 2 " +"questions, it will display as having a total of 2 points." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Loading problem list..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Gender Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Enrollment Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Total number of enrollees (instructors, staff members, and students)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Basic Course Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Display Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course started?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Yes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course ended?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Grade Cutoffs:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "The status for any active tasks appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Warnings" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 +msgid "" +"For large courses, generating this report may take several hours. Please be " +"patient and do not click the button multiple times. Clicking the button " +"multiple times will significantly slow the grade generation process." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The report is generated in the background, meaning it is OK to navigate away" +" from this page while your report is generating." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Grade Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports Available for Download" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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. +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Note: To keep student data secure, you cannot save or email these " +"links for direct access. Copies of links expire within 5 minutes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Individual due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"In this section, you have the ability to grant extensions on specific units " +"to individual students. Please note that the latest date is always taken; " +"you cannot use this tool to make an assignment due earlier for a particular " +"student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Choose the graded unit:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the extension due date and time (in UTC; please specify MM/DD/YYYY " +"HH:MM)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Change due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Viewing granted extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Here you can see what extensions have been granted on particular units or " +"for a particular student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Choose a graded unit and click the button to obtain a list of all students " +"who have extensions for the given unit." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List all students with due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Specify a specific student to see all of that student's extensions." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List date extensions for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Resetting extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Resetting a problem's due date rescinds a due date extension for a student " +"on a particular unit. This will revert the due date for the student back to " +"the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reset due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Back to Standard Dashboard" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "section_display_name" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"You will not get notification for emails that bounce, so please double-check" +" spelling." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Email Addresses/Usernames" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Auto Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not yet registered for " +"{platform_name} will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is left unchecked, users who have not yet registered" +" for {platform_name} will not be enrolled, but will be allowed to enroll " +"once they make an account." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Notify users by email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users will receive an email " +"notification." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Unenroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Beta Tester Addition" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Note: Users must have an activated {platform_name} account before they can " +"be enrolled as a beta tester." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add beta testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Remove beta testers" +msgstr "" + +#. Translators: an "Administration List" is a list, such as Course Staff, that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Administration List Management" +msgstr "" + +#. Translators: an "Administrator Group" is a group, such as Course Staff, +#. that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Select an Administrator Group:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Getting available lists..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Staff cannot modify staff or beta tester lists. To modify these lists, " +"contact your instructor and ask them to add you as an instructor for staff " +"and beta lists, or a discussion admin for discussion management." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Course Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course staff can help you manage limited aspects of your course. Staff can " +"enroll and unenroll students, as well as modify their grades and see all " +"course data. Course staff are not automatically given access to Studio and " +"will not be able to edit your course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Instructors" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Instructors are the core administration of your course. Instructors can add " +"and remove course staff, as well as administer discussion access." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Instructor" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Beta Testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Beta testers can see course content before the rest of the students. They " +"can make sure that the content works, but have no additional privileges." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Beta Tester" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Admins" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion admins can edit or delete any post, clear misuse flags, close and" +" re-open threads, endorse responses, and see posts from all cohorts. They " +"CAN add/delete other moderators and their posts are marked as 'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Discussion Admin" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Moderators" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion moderators can edit or delete any post, clear misuse flags, close" +" and re-open threads, endorse responses, and see posts from all cohorts. " +"They CANNOT add/delete other moderators and their posts are marked as " +"'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Moderator" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Community TAs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Community TA's are members of the community whom you deem particularly " +"helpful on the discussion boards. They can edit or delete any post, clear " +"misuse flags, close and re-open threads, endorse responses, and see posts " +"from all cohorts. Their posts are marked 'Community TA'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Community TA" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Reload Graphs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Count of Students Opened a Subsection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send Email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Message:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Please try not to email students more than once per week. Before sending " +"your email, consider:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Email actions run in the background. The status for any active tasks - " +"including email tasks - appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"To see the status for all bulk email tasks ever submitted for this course, " +"click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade inspection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Email or Username" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Click this link to view the student's progress page:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Progress Page" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade adjustment" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem urlname" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is {location1}, then just provide the " +"{urlname1}. If the location is {location2}, then provide {urlname2}.)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Next, select an action to perform for the given user and problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset Student Attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Student Submission" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may also delete the entire state of a student for the specified problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Delete Student State for Problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" the 'Pending Instructor Tasks' table. To see status for all tasks submitted" +" for this problem and student, click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Then select an action" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset ALL students' attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore ALL students' problem submissions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"The above actions run in the background, and status for active tasks will " +"appear in a table on the Course Info tab. To see status for all tasks " +"submitted for this problem, click on this button" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Problem" +msgstr "" + +#: lms/templates/licenses/serial_numbers.html +msgid "None Available" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Change Preferred Language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Please choose your preferred language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Save Language Settings" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "" +"Don't see your preferred language? {link_start}Volunteer to become a " +"translator!{link_end}" +msgstr "" + +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/modal/accessible_confirm.html +msgid "modal open" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "{course_number} Combined Notifications" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Open Ended Console" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Here are items that could potentially need your attention." +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "No items require attention at the moment." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "{course_number} Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "" +"Here are a list of open ended problems for this course that have been " +"flagged by students as potentially inappropriate." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "No flagged problems exist." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Unflag" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Ban" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "{course_number} Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Here is a list of open ended problems for this course." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "You have not attempted any open ended problems yet." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Problem Name" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Grader Type" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"\n" +"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" +"{ul_tag}\n" +"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" +"{li_tag}The instructor needs to score the essays that are used to help you better understand the grading\n" +"criteria.{end_li_tag}\n" +"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"Here are a list of problems that need to be peer graded for this course." +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Graded" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Available" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Required" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "No due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "" +"The due date has passed, and peer grading for this problem is closed at this" +" time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "The due date has passed, and peer grading is closed at this time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to Grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Please include some written feedback as well." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"This submission has explicit, offensive, or (I suspect) plagiarized content." +" " +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "How did I do?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Continue" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Ready to grade!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You have finished learning to grade, which means that you are now ready to " +"start grading." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start Grading!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "You have not yet finished learning to grade this problem." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You will now be shown a series of instructor-scored essays, and will be " +"asked to score them yourself." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"Once you can score the essays similarly to an instructor, you will be ready " +"to grade your peers." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Are you sure that you want to flag this submission?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You are about to flag a submission. You should only flag a submission that " +"contains explicit, offensive, or (suspected) plagiarized content. If the " +"submission is not addressed to the question or is incorrect, you should give" +" it a score of zero and accompanying feedback instead of flagging it." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Remove Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Keep Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Go Back" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "Thanks For Registering!" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "" +"Your account is not active yet. An activation link has been sent to {email}," +" along with instructions for activating your account." +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Activation Complete!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Account already active!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "You can now {link_start}log in{link_end}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Activation Invalid" +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "" +"Something went wrong. Check to make sure the URL you went to was correct -- " +"e-mail programs will sometimes split it into two lines. If you still have " +"issues, e-mail us to let us know what happened at {email}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Or you can go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "Password reset successful" +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "" +"We've e-mailed you instructions for setting your password to the e-mail " +"address you submitted. You should be receiving it shortly." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Data" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "These reports are delimited by start and end dates." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"These reports are delimited alphabetically by university name. i.e., " +"generating a report with 'Start Letter' A and 'End Letter' C will generate " +"reports for all universities starting with A, B, and C." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Letter: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Letter: " +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "Payment Error" +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "There was an error processing your order!" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your Shopping Cart" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your selected items:" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Unit Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Total Amount" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "You have selected no items for purchase." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Register for [Course Name] | Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid " () Electronic Receipt" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Order #" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Date:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Items ordered:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Qty" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Note: items with strikethough like " +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid " have been refunded." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Billed To:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are now registered for: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Registered as: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Your Progress" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Current Step: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Intro" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take ID Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Review" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Make Payment" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Confirmation" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Congratulations! You are now verified on " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"You are now registered as a verified student! Your registration details are " +"below." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are registered for:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "A list of courses you have just registered for as a verified student" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Options" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Starts: {start_date}" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to Course" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to your Dashboard" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Verified Status" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"We have received your identification details to verify your identity. If " +"there is a problem with any of the items, we will contact you to resubmit. " +"You can now register for any of the verified certificate courses this " +"semester without having to re-verify." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"The professor will ask you to periodically submit a new photo to verify your" +" work during the course (usually at exam times)." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Payment Details" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"Please print this page for your records; it serves as your receipt. You will" +" also receive an email with the same information." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Order No." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Total" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "this" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Billed To" +msgstr "" + +#: lms/templates/static_templates/404.html +msgid "" +"The page that you were looking for was not found. Go back to the " +"{link_start}homepage{link_end} or let us know about any pages that may have " +"been moved at {email}." +msgstr "" + +#: lms/templates/static_templates/about.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/faq.html +#: lms/templates/static_templates/help.html +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/tos.html +msgid "" +"This page left intentionally blank. It is not used by edx.org but is left " +"here for possible use by installations of Open edX." +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "This Course Unavailable In Your Country" +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "" +"Our system indicates that you are trying to access an edX course from an IP " +"address associated with a country currently subjected to U.S. economic and " +"trade sanctions. Unfortunately, at this time edX must comply with export " +"controls, and we cannot allow you to access this particular course. Feel " +"free to browse our catalogue to find other courses you may be interested in " +"taking." +msgstr "" + +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/honor.html +msgid "Honor Code" +msgstr "" + +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/media-kit.html +msgid "Media Kit" +msgstr "" + +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/press.html +msgid "In the Press" +msgstr "" + +#: lms/templates/static_templates/server-down.html +msgid "Currently the {platform_name} servers are down" +msgstr "" + +#: lms/templates/static_templates/server-down.html +#: lms/templates/static_templates/server-overloaded.html +msgid "" +"Our staff is currently working to get the site back up as soon as possible. " +"Please email us at {tech_support_email} to report any problems or downtime." +msgstr "" + +#: lms/templates/static_templates/server-error.html +msgid "There has been a 500 error on the {platform_name} servers" +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}." +msgstr "" + +#: lms/templates/static_templates/server-overloaded.html +msgid "Currently the {platform_name} servers are overloaded" +msgstr "" + +#: lms/templates/university_profile/edge.html +#: lms/templates/university_profile/edge.html +msgid "edX edge" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Log in to your courses" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Register for classes" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Take free online courses from today's leading universities." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Edit Your Name" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "The following error occurred while editing your name:" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "" +"To uphold the credibility of {platform} certificates, all name changes will " +"be logged and recorded." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Change my name" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Why Do I Need to Re-Verify?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity. We will send the new photo to be matched up with the photo of the " +"original ID you submitted when you signed up for the course." +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Having Technical Trouble?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Have questions?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please read {a_start}our FAQs to view common questions about our " +"certificates{a_end}." +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are upgrading your registration for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are re-verifying for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are registering for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Upgrading to:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Re-verifying for:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Registering as: " +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Change your mind?" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "You can always continue to audit the course without verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You can always {a_start} audit the course for free {a_end} without " +"verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "Technical Requirements" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)." +msgstr "" + +#: lms/templates/verify_student/face_upload.html +msgid "Edit Your Full Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Re-Verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Webcam Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Flash Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have Flash installed. {a_start} Get Flash {a_end} to " +"continue your registration." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Error submitting your images" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Oops! Something went wrong. Please confirm your details and try again." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with your " +"original verification." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Don't see your picture? Make sure to allow your browser to use your camera " +"when it asks for permission." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Take photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Looks good" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Tips on taking a successful photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your face is well-lit" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be sure your entire face is inside the frame" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Can we match the photo you took with the one on your ID?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once in position, use the camera button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your picture" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Use the checkmark button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "once you are happy with the photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Common Questions" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need my photo?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"As part of the verification process, we need your photo to confirm that you " +"are you." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "What do you do with this picture?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "We only use it to verify your identity. It is not displayed anywhere." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches the ID " +"you originally submitted. We will also use this as the name on your " +"certificate." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Edit your name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Once you verify your photo looks good and your name is correct, you can " +"finish your re-verification and return to your course. Note: You " +"will not have another chance to re-verify." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Yes! You can confirm my identity with this information." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Submit photos & re-verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Verification Submission Confirmation" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Your Credentials Have Been Updated" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"We have received your re-verification details and submitted them for review." +" Your dashboard will show the notification status once the review is " +"complete." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"Please note: The professor may ask you to re-verify again at other key " +"points in the course." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "Complete your other re-verifications" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Return to where you left off" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Reverification Status" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You are in the ID Verified track" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following courses:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Re-verify by {date}" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following course:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You have no re-verifications at present." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "The status of your submitted re-verifications:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Failed" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Don't want to re-verify right now?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Why do I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity by submitting a new photo of your face. We will send the new photo " +"to be matched up with the photo of the original ID you submitted when you " +"signed up for the course. If you are taking multiple courses, you may need " +"to re-verify multiple times, once for every important point in each course " +"you are taking as a verified student." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What will I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because you are just confirming that you are still you, the only thing you " +"will need to do to re-verify is to submit a new photo of your face with " +"your webcam. The process is quick and you will be brought back to where " +"you left off so you can keep on learning." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"If you changed your name during the semester and it no longer matches the " +"original ID you submitted, you will need to re-edit your name to match as " +"well." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What if I have trouble with my re-verification?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because of the short time that re-verification is open, you will not" +" be able to correct a failed verification. If you think there was " +"an error in the review, please contact us at {email}" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Verification" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Please Resubmit Your Verification Information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"There was an error with your previous verification. In order proceed in the " +"verified certificate of achievement track of your current courses, please " +"complete the following steps." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with the " +"picture on your ID." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your photo looks good, you can move on to step 2." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Go to Step 2: Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show Us Your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your ID so we can match it with your " +"photo and the name on your account." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your ID is well-lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Acceptable IDs include drivers licenses, passports, or other goverment-" +"issued IDs that include your name and photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check that there isn't any glare" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Ensure that you can see your photo and read your name" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Try to keep your fingers at the edge to avoid covering important information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need a photo of my ID?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We need to match your ID with your photo and name to confirm that you are " +"you." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We encrypt it and send it to our secure authorization service for review. We" +" use the highest levels of security and do not save the photo or information" +" anywhere once the match has been completed." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your ID photo looks good, you can move on to step 3." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 3: Review Your Info" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Verify Your Submission" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure we can verify your identity with the photos and information below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Review the Photos You've Re-Taken" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Please review the photos and verify that they meet the requirements listed " +"below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo above needs to meet the following requirements:" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be well lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show your whole face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo on your ID must match the photo of your face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be readable (not too far away, no glare)" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The name on your ID must match the name on your account below" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Photos don't meet the requirements?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake Your Photos" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches your ID. " +"We will also use this as the name on your certificate." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"Once you verify your details match the requirements, you can move onto to " +"confirm your re-verification submisssion." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Yes! My details all match." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Upgrade Your Registration for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/verified.html +msgid "Register for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue registering, or select to {a_start} audit " +"the course for free {a_end} without verifying." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Error processing your order" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Oops! Something went wrong. Please confirm your details again and click the " +"button to move on to payment. If you are still having trouble, please try " +"again later." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "What if my camera isn't working?" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 2: Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Review the Photos You've Taken" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Contribution Level" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Please confirm your contribution for this course (min. $" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Once you verify your details match the requirements, you can move on to step" +" 4, payment on our secure server." +msgstr "" + +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course}, you need to re-verify your" +" identity by {date}. Go to URL." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +msgid "" +"We've captured your re-submitted information and will review it to verify " +"your identity shortly. You should receive an update to your veriication " +"status within 1-2 days. In the meantime, you still have access to all of " +"your course content." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Return to Your Dashboard" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Re-Verification Failed" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "" +"Your re-verification was submitted after the re-verification deadline, and " +"you can no longer be re-verified." +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Please contact support if you believe this message to be in error." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Upgrade Your Registration for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Register for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "You need to activate your edX account before proceeding" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please check your email for further instructions on activating your new " +"account." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Upgrade" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to upgrade to being an ID verified " +"student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Register" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to register as an ID verified student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Activate Your Account" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Check your email" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"you need an active edX account before registering - check your email for " +"instructions" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Identification" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A photo identification document" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"a drivers license, passport, or other goverment or school-issued ID with " +"your name and picture on it" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Webcam" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A webcam and a modern browser" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " +"{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please make sure your browser is updated to the most recent version possible" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Credit or Debit Card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A major credit or debit card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Visa, Master Card, American Express, Discover, Diners Club, JCB with " +"Discover logo" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always continue to audit this course instead." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always {a_start}audit this course instead{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Go to Step 1: Take my Photo" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "ID Verification" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You've Been Verified Previously" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "" +"We've already verified your identity (through the photos of you and your ID " +"you provided earlier). You can proceed to make your secure payment and " +"complete registration." +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You have decided to pay $ " +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}(active){span_end}" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "Changes" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}active{span_end}" +msgstr "" + +#: lms/templates/wiki/includes/breadcrumbs.html +msgid "Add article" +msgstr "" + +#: cms/templates/404.html +msgid "The page that you were looking for was not found." +msgstr "" + +#: cms/templates/404.html +msgid "" +"Go back to the {homepage} or let us know about any pages that may have been " +"moved at {email}." +msgstr "" + +#: cms/templates/500.html +msgid "Studio Server Error" +msgstr "" + +#: cms/templates/500.html +msgid "The Studio servers encountered an error" +msgstr "" + +#: cms/templates/500.html +msgid "" +"An error occurred in Studio and the page could not be loaded. Please try " +"again in a few moments." +msgstr "" + +#: cms/templates/500.html +msgid "" +"We've logged the error and our staff is currently working to resolve this " +"error as soon as possible." +msgstr "" + +#: cms/templates/500.html +msgid "If the problem persists, please email us at {email_link}." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +#: cms/templates/activation_invalid.html +msgid "Studio Account Activation" +msgstr "" + +#: cms/templates/activation_active.html +msgid "Your account is already active" +msgstr "" + +#: cms/templates/activation_active.html +msgid "" +"This account, set up using {0}, has already been activated. Please sign in " +"to start working within edX Studio." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +msgid "Sign into Studio" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "Your account activation is complete!" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "" +"Thank you for activating your account. You may now sign in and start using " +"edX Studio to author courses." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Your account activation is invalid" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"We're sorry. Something went wrong with your activation. Check to make sure " +"the URL you went to was correct — e-mail programs will sometimes split" +" it into two lines." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"If you still have issues, contact edX Support. In the meatime, you can also " +"return to" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Contact edX Support" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/widgets/header.html +msgid "Files & Uploads" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Uploading…" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +msgid "Choose File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/asset_index.html +msgid "Upload New File" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Load Another File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/course_info.html +#: cms/templates/edit-tabs.html cms/templates/overview.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Content" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/course_info.html cms/templates/edit-tabs.html +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/textbooks.html +msgid "Page Actions" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + +#: cms/templates/asset_index.html +msgid "What files are listed here?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"In addition to the files you upload on this page, any files that you add to " +"the course appear in this list. These files include your course image, " +"textbook chapters, and files that appear on your Course Handouts sidebar." +msgstr "" + +#: cms/templates/asset_index.html +msgid "File URLs" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the Embed URL value to link to the file or image from a component, a" +" course update, or a course handout." +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the External URL value to reference the file or image from outside " +"of your course. Do not use the External URL as a link value within your " +"course." +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/overview.html cms/templates/settings_graders.html +msgid "What can I do on this page?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You can upload new files or view, download, or delete existing files. You " +"can lock a file so that people who are not enrolled in your course cannot " +"access that file." +msgstr "" + +#: cms/templates/asset_index.html +msgid "Your file has been deleted." +msgstr "" + +#: cms/templates/asset_index.html +msgid "close alert" +msgstr "" + +#: cms/templates/checklists.html cms/templates/export.html +#: cms/templates/export_git.html cms/templates/import.html +#: cms/templates/widgets/header.html +msgid "Tools" +msgstr "" + +#: cms/templates/checklists.html +msgid "Course Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "Current Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "What are course checklists?" +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Course checklists are tools to help you understand and keep track of all the" +" steps necessary to get your course ready for students." +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Any changes you make to these checklists are saved automatically and are " +"immediately visible to other course team members." +msgstr "" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +msgid "Duplicate" +msgstr "" + +#: cms/templates/component.html +msgid "Duplicate this component" +msgstr "" + +#: cms/templates/component.html +msgid "Delete this component" +msgstr "" + +#: cms/templates/component.html cms/templates/container_xblock_component.html +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/overview.html cms/templates/overview.html +msgid "Drag to reorder" +msgstr "" + +#: cms/templates/container.html +msgid "Container" +msgstr "" + +#: cms/templates/container.html +msgid "This page has no content yet." +msgstr "" + +#: cms/templates/container.html cms/templates/container.html +msgid "Publishing Status" +msgstr "" + +#: cms/templates/container.html +msgid "Published" +msgstr "" + +#: cms/templates/container.html +msgid "" +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." +msgstr "" + +#: cms/templates/course_info.html cms/templates/course_info.html +msgid "Course Updates" +msgstr "" + +#: cms/templates/course_info.html +msgid "New Update" +msgstr "" + +#: cms/templates/course_info.html +msgid "" +"Use course updates to notify students of important dates or exams, highlight" +" particular discussions in the forums, announce schedule changes, and " +"respond to student questions. You add or edit updates in HTML." +msgstr "" + +#. Translators: Pages refer to the tabs that appear in the top navigation of +#. each course. +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/export.html cms/templates/widgets/header.html +msgid "Pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "New Page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit_subsection.html +#: cms/templates/index.html cms/templates/overview.html +#: cms/templates/unit.html +msgid "View Live" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Show this page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "Show/hide page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "This page cannot be reordered" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "You can add additional custom pages to your course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Add a New Page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "What are pages?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages are listed horizontally at the top of your course. Default pages " +"(Courseware, Course info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages that you create." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Custom pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"You can create and edit custom pages to provide students with additional " +"course content. For example, you can create pages for the grading policy, " +"course slides, and a course calendar. " +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "How do pages look to students in my course?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Students see the default and custom pages at the top of your course and use " +"these links to navigate." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "See an example" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Pages in Your Course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Preview of Pages in your course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages appear in your course's top navigation bar. The default pages " +"(Courseware, Course Info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages." +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/howitworks.html +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "close modal" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "CMS Subsection" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/unit.html +msgid "Display Name:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Units:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Subsection Settings" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Day" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Time" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/edit_subsection.html +#: cms/templates/overview.html +msgid "Coordinated Universal Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "UTC" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "" +"The date above differs from the release date of {name}, which is unset." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "The date above differs from the release date of {name} - {start_time}" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Sync to {name}." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Graded as:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Set a due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Day" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Remove due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Preview Drafts" +msgstr "" + +#: cms/templates/error.html +msgid "Internal Server Error" +msgstr "" + +#: cms/templates/error.html +msgid "The Page You Requested Page Cannot be Found" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. We couldn't find the Studio page you're looking for. You may " +"want to return to the Studio Dashboard and try again. If you are still " +"having problems accessing things, please feel free to {link_start}contact " +"Studio support{link_end} for further help." +msgstr "" + +#: cms/templates/error.html cms/templates/error.html +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Use our feedback tool, Tender, to share your feedback" +msgstr "" + +#: cms/templates/error.html +msgid "The Server Encountered an Error" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. There was a problem with the server while trying to process " +"your last request. You may want to return to the Studio Dashboard or try " +"this request again. If you are still having problems accessing things, " +"please feel free to {link_start}contact Studio support{link_end} for further" +" help." +msgstr "" + +#: cms/templates/error.html +msgid "Back to dashboard" +msgstr "" + +#: cms/templates/export.html cms/templates/export.html +msgid "Course Export" +msgstr "" + +#: cms/templates/export.html +msgid "About Exporting Courses" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export courses and edit them outside of Studio. The exported file is" +" a .tar.gz file (that is, a .tar file compressed with GNU Zip) that contains" +" the course structure and content. You can also re-import courses that " +"you've exported." +msgstr "" + +#: cms/templates/export.html +msgid "Export My Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Export Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}exported with{em_end} your course:" +msgstr "" + +#: cms/templates/export.html +msgid "Course Content (all Sections, Sub-sections, and Units)" +msgstr "" + +#: cms/templates/export.html +msgid "Course Structure" +msgstr "" + +#: cms/templates/export.html +msgid "Individual Problems" +msgstr "" + +#: cms/templates/export.html +msgid "Course Assets" +msgstr "" + +#: cms/templates/export.html +msgid "Course Settings" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}not exported{em_end} with your course:" +msgstr "" + +#: cms/templates/export.html +msgid "User Data" +msgstr "" + +#: cms/templates/export.html +msgid "Course Team Data" +msgstr "" + +#: cms/templates/export.html +msgid "Forum/discussion Data" +msgstr "" + +#: cms/templates/export.html +msgid "Certificates" +msgstr "" + +#: cms/templates/export.html +msgid "Why export a course?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your course directly, outside of Studio. You" +" may want to create a backup copy of your course. Or, you may want to create" +" a copy of your course that you can later import into another course " +"instance and customize." +msgstr "" + +#: cms/templates/export.html +msgid "What content is exported?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are exported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, is not exported." +msgstr "" + +#: cms/templates/export.html +msgid "Opening the downloaded file" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the course.xml file, as well as subfolders that contain course" +" content." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git" +msgstr "" + +#: cms/templates/export_git.html cms/templates/export_git.html +#: cms/templates/widgets/header.html +msgid "Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "About Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "Use this to export your course to its git repository." +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"This will then trigger an automatic update of the main LMS site and update " +"the contents of your course visible there to students if automatic git " +"imports are configured." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git:" +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"giturl must be defined in your course settings before you can export to git." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Failed" +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Succeeded" +msgstr "" + +#: cms/templates/export_git.html +msgid "Your course:" +msgstr "" + +#: cms/templates/export_git.html +msgid "Course git url:" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome to" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio helps manage your courses online, so you can focus on teaching them" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Studio's Many Features" +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "Studio Helps You Keep Your Courses Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Keeping Your Course Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"The backbone of your course is how it is organized. Studio offers an " +"Outline editor, providing a simple hierarchy and easy drag " +"and drop to help you and your students stay organized." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple Organization For Content" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio uses a simple hierarchy of sections and " +"subsections to organize your content." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Change Your Mind Anytime" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Draft your outline and build content anywhere. Simple drag and drop tools " +"let your reorganize quickly." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Go A Week Or A Semester At A Time" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Build and release sections to your students incrementally. " +"You don't have to have it all done at once." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html +msgid "Learning is More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio lets you weave your content together in a way that reinforces " +"learning — short video lectures interleaved with exercises and more. " +"Insert videos and author a wide variety of exercise types with just a few " +"clicks." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Create Learning Pathways" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Help your students understand a small interactive piece at a time with " +"multimedia, HTML, and exercises." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work Visually, Organize Quickly" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Work visually and see exactly what your students will see. Reorganize all " +"your content with drag and drop." +msgstr "" + +#: cms/templates/howitworks.html +msgid "A Broad Library of Problem Types" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"It's more than just multiple choice. Studio has nearly a dozen types of " +"problems to challenge your learners." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "" +"Studio Gives You Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio works like web applications you already know, yet understands how you" +" build curriculum. Instant publishing to the web when you want it, " +"incremental release when it makes sense. And with co-authors, you can have a" +" whole team building a course, together." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Instant Changes" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Caught a bug? No problem. When you want, your changes to live when you hit " +"Save." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Release-On Date Publishing" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"When you've finished a section, pick when you want it to go" +" live and Studio takes care of the rest. Build your course incrementally." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work in Teams" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Co-authors have full access to all the same authoring tools. Make your " +"course better through a team effort." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up for Studio Today!" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up & Start Making an edX Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Already have a Studio Account? Sign In" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Outlining Your Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simple two-level outline to organize your couse. Drag and drop, and see your" +" course at a glance." +msgstr "" + +#: cms/templates/howitworks.html +msgid "More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Quickly create videos, text snippets, inline discussions, and a variety of " +"problem types." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Publishing on Date" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simply set the date of a section or subsection, and Studio will publish it " +"to your students for you." +msgstr "" + +#: cms/templates/html_error.html +msgid "We're having trouble rendering your component" +msgstr "" + +#: cms/templates/html_error.html +msgid "" +"Students will not be able to access this component. Re-edit your component " +"to fix the error." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Course Import" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a course before continuing. Content of the " +"imported course replaces all the content of this course. {em_start}You " +"cannot undo a course import{em_end}. We recommend that you first export the " +"current course, so you have a backup copy of it." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "" +"The course that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " +"It may also contain other files." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your course until the import operation has completed." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Course Content" +msgstr "" + +#: cms/templates/import.html +msgid "Choose a File to Import" +msgstr "" + +#: cms/templates/import.html +msgid "File Chosen:" +msgstr "" + +#: cms/templates/import.html +msgid "Replace my course with the one above" +msgstr "" + +#: cms/templates/import.html +msgid "Course Import Status" +msgstr "" + +#: cms/templates/import.html +msgid "Uploading" +msgstr "" + +#: cms/templates/import.html +msgid "Transferring your file to our servers" +msgstr "" + +#: cms/templates/import.html +msgid "Unpacking" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Expanding and preparing folder/file structure (You can now leave this page " +"safely, but avoid making drastic changes to content until this import is " +"complete)" +msgstr "" + +#: cms/templates/import.html +msgid "Verifying" +msgstr "" + +#: cms/templates/import.html +msgid "Reviewing semantics, syntax, and required data" +msgstr "" + +#: cms/templates/import.html +msgid "Updating Course" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this course. This may take a while " +"with larger courses." +msgstr "" + +#: cms/templates/import.html +msgid "Success" +msgstr "" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this course" +msgstr "" + +#: cms/templates/import.html +msgid "View Updated Outline" +msgstr "" + +#: cms/templates/import.html +msgid "Why import a course?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"You may want to run a new version of an existing course, or replace an " +"existing course altogether. Or, you may have developed a course outside " +"Studio." +msgstr "" + +#: cms/templates/import.html +msgid "What content is imported?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are imported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, remains the same as it was in the existing course." +msgstr "" + +#: cms/templates/import.html +msgid "Warning: Importing while a course is running" +msgstr "" + +#: cms/templates/import.html +msgid "" +"If you perform an import while your course is running, and you change the " +"URL names (or url_name nodes) of any Problem components, the student data " +"associated with those Problem components may be lost. This data includes " +"students' problem scores." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error during the upload process." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while unpacking the file." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while verifying the file you submitted." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while importing the new course to our database." +msgstr "" + +#: cms/templates/import.html +msgid "Your import has failed." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Choose new file" +msgstr "" + +#: cms/templates/import.html +msgid "Your import is in progress; navigating away will abort it." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +#: cms/templates/widgets/header.html +msgid "My Courses" +msgstr "" + +#: cms/templates/index.html +msgid "New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Email staff to create course" +msgstr "" + +#: cms/templates/index.html +msgid "Welcome, {0}!" +msgstr "" + +#: cms/templates/index.html +msgid "Here are all of the courses you currently have access to in Studio:" +msgstr "" + +#: cms/templates/index.html +msgid "You currently aren't associated with any Studio Courses." +msgstr "" + +#: cms/templates/index.html +msgid "Please correct the highlighted fields below." +msgstr "" + +#: cms/templates/index.html +msgid "Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Required Information to Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. Introduction to Computer Science" +msgstr "" + +#: cms/templates/index.html +msgid "The public display name for your course." +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +msgid "Organization" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. UniversityX or OrganizationX" +msgstr "" + +#: cms/templates/index.html +msgid "The name of the organization sponsoring the course." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed." +msgstr "" + +#: cms/templates/index.html +msgid "" +"This cannot be changed, but you can set a different display name in Advanced" +" Settings later." +msgstr "" + +#: cms/templates/index.html +msgid "e.g. CS101" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The unique number that identifies your course within your organization." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed and it cannot be changed." +msgstr "" + +#: cms/templates/index.html +msgid "Course Run" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. 2014_T1" +msgstr "" + +#: cms/templates/index.html +msgid "The term in which your course will run." +msgstr "" + +#: cms/templates/index.html +msgid "Create" +msgstr "" + +#: cms/templates/index.html +msgid "Course Run:" +msgstr "" + +#: cms/templates/index.html +msgid "Are you staff on an existing Studio course?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"You will need to be added to the course in Studio by the course creator. " +"Please get in touch with the course creator or administrator for the " +"specific course you are helping to author." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Create Your First Course" +msgstr "" + +#: cms/templates/index.html +msgid "Your new course is just a click away!" +msgstr "" + +#: cms/templates/index.html +msgid "Becoming a Course Creator in Studio" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team will " +"evaluate your request and provide you feedback within 24 hours during the " +"work week." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status:" +msgstr "" + +#: cms/templates/index.html +msgid "Request the Ability to Create Courses" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is has " +"completed evaluating your request." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator request is:" +msgstr "" + +#: cms/templates/index.html +msgid "Denied" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request did not meet the criteria/guidelines specified by edX Staff." +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is " +"currently evaluating your request." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request is currently being reviewed by edX staff and should be updated " +"shortly." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Need help?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"If you are new to Studio and having trouble getting started, there are a few" +" things that may be of help:" +msgstr "" + +#: cms/templates/index.html +msgid "Get started by reading Studio's Documentation" +msgstr "" + +#: cms/templates/index.html +msgid "Request help with Studio" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Can I create courses in Studio?" +msgstr "" + +#: cms/templates/index.html +msgid "In order to create courses in Studio, you must" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX staff to help you create a course" +msgstr "" + +#: cms/templates/index.html +msgid "" +"In order to create courses in Studio, you must have course creator " +"privileges to create your own course." +msgstr "" + +#: cms/templates/index.html +msgid "Your request to author courses in studio has been denied. Please" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX Staff with further questions" +msgstr "" + +#: cms/templates/index.html +msgid "Thanks for signing up, %(name)s!" +msgstr "" + +#: cms/templates/index.html +msgid "We need to verify your email address" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Almost there! In order to complete your sign up we need you to verify your " +"email address (%(email)s). An activation message and next steps should be " +"waiting for you there." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Please check your Junk or Spam folders in case our email isn't in your " +"INBOX. Still can't find the verification email? Request help via the link " +"below." +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/header.html +msgid "Sign In" +msgstr "" + +#: cms/templates/login.html cms/templates/login.html +msgid "Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html +msgid "Don't have a Studio Account? Sign up!" +msgstr "" + +#: cms/templates/login.html +msgid "Required Information to Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +msgid "Email Address" +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/sock.html +msgid "Studio Support" +msgstr "" + +#: cms/templates/login.html +msgid "" +"Having trouble with your account? Use {link_start}our support " +"center{link_end} to look over self help steps, find solutions others have " +"found to the same problem, or let us know of your issue." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Settings" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Course Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a User to Your Course's Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member Information" +msgstr "" + +#: cms/templates/manage_users.html +msgid "User's Email Address" +msgstr "" + +#: cms/templates/manage_users.html +msgid "e.g. jane.doe@gmail.com" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Please provide the email address of the course staff member you'd like to " +"add" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add User" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "Current Role:" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "You!" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Staff" +msgstr "" + +#: cms/templates/manage_users.html +msgid "send an email message to {email}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Promote another member to Admin to remove your admin rights" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Remove Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Delete the user, {username}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Team Members to This Course" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Adding team members makes course authoring collaborative. Users must be " +"signed up for Studio and have an active account. " +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Roles" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Course team members, or staff, are course co-authors. They have full writing" +" and editing privileges on all course content." +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Admins are course team members who can add and remove other course team " +"members." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Transferring Ownership" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Every course must have an Admin. If you're the Admin and you want transfer " +"ownership of the course, click Add admin access to make another user the " +"Admin, then ask that user to remove you from the Course Team list." +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Course Outline" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html +msgid "Expand/collapse this section" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Section Name" +msgstr "" + +#: cms/templates/overview.html +msgid "Add a new section name" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Delete this section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to re-order" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Subsection" +msgstr "" + +#: cms/templates/overview.html cms/templates/widgets/units.html +msgid "New Unit" +msgstr "" + +#: cms/templates/overview.html +msgid "You haven't added any sections to your course outline yet." +msgstr "" + +#: cms/templates/overview.html +msgid "Add your first section" +msgstr "" + +#: cms/templates/overview.html +msgid "Collapse All Sections" +msgstr "" + +#: cms/templates/overview.html +msgid "New Section" +msgstr "" + +#: cms/templates/overview.html +msgid "This section is not scheduled for release" +msgstr "" + +#: cms/templates/overview.html +msgid "Schedule" +msgstr "" + +#: cms/templates/overview.html +msgid "Release date:" +msgstr "" + +#: cms/templates/overview.html +msgid "Edit section release date" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to reorder section" +msgstr "" + +#: cms/templates/overview.html +msgid "Expand/collapse this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"You can create new sections and subsections, set the release date for " +"sections, and create new units in existing subsections. You can set the " +"assignment type for subsections that are to be graded, and you can open a " +"subsection for further editing." +msgstr "" + +#: cms/templates/overview.html +msgid "" +"In addition, you can drag and drop sections, subsections, and units to " +"reorganize your course." +msgstr "" + +#: cms/templates/overview.html +msgid "Section Release Date" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"On the date set below, this section - {name} - will be released to students." +" Any units marked private will only be visible to admins." +msgstr "" + +#: cms/templates/overview.html +msgid "Form Actions" +msgstr "" + +#: cms/templates/register.html +msgid "Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "Already have a Studio Account? Sign in" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Ready to start creating online courses? Sign up below and start creating " +"your first edX course today." +msgstr "" + +#: cms/templates/register.html +msgid "Required Information to Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "" +"This will be used in public discussions with your courses and in our edX101 " +"support forums" +msgstr "" + +#: cms/templates/register.html +msgid "Your Location" +msgstr "" + +#: cms/templates/register.html +msgid "I agree to the {a_start} Terms of Service {a_end}" +msgstr "" + +#: cms/templates/register.html +msgid "Create My Account & Start Authoring Courses" +msgstr "" + +#: cms/templates/register.html +msgid "Common Studio Questions" +msgstr "" + +#: cms/templates/register.html +msgid "Who is Studio for?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is for anyone that wants to create online courses that leverage the " +"global edX platform. Our users are often faculty members, teaching " +"assistants and course staff, and members of instructional technology groups." +msgstr "" + +#: cms/templates/register.html +msgid "How technically savvy do I need to be to create courses in Studio?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is designed to be easy to use by almost anyone familiar with common " +"web-based authoring environments (Wordpress, Moodle, etc.). No programming " +"knowledge is required, but for some of the more advanced features, a " +"technical background would be helpful. As always, we are here to help, so " +"don't hesitate to dive right in." +msgstr "" + +#: cms/templates/register.html +msgid "I've never authored a course online before. Is there help?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Absolutely. We have created an online course, edX101, that describes some " +"best practices: from filming video, creating exercises, to the basics of " +"running an online course. Additionally, we're always here to help, just drop" +" us a note." +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details Settings" +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/settings.html +msgid "Basic Information" +msgstr "" + +#: cms/templates/settings.html +msgid "The nuts and bolts of your course" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "This field is disabled: this information cannot be changed." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Summary Page" +msgstr "" + +#: cms/templates/settings.html +msgid "(for student enrollment and access)" +msgstr "" + +#: cms/templates/settings.html +msgid "Send a note to students via email" +msgstr "" + +#: cms/templates/settings.html +msgid "Invite your students" +msgstr "" + +#: cms/templates/settings.html +msgid "Promoting Your Course with edX" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course summary page will not be viewable until your course has been " +"announced. To provide content for the page and preview it, follow the " +"instructions provided by your PM." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Schedule" +msgstr "" + +#: cms/templates/settings.html +msgid "Dates that control when your course can be viewed" +msgstr "" + +#: cms/templates/settings.html +msgid "First day the course begins" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day your course is active" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Date" +msgstr "" + +#: cms/templates/settings.html +msgid "First day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "These Dates Are Not Used When Promoting Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"These dates impact when your courseware can be viewed, but " +"they are not the dates shown on your course summary page. " +"To provide the course start and registration dates as shown on your course " +"summary page, follow the instructions provided by your PM or Conrad Warre (conrad@edx.org)." +msgstr "" + +#: cms/templates/settings.html +msgid "Introducing Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "Information for prospective students" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Short Description" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Appears on the course catalog page when students roll over the course name. " +"Limit to ~150 characters" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Overview" +msgstr "" + +#: cms/templates/settings.html +msgid "your course summary page" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"You can manage this image along with all of your other files " +"& uploads" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 375px wide by 200px tall)" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your course image (Note: only JPEG " +"or PNG format supported)" +msgstr "" + +#: cms/templates/settings.html +msgid "Upload Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Introduction Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Delete Current Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Enter your YouTube video's ID (along with any restriction parameters)" +msgstr "" + +#: cms/templates/settings.html +msgid "Requirements" +msgstr "" + +#: cms/templates/settings.html +msgid "Expectations of the students taking this course" +msgstr "" + +#: cms/templates/settings.html +msgid "Hours of Effort per Week" +msgstr "" + +#: cms/templates/settings.html +msgid "Time spent on all course work" +msgstr "" + +#: cms/templates/settings.html +msgid "How are these settings used?" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course's schedule determines when students can enroll in and begin a " +"course." +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Other information from this page appears on the About page for your course. " +"This information includes the course overview, course image, introduction " +"video, and estimated time requirements. Students use About pages to choose " +"new courses to take." +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html +msgid "Other Course Settings" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +msgid "Grading" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Advanced Settings" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "There was an error saving your information. Please see below." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Manual Policy Definition" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Warning: Do not modify these policies unless you are " +"familiar with their purpose." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "What do advanced settings do?" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Advanced settings control specific course functionality. On this page, you " +"can edit manual policies, which are JSON-based key and value pairs that " +"control specific course settings." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Any policies you modify here override all other information you've defined " +"elsewhere in Studio. Do not edit policies unless you are familiar with both " +"their purpose and syntax." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" +" you use double quotation marks (") around the string. Do not use " +"single quotation marks (')." +msgstr "" + +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +msgid "Details & Schedule" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Settings" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Overall Grade Range" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Your overall grading scale for student final grades" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Rules & Policies" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Deadlines, requirements, and logistics around grading student work" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grace Period on Deadline:" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Leeway on due dates" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Assignment Types" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Categories and labels for any exercises that are gradable" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "New Assignment Type" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can use the slider under Overall Grade Range to specify whether your " +"course is pass/fail or graded by letter, and to establish the thresholds for" +" each grade." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can specify whether your course offers students a grace period for late " +"assignments." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can also create assignment types, such as homework, labs, quizzes, and " +"exams, and specify how much of a student's grade each assignment type is " +"worth." +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +#: cms/templates/studio_vertical_wrapper.html +msgid "Expand or Collapse" +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + +#: cms/templates/textbooks.html +msgid "You have unsaved changes. Do you really want to leave this page?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "New Textbook" +msgstr "" + +#: cms/templates/textbooks.html +msgid "Why should I break my textbook into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"Breaking your textbook into multiple chapters reduces loading times for " +"students, especially those with slow Internet connections. Breaking up " +"textbooks into chapters can also help students more easily find topic-based " +"information." +msgstr "" + +#: cms/templates/textbooks.html +msgid "What if my book isn't divided into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"If your textbook doesn't have individual chapters, you can upload the entire" +" text as a single chapter and enter a name of your choice in the Chapter " +"Name field." +msgstr "" + +#: cms/templates/unit.html cms/templates/ux/reference/unit.html +msgid "Individual Unit" +msgstr "" + +#: cms/templates/unit.html +msgid "You are editing a draft." +msgstr "" + +#: cms/templates/unit.html +msgid "This unit was originally published on {date}." +msgstr "" + +#: cms/templates/unit.html +msgid "View the Live Version" +msgstr "" + +#: cms/templates/unit.html +msgid "Add New Component" +msgstr "" + +#: cms/templates/unit.html +msgid "Common Problem Types" +msgstr "" + +#: cms/templates/unit.html +msgid "Advanced" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Settings" +msgstr "" + +#: cms/templates/unit.html +msgid "Visibility:" +msgstr "" + +#: cms/templates/unit.html +msgid "Public" +msgstr "" + +#: cms/templates/unit.html +msgid "Private" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit has been published. To make changes, you must {link_start}edit a " +"draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This is a draft of the published unit. To update the live version, you must " +"{link_start}replace it with this draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "Delete Draft" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Location" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Identifier:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for edX Studio! To activate your account, please " +"copy and paste this address into your web browser's address bar:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the edX web site." +msgstr "" + +#: cms/templates/emails/activation_email_subject.txt +msgid "Your account for edX Studio" +msgstr "" + +#: cms/templates/emails/course_creator_admin_subject.txt +msgid "{email} has requested Studio course creator privileges on edge" +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "" +"User '{user}' with e-mail {email} has requested Studio course creator " +"privileges on edge." +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "To grant or deny this request, use the course creator admin table." +msgstr "" + +#: cms/templates/emails/course_creator_denied.txt +msgid "" +"Your request for course creation rights to edX Studio have been denied. If " +"you believe this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_granted.txt +msgid "" +"Your request for course creation rights to edX Studio have been granted. To " +"create your first course, visit:" +msgstr "" + +#: cms/templates/emails/course_creator_revoked.txt +msgid "" +"Your course creation rights to edX Studio have been revoked. If you believe " +"this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_subject.txt +msgid "Your course creator status for edX Studio" +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "You can now {link_start}login{link_end}." +msgstr "" + +#: cms/templates/registration/reg_complete.html +msgid "" +"An activation link has been sent to {email}, along with instructions for " +"activating your account." +msgstr "" + +#: cms/templates/widgets/footer.html +msgid "All rights reserved." +msgstr "" + +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Contact Us" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Current Course:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "{course_name}'s Navigation:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Outline" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Updates" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Checklists" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Import" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Export" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Help & Account Navigation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +msgid "This is a PDF Document" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Documentation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html +msgid "Studio Help Center" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Currently signed in as:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Sign Out" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "You're not currently signed in" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "How Studio Works" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Help" +msgstr "" + +#: cms/templates/widgets/metadata-edit.html +msgid "Launch Latex Source Compiler" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Heading 1" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Multiple Choice" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Checkboxes" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Text Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Numerical Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Dropdown" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Explanation" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Advanced Editor" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Toggle Cheatsheet" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Label" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "edX Studio Help" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Need help with Studio? Creating a course is complex, so we're here to help. " +"Take advantage of our documentation, help center, as well as our edX101 " +"introduction course for course authors." +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Download Studio Documentation" +msgstr "" + +#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +msgid "How to use Studio to build your course" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Enroll in edX101" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Contact us about Studio" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Have problems, questions, or suggestions about Studio? We're also here to " +"listen to any feedback you want to share." +msgstr "" + +#: cms/templates/widgets/tabs-aggregator.html +msgid "name" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete this unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to sort" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to reorder unit" +msgstr "" + +# empty +msgid "This is a key string." +msgstr "" + +#: wiki/admin.py wiki/models/article.py +msgid "created" +msgstr "" + +#: wiki/forms.py +msgid "Only localhost... muahahaha" +msgstr "" + +#: wiki/forms.py +msgid "Initial title of the article. May be overridden with revision titles." +msgstr "" + +#: wiki/forms.py +msgid "Type in some contents" +msgstr "" + +#: wiki/forms.py +msgid "" +"This is just the initial contents of your article. After creating it, you " +"can use more complex features like adding plugins, meta data, related " +"articles etc..." +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Contents" +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Summary" +msgstr "" + +#: wiki/forms.py +msgid "" +"Give a short reason for your edit, which will be stated in the revision log." +msgstr "" + +#: wiki/forms.py +msgid "" +"While you were editing, someone else changed the revision. Your contents " +"have been automatically merged with the new contents. Please review the text" +" below." +msgstr "" + +#: wiki/forms.py +msgid "No changes made. Nothing to save." +msgstr "" + +#: wiki/forms.py +msgid "Select an option" +msgstr "" + +#: wiki/forms.py +msgid "Slug" +msgstr "" + +#: wiki/forms.py +msgid "" +"This will be the address where your article can be found. Use only " +"alphanumeric characters and - or _. Note that you cannot change the slug " +"after creating the article." +msgstr "" + +#: wiki/forms.py +msgid "Write a brief message for the article's history log." +msgstr "" + +#: wiki/forms.py +msgid "A slug may not begin with an underscore." +msgstr "" + +#: wiki/forms.py +msgid "A deleted article with slug \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "A slug named \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "Yes, I am sure" +msgstr "" + +#: wiki/forms.py +msgid "Purge" +msgstr "" + +#: wiki/forms.py +msgid "" +"Purge the article: Completely remove it (and all its contents) with no undo." +" Purging is a good idea if you want to free the slug such that users can " +"create new articles in its place." +msgstr "" + +#: wiki/forms.py wiki/plugins/attachments/forms.py +#: wiki/plugins/images/forms.py +msgid "You are not sure enough!" +msgstr "" + +#: wiki/forms.py +msgid "While you tried to delete this article, it was modified. TAKE CARE!" +msgstr "" + +#: wiki/forms.py +msgid "Lock article" +msgstr "" + +#: wiki/forms.py +msgid "Deny all users access to edit this article." +msgstr "" + +#: wiki/forms.py +msgid "Permissions" +msgstr "" + +#: wiki/forms.py +msgid "Owner" +msgstr "" + +#: wiki/forms.py +msgid "Enter the username of the owner." +msgstr "" + +#: wiki/forms.py +msgid "(none)" +msgstr "" + +#: wiki/forms.py +msgid "Inherit permissions" +msgstr "" + +#: wiki/forms.py +msgid "" +"Check here to apply the above permissions recursively to articles under this" +" one." +msgstr "" + +#: wiki/forms.py +msgid "Permission settings for the article were updated." +msgstr "" + +#: wiki/forms.py +msgid "Your permission settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/forms.py +msgid "No user with that username" +msgstr "" + +#: wiki/forms.py +msgid "Article locked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Article unlocked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Filter..." +msgstr "" + +#: wiki/core/plugins/base.py +msgid "Settings for plugin" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +#: wiki/plugins/attachments/models.py +msgid "current revision" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The revision being displayed for this article. If you need to do a roll-" +"back, simply change the value of this field." +msgstr "" + +#: wiki/models/article.py +msgid "modified" +msgstr "" + +#: wiki/models/article.py +msgid "Article properties last modified" +msgstr "" + +#: wiki/models/article.py +msgid "owner" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The owner of the article, usually the creator. The owner always has both " +"read and write access." +msgstr "" + +#: wiki/models/article.py +msgid "group" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Like in a UNIX file system, permissions can be given to a user according to " +"group membership. Groups are handled through the Django auth system." +msgstr "" + +#: wiki/models/article.py +msgid "group read access" +msgstr "" + +#: wiki/models/article.py +msgid "group write access" +msgstr "" + +#: wiki/models/article.py +msgid "others read access" +msgstr "" + +#: wiki/models/article.py +msgid "others write access" +msgstr "" + +#: wiki/models/article.py +msgid "Article without content (%(id)d)" +msgstr "" + +#: wiki/models/article.py +msgid "content type" +msgstr "" + +#: wiki/models/article.py +msgid "object ID" +msgstr "" + +#: wiki/models/article.py +msgid "Article for object" +msgstr "" + +#: wiki/models/article.py +msgid "Articles for object" +msgstr "" + +#: wiki/models/article.py +msgid "revision number" +msgstr "" + +#: wiki/models/article.py +msgid "IP address" +msgstr "" + +#: wiki/models/article.py +msgid "user" +msgstr "" + +#: wiki/models/article.py +msgid "locked" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +msgid "article" +msgstr "" + +#: wiki/models/article.py +msgid "article contents" +msgstr "" + +#: wiki/models/article.py +msgid "article title" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Each revision contains a title field that must be filled out, even if the " +"title has not changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "original article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "Permissions are inherited from this article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "A plugin was changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "" +"The revision being displayed for this plugin.If you need to do a roll-back, " +"simply change the value of this field." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Cache lookup value for articles" +msgstr "" + +#: wiki/models/urlpath.py +msgid "slug" +msgstr "" + +#: wiki/models/urlpath.py +msgid "(root)" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL path" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL paths" +msgstr "" + +#: wiki/models/urlpath.py +msgid "Sorry but you cannot have a root article with a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "A non-root note must always have a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "There is already a root node on %s" +msgstr "" + +#: wiki/models/urlpath.py +msgid "" +"Articles who lost their parents\n" +"===============================\n" +"\n" +"The children of this article have had their parents deleted. You should probably find a new home for them." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Lost and found" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "A short summary of what the file contains" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "Yes I am sure..." +msgstr "" + +#: wiki/plugins/attachments/markdown_extensions.py +msgid "Click to download file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "" +"The revision of this attachment currently in use (on all articles using the " +"attachment)" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "original filename" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachments" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revision" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revisions" +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s was successfully added." +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "Your file could not be saved: %s" +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "" +"Your file could not be saved, probably because of a permission error on the " +"web server." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s uploaded and replaces old attachment." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your new file will automatically be renamed to match the file already " +"present. Files with different extensions are not allowed." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Current revision changed for %s." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "The file %s was deleted." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "This article is no longer related to the file %s." +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was changed: %s" +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was deleted: %s" +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "" +"New image %s was successfully uploaded. You can use it by selecting it from " +"the list of available images." +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "Are you sure?" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "images" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image: %s" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Current revision not set!!" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revision" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revisions" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image Revsion: %d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been restored" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been marked as deleted" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been changed to revision #%(revision)d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been saved." +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "Images" +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "An image was added: %s" +msgstr "" + +#: wiki/plugins/links/wiki_plugin.py +msgid "Links" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Notifications" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "When this article is edited" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Also receive emails about article edits" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were updated." +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "%(user)s subscribing to %(article)s (%(type)s)" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article deleted: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article modified: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "New article created: %s" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now sign up... and now you can sign in!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are no longer logged in. Bye bye!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now logged in! Have fun!" +msgstr "" + +#: wiki/views/article.py +msgid "New article '%s' created." +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article: %s" +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article cannot be deleted because it has children or is a root article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article together with all its contents are now completely gone! Thanks!" +msgstr "" + +#: wiki/views/article.py +msgid "" +"The article \"%s\" is now marked as deleted! Thanks for keeping the site " +"free from unwanted material!" +msgstr "" + +#: wiki/views/article.py +msgid "Your changes were saved." +msgstr "" + +#: wiki/views/article.py +msgid "A new revision of the article was succesfully added." +msgstr "" + +#: wiki/views/article.py +msgid "Restoring article" +msgstr "" + +#: wiki/views/article.py +msgid "The article \"%s\" and its children are now restored." +msgstr "" + +#: wiki/views/article.py +msgid "The article %s is now set to display revision #%d" +msgstr "" + +#: wiki/views/article.py +msgid "New title" +msgstr "" + +#: wiki/views/article.py +msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" +msgstr "" + +#: wiki/views/article.py +msgid "" +"A new revision was created: Merge between Revision #%(r1)d and Revision " +"#%(r2)d" +msgstr "" diff --git a/conf/locale/az/LC_MESSAGES/djangojs.mo b/conf/locale/az/LC_MESSAGES/djangojs.mo new file mode 100644 index 0000000000..21b169eb10 Binary files /dev/null and b/conf/locale/az/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/az/LC_MESSAGES/djangojs.po b/conf/locale/az/LC_MESSAGES/djangojs.po new file mode 100644 index 0000000000..54befaa1bb --- /dev/null +++ b/conf/locale/az/LC_MESSAGES/djangojs.po @@ -0,0 +1,1712 @@ +# #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Azerbaijani (http://www.transifex.com/projects/p/edx-platform/language/az/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" +"Last-Translator: sarina \n" +"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/edx-platform/language/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: cms/static/coffee/src/views/tabs.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js +#: common/static/coffee/src/discussion/utils.js +msgid "OK" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/asset.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Cancel" +msgstr "" + +#: cms/static/js/base.js lms/static/js/verify_student/photocapture.js +msgid "This link will open in a new browser window/tab" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Show Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Hide Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Expand Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Collapse Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Commentary" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Reply to Annotation" +msgstr "" + +#. Translators: %(earned)s is the number of points earned. %(total)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(earned)s/%(possible)s point)" +msgid_plural "(%(earned)s/%(possible)s points)" +msgstr[0] "" +msgstr[1] "" + +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10). There will always be at least 1 point possible.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(num_points)s point possible)" +msgid_plural "(%(num_points)s points possible)" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer:" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Hide Answer" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Show Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Reveal Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer hidden" +msgstr "" + +#. Translators: the word unanswered here is about answering a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "unanswered" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Status: unsubmitted" +msgstr "" + +#. Translators: A "rating" is a score a student gives to indicate how well +#. they feel they were graded on this problem +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "You need to pick a rating before you can submit." +msgstr "" + +#. Translators: this message appears when transitioning between openended +#. grading +#. types (i.e. self assesment to peer assessment). Sometimes, if a student +#. did not perform well at one step, they cannot move on to the next one. +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Your score did not meet the criteria to move to the next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Submit" +msgstr "" + +#. Translators: one clicks this button after one has finished filling out the +#. grading +#. form for an openended assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: this button is clicked to submit a student's rating of +#. an evaluator's assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit post-assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Answer saved, but not yet submitted." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Please confirm that you wish to submit your work. You will not be able to " +"make any changes after submitting." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"You are trying to upload a file that is too large for our system. Please " +"choose a file under 2MB or paste a link to it into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Are you sure you want to remove your previous response to this question?" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Moved to next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"File uploads are required for this question, but are not supported in your " +"browser. Try the newest version of Google Chrome. Alternatively, if you have" +" uploaded the image to another website, you can paste a link to it into the " +"answer box." +msgstr "" + +#. Translators: "Show Question" is some text that, when clicked, shows a +#. question's +#. content that had been hidden +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Show Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Hide Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/sequence/display.js +msgid "" +"Sequence error! Cannot navigate to tab %(tab_name)s in the current " +"SequenceModule. Please contact the course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Video slider" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Pause" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Play" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Fill browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Exit full browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD on" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD off" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video ended" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s hour" +msgid_plural "%(value)s hours" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s minute" +msgid_plural "%(value)s minutes" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s second" +msgid_plural "%(value)s seconds" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Volume" +msgstr "" + +#. Translators: Volume level equals 0%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Muted" +msgstr "" + +#. Translators: Volume level in range (0,20]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very low" +msgstr "" + +#. Translators: Volume level in range (20,40]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Low" +msgstr "" + +#. Translators: Volume level in range (40,60]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Average" +msgstr "" + +#. Translators: Volume level in range (60,80]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Loud" +msgstr "" + +#. Translators: Volume level in range (80,100)% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very loud" +msgstr "" + +#. Translators: Volume level equals 100%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Maximum" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Caption will be displayed when " +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on captions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn off captions" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Hide Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Show Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Sorry" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "We had some trouble loading the discussion. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "" +"We had some trouble loading the threads you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "Loading content" +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "" +"We had some trouble processing your request. Please ensure you have copied " +"any unsaved work and then reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "We had some trouble processing your request. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +msgid "…" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Close" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Open" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "remove vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Load more" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading more threads" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "We had some trouble loading more threads. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "%(unread_count)s new comment" +msgid_plural "%(unread_count)s new comments" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading thread list" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to remove report" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported%(start_sr_span)s, click to remove report%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Report Misuse" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned%(start_sr_span)s, click to unpin%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to unpin" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pin Thread" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading responses. Please reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading more responses. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "%(numResponses)s response" +msgid_plural "%(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing first response" +msgid_plural "Showing first %(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load next %(numResponses)s responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Are you sure you want to delete this post?" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +msgid "anonymous" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "staff" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Community TA" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported, click to remove report" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Are you sure you want to delete this comment?" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "We had some trouble deleting this comment. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/thread_response_view.js +msgid "Are you sure you want to delete this response?" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s ago" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s from now" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "less than a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about an hour" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about %d hour" +msgid_plural "about %d hours" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "a day" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a month" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a year" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Available %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of available %s. You may choose some by selecting them in " +"the box below and then clicking the \"Choose\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Type into this box to filter down the list of available %s." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Filter" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to choose all %s at once." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Chosen %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of chosen %s. You may remove some by selecting them in the " +"box below and then clicking the \"Remove\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to remove all chosen %s at once." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "%(sel)s of %(cnt)s selected" +msgid_plural "%(sel)s of %(cnt)s selected" +msgstr[0] "" +msgstr[1] "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have unsaved changes on individual editable fields. If you run an " +"action, your unsaved changes will be lost." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, but you haven't saved your changes to " +"individual fields yet. Please click OK to save. You'll need to re-run the " +"action." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, and you haven't made any changes on individual " +"fields. You're probably looking for the Go button rather than the Save " +"button." +msgstr "" + +#. Translators: the names of months, keep the pipe (|) separators. +#: lms/static/admin/js/calendar.js lms/static/admin/js/dateparse.js +msgid "" +"January|February|March|April|May|June|July|August|September|October|November|December" +msgstr "" + +#. Translators: abbreviations for days of the week, keep the pipe (|) +#. separators. +#: lms/static/admin/js/calendar.js +msgid "S|M|T|W|T|F|S" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.js.c +#: lms/static/admin/js/collapse.min.js +msgid "Show" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.min.js +msgid "Hide" +msgstr "" + +#. Translators: the names of days, keep the pipe (|) separators. +#: lms/static/admin/js/dateparse.js +msgid "Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Now" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Clock" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Choose a time" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Midnight" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "6 a.m." +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Noon" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Today" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Calendar" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Yesterday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Tomorrow" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Open Calculator" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Close Calculator" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Preview" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Post body" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching distribution." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Unavailable metric display." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching grade distributions." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Last Updated: <%= timestamp %>" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "<%= num_students %> students scored." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Loading..." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error getting student list." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error retrieving grading configuration." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error generating grades. Please try again." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "File Name" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "" +"Links are generated on demand and expire within 5 minutes due to the " +"sensitive nature of student information." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Username" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Revoke access" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Enter username or email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Please enter a username or email." +msgstr "" + +#. Translators: A rolename appears this sentence.; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error fetching list for role" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +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 "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully removed as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not removed as beta testers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Users must create and activate their account before they can be promoted to " +"beta tester." +msgstr "" + +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Could not find users associated with the following identifiers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error enrolling/unenrolling users." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following email addresses and/or usernames are invalid:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled and sent email to the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Emails successfully sent. The following users are no longer enrolled in the " +"course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following users are no longer enrolled in the course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"These users were not affiliated with the course so could not be unenrolled:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message must have a subject." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message cannot be blank." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to yourself. Is this " +"OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to everyone who is " +"staff or instructor on this course. Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to ALL (everyone who " +"is enrolled in this course as student, staff, or instructor). Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Error sending email." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There is no email history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There was an error obtaining email task history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a student email address or username." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting student progress url for '<%= student_id %>'. Check that the " +"student identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a problem urlname." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Success! Problem attempts reset for problem '<%= problem_id %>' and student " +"'<%= student_id %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error resetting problem attempts for problem '<%= problem_id %>' and student" +" '<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Delete student '<%= student_id %>'s state on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id" +" %>'. Check that the problem and student identifiers are spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Module state successfully deleted." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Started rescore problem task for problem '<%= problem_id %>' and student " +"'<%= student_id %>'. Click the 'Show Background Task History for Student' " +"button to see the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>' for student " +"'<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting task history for problem '<%= problem_id %>' and student '<%= " +"student_id %>'. Check that the problem and student identifiers are spelled " +"correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Reset attempts for all students on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to reset attempts for problem '<%= problem_id %>'." +" Click the 'Show Background Task History for Problem' button to see the " +"status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to reset attempts for all students on problem '<%= " +"problem_id %>'. Check that the problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Rescore problem '<%= problem_id %>' for all students?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to rescore problem '<%= problem_id %>' for all " +"students. Click the 'Show Background Task History for Problem' button to see" +" the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>'. Check that the" +" problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Error listing task history for this student and problem." +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Type" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task inputs" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task ID" +msgstr "" + +#. Translators: a "Requester" is a username that requested a task such as +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Requester" +msgstr "" + +#. Translators: A timestamp of when a task (eg, sending email) was submitted +#. appears after this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Submitted" +msgstr "" + +#. Translators: The length of a task (eg, sending email) in seconds appears +#. this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Duration (sec)" +msgstr "" + +#. Translators: The state (eg, "In progress") of a task (eg, sending email) +#. appears after this. +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "State" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Status" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Grades saved. Fetching the next submission to grade." +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Problem Name" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Graded" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Available to Grade" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Required" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Back to problem list" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Try loading again" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> available " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> graded " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> more needed to start ML" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Re-check for submissions" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state: <%= state %>" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state for submission: " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Hide)" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Show)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Image (upload file or type url)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Markdown Editing Help" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bold (Ctrl+B)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Italic (Ctrl+I)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Hyperlink (Ctrl+L)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote (Ctrl+Q)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Code Sample (Ctrl+K)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Image (Ctrl+G)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Numbered List (Ctrl+O)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bulleted List (Ctrl+U)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading (Ctrl+H)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Horizontal Rule (Ctrl+R)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Undo (Ctrl+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Y)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Shift+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "strong text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "emphasized text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter image description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter link description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote" +msgstr "" + +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +msgid "enter code here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "List item" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading" +msgstr "" + +#: lms/templates/class_dashboard/all_section_metrics.js +#: lms/templates/class_dashboard/all_section_metrics.js +msgid "Unable to retrieve data, please try again later." +msgstr "" + +#: lms/templates/class_dashboard/d3_stacked_bar_graph.js +msgid "Number of Students" +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "" +"This may be happening because of an error with our server or your internet " +"connection. Try refreshing the page or making sure you are online." +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "Studio's having trouble saving your work" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/xblock/cms.runtime.v1.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js +#: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js +#: cms/static/js/views/xblock_editor.js +msgid "Saving…" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "Delete Component Confirmation" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "" +"Are you sure you want to delete this component? This action cannot be " +"undone." +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js +msgid "Deleting…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js +msgid "Adding…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Duplicating…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Delete this component?" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Deleting this component is permanent and cannot be undone." +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Yes, delete this component" +msgstr "" + +#: cms/static/js/base.js +msgid "This link will open in a modal window" +msgstr "" + +#: cms/static/js/base.js +msgid "Delete this " +msgstr "" + +#: cms/static/js/base.js +msgid "Deleting this " +msgstr "" + +#: cms/static/js/base.js +msgid "Yes, delete this " +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces or special characters in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "" +"The combined length of the organization, course number, and course run " +"fields cannot be more than 65 characters." +msgstr "" + +#: cms/static/js/index.js +msgid "Required field." +msgstr "" + +#: cms/static/js/sock.js +msgid "Hide Studio Help" +msgstr "" + +#: cms/static/js/sock.js +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/static/js/models/course.js cms/static/js/models/section.js +msgid "You must specify a name" +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "" +"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " +"<%= fileExtensions %> to upload." +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "or" +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course must have an assigned start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course end date cannot be before the course start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course start date cannot be before the enrollment start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment start date cannot be after the enrollment end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment end date cannot be after the course end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "Key should only contain letters, numbers, _, or -" +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "There's already another assignment type with this name." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer between 0 and 100." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer greater than 0." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter non-negative integer." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Cannot drop more <% attrs.types %> than will assigned." +msgstr "" + +#: cms/static/js/models/settings/course_grading_policy.js +msgid "Grace period must be specified in HH:MM format." +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Delete File Confirmation" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "" +"Are you sure you wish to delete this item. It cannot be reversed!\n" +"\n" +"Also any content that links/refers to this item will no longer work (e.g. broken images and/or links)" +msgstr "" + +#: cms/static/js/views/asset.js cms/static/js/views/show_textbook.js +msgid "Delete" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Your file has been deleted." +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Name" +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Date Added" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "Are you sure you want to delete this update?" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "This action cannot be undone." +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Upload a new PDF to “<%= name %>”" +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + +#: cms/static/js/views/edit_textbook.js +#: cms/static/js/views/overview_assignment_grader.js +msgid "Saving" +msgstr "" + +#: cms/static/js/views/import.js +msgid "There was an error with the upload" +msgstr "" + +#: cms/static/js/views/import.js +msgid "" +"File format not supported. Please upload a file with a tar.gz " +"extension." +msgstr "" + +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Collapse All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Expand All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Release date:" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "{month}/{day}/{year} at {hour}:{minute} UTC" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Edit section release date" +msgstr "" + +#: cms/static/js/views/overview_assignment_grader.js +msgid "Not Graded" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "ascending" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "descending" +msgstr "" + +#: cms/static/js/views/paging_header.js +msgid "" +"Showing %(current_span)s%(start)s-%(end)s%(end_span)s out of " +"%(total_span)s%(total)s total%(end_span)s, sorted by " +"%(order_span)s%(sort_order)s%(end_span)s %(sort_direction)s" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Your change could not be saved" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Return and resolve this issue" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Delete “<%= name %>”?" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "" +"Deleting a textbook cannot be undone and once deleted any reference to it in" +" your courseware's navigation will also be removed." +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Deleting" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "We're sorry, there was an error" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes will not take effect until you save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes, but there are some errors" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "" +"Please address the errors on this page first, and then save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Save Changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes have been saved." +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Your changes will not take effect until you save your progress. Take care " +"with key and value formatting, as validation is not implemented." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Please note that validation of your policy key and value pairs is not " +"currently in place yet. If you are having difficulties, please review your " +"policy pairs." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Upload your course image." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Files must be in JPEG or PNG format." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/bg_BG/LC_MESSAGES/django.mo b/conf/locale/bg_BG/LC_MESSAGES/django.mo index b54ce85f1e..90145a0377 100644 Binary files a/conf/locale/bg_BG/LC_MESSAGES/django.mo and b/conf/locale/bg_BG/LC_MESSAGES/django.mo differ diff --git a/conf/locale/bg_BG/LC_MESSAGES/django.po b/conf/locale/bg_BG/LC_MESSAGES/django.po index 16bfee9e3c..248815f3ab 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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -171,6 +171,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -181,6 +191,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -307,7 +324,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -319,6 +336,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -767,7 +800,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -788,6 +821,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -800,6 +837,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -894,6 +953,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -926,11 +989,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -980,6 +1061,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1264,10 +1357,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1695,10 +1802,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1741,6 +1852,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2028,7 +2148,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2255,37 +2375,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2385,6 +2474,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3077,6 +3170,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3143,6 +3237,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3684,35 +3779,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3730,6 +3801,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3754,23 +3838,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3811,14 +3913,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 "" @@ -4026,12 +4120,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4042,12 +4135,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4088,11 +4180,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4201,6 +4329,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4256,18 +4388,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4375,14 +4495,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4425,7 +4541,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4652,10 +4769,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4665,6 +4811,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4708,15 +4862,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4768,6 +4922,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4825,8 +4983,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4883,10 +5042,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4967,6 +5128,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5057,33 +5238,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5092,6 +5257,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5108,14 +5277,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5155,7 +5316,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5200,43 +5361,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5485,8 +5614,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5724,6 +5853,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5732,6 +5865,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5775,17 +5922,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5915,6 +6056,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5935,12 +6080,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6275,12 +6420,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6394,10 +6533,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6570,6 +6717,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6688,6 +6842,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7050,24 +7208,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7079,6 +7227,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7118,10 +7274,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7202,6 +7367,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7212,10 +7381,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7639,7 +7804,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7650,9 +7816,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7670,6 +7837,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7691,7 +7862,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7700,6 +7871,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7831,6 +8012,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8062,6 +8264,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8298,6 +8506,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8537,20 +8755,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8560,7 +8776,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8931,6 +9147,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8971,13 +9189,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9666,19 +9878,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9692,23 +9901,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9743,6 +9969,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11377,6 +11610,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11465,15 +11702,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/bg_BG/LC_MESSAGES/djangojs.mo b/conf/locale/bg_BG/LC_MESSAGES/djangojs.mo index 24642d6774..e16402a60c 100644 Binary files a/conf/locale/bg_BG/LC_MESSAGES/djangojs.mo and b/conf/locale/bg_BG/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/bg_BG/LC_MESSAGES/djangojs.po b/conf/locale/bg_BG/LC_MESSAGES/djangojs.po index 4aa2782450..7baba54c69 100644 --- a/conf/locale/bg_BG/LC_MESSAGES/djangojs.po +++ b/conf/locale/bg_BG/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-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/edx-platform/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -34,6 +35,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -333,6 +336,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -389,16 +394,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -460,6 +463,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -496,6 +504,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -874,9 +886,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -884,7 +897,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1218,15 +1231,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1336,18 +1350,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1363,6 +1372,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1370,19 +1380,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1529,6 +1539,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1544,6 +1558,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1605,6 +1623,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1634,6 +1656,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1658,3 +1700,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/bn_BD/LC_MESSAGES/django.mo b/conf/locale/bn_BD/LC_MESSAGES/django.mo index 54c96b4eae..0d369af2a1 100644 Binary files a/conf/locale/bn_BD/LC_MESSAGES/django.mo and b/conf/locale/bn_BD/LC_MESSAGES/django.mo differ diff --git a/conf/locale/bn_BD/LC_MESSAGES/django.po b/conf/locale/bn_BD/LC_MESSAGES/django.po index 0eb813b47c..fe5b8850b0 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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -174,6 +174,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -184,6 +194,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -310,7 +327,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -322,6 +339,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -770,7 +803,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -791,6 +824,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -803,6 +840,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -897,6 +956,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -929,11 +992,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -983,6 +1064,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1267,10 +1360,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1698,10 +1805,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1744,6 +1855,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2031,7 +2151,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2258,37 +2378,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2388,6 +2477,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3080,6 +3173,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3146,6 +3240,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3687,35 +3782,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3733,6 +3804,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3757,23 +3841,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3814,14 +3916,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 "" @@ -4029,12 +4123,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4045,12 +4138,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4091,11 +4183,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4204,6 +4332,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4259,18 +4391,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4378,14 +4498,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4428,7 +4544,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4655,10 +4772,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4668,6 +4814,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4711,15 +4865,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4771,6 +4925,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4828,8 +4986,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4886,10 +5045,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4970,6 +5131,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5060,33 +5241,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5095,6 +5260,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5111,14 +5280,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5158,7 +5319,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5203,43 +5364,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5488,8 +5617,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5727,6 +5856,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5735,6 +5868,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5778,17 +5925,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5918,6 +6059,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5938,12 +6083,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6278,12 +6423,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6397,10 +6536,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6573,6 +6720,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6691,6 +6845,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7053,24 +7211,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7082,6 +7230,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7121,10 +7277,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7205,6 +7370,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7215,10 +7384,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7642,7 +7807,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7653,9 +7819,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7673,6 +7840,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7694,7 +7865,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7703,6 +7874,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7834,6 +8015,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8065,6 +8267,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8301,6 +8509,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8540,20 +8758,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8563,7 +8779,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8934,6 +9150,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8974,13 +9192,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9669,19 +9881,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9695,23 +9904,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9746,6 +9972,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11380,6 +11613,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11468,15 +11705,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/bn_BD/LC_MESSAGES/djangojs.mo b/conf/locale/bn_BD/LC_MESSAGES/djangojs.mo index 05a890345a..9a69bd4ec3 100644 Binary files a/conf/locale/bn_BD/LC_MESSAGES/djangojs.mo and b/conf/locale/bn_BD/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/bn_BD/LC_MESSAGES/djangojs.po b/conf/locale/bn_BD/LC_MESSAGES/djangojs.po index c4cbd1aecf..b21228d0e5 100644 --- a/conf/locale/bn_BD/LC_MESSAGES/djangojs.po +++ b/conf/locale/bn_BD/LC_MESSAGES/djangojs.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/edx-platform/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -27,6 +27,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -35,6 +36,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -334,6 +337,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -390,16 +395,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -461,6 +464,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -497,6 +505,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -875,9 +887,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -885,7 +898,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1219,15 +1232,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1337,18 +1351,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1364,6 +1373,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1371,19 +1381,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1530,6 +1540,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1545,6 +1559,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1606,6 +1624,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1635,6 +1657,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1659,3 +1701,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/bn_IN/LC_MESSAGES/django.mo b/conf/locale/bn_IN/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..55bf2bf435 Binary files /dev/null and b/conf/locale/bn_IN/LC_MESSAGES/django.mo differ diff --git a/conf/locale/bn_IN/LC_MESSAGES/django.po b/conf/locale/bn_IN/LC_MESSAGES/django.po new file mode 100644 index 0000000000..5b0b2c6a8e --- /dev/null +++ b/conf/locale/bn_IN/LC_MESSAGES/django.po @@ -0,0 +1,12580 @@ +# #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Bengali (India) (http://www.transifex.com/projects/p/edx-platform/language/bn_IN/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Bengali (India) (http://www.transifex.com/projects/p/edx-platform/language/bn_IN/) +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# messages.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2013 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-02-06 03:04+0000\n" +"Last-Translator: \n" +"Language-Team: Bengali (India) (http://www.transifex.com/projects/p/edx-platform/language/bn_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 1.3\n" +"Language: bn_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Translators: "Open Ended Panel" appears on a tab that, when clicked, opens +#. up a panel that +#. displays information about open-ended problems that a user has submitted or +#. needs to grade +#: cms/djangoapps/contentstore/utils.py common/lib/xmodule/xmodule/tabs.py +msgid "Open Ended Panel" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "Honor Code Certificate" +msgstr "" + +#: common/djangoapps/course_modes/views.py common/djangoapps/student/views.py +msgid "Enrollment is closed" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment mode not supported" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Invalid amount selected." +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "No selected price or selected price is too low." +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Community TA" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "" +"Your account has been disabled. If you believe this was done in error, " +"please contact us at {link_start}{support_email}{link_end}" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "Disabled Account" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Male" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Female" +msgstr "" + +#. Translators: 'Other' refers to the student's gender +#. Translators: 'Other' refers to the student's level of education +#: common/djangoapps/student/models.py common/djangoapps/student/models.py +msgid "Other" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Doctorate" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Master's or professional degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Bachelor's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Associate's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Secondary/high school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Junior secondary/junior high/middle school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Elementary/primary school" +msgstr "" + +#. Translators: 'None' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "None" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id not specified" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id is invalid" +msgstr "" + +#: common/djangoapps/student/views.py +#: lms/templates/courseware/course_about.html +msgid "Course is full" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You are not enrolled in this course" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Enrollment action is invalid" +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "There was an error receiving your login information. Please email us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has been temporarily locked due to excessive login failures. " +"Try again later." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Too many failed login attempts. Try again later." +msgstr "" + +#: common/djangoapps/student/views.py lms/templates/provider_login.html +msgid "Email or password is incorrect." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has not been activated. We have sent another activation " +"message. Please check your e-mail for the activation instructions." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please enter a username" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please choose an option" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "User with username {} does not exist" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully disabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully reenabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unexpected account status" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Public Username '{username}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Email '{email}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Error (401 {field}). E-mail us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Accepting Terms of Service is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Agreeing to the Honor Code is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Email cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail is required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Could not send activation e-mail." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unknown error. Please e-mail us to let us know how it happened." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "No inactive user with this e-mail exists" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unable to send reactivation email" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Invalid password" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail address required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with this e-mail already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Old email is the same as the new email." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Name required" +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Invalid ID" +msgstr "" + +#. Translators: the translation for "LONG_DATE_FORMAT" must be a format +#. string for formatting dates in a long form. For example, the +#. American English form is "%A, %B %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "LONG_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "DATE_TIME_FORMAT" must be a format +#. string for formatting dates with times. For example, the American +#. English form is "%b %d, %Y at %H:%M". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "DATE_TIME_FORMAT" +msgstr "" + +#. Translators: the translation for "SHORT_DATE_FORMAT" must be a +#. format string for formatting dates in a brief form. For example, +#. the American English form is "%b %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "SHORT_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "TIME_FORMAT" must be a format +#. string for formatting times. For example, the American English +#. form is "%H:%M:%S". See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "TIME_FORMAT" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "AM" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "PM" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Monday Februrary 10, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Monday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Tuesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Wednesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Thursday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Friday Februrary 14, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Friday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Saturday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Sunday" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jan 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Feb 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Mar 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Apr 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "May 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "May" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jun 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jul 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Aug 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Sep 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Oct 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Nov 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Dec 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "January 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "January" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "February 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "February" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "March 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "March" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "April 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "April" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "May 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "May" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "June 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "June" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "July 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "July" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "August 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "August" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "September 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "September" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "October 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "October" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "November 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "November" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "December 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "December" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Invalid Length ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or more" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or less" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Must be more complex ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more uppercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more lowercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more digits" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more punctuation characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more non ascii characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more unique words" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Too similar to a restricted dictionary word." +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +msgid "Cannot rescore problems with possible file submissions" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "correct" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incorrect" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incomplete" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +msgid "unanswered" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "processing" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your file(s) have been submitted. As soon as your submission is graded, this" +" message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your answer has been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Submitted. As soon as a response is returned, this message will be replaced " +"by that feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Error {err} in evaluating hint function {hintfn}." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "(Source code line unavailable)" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "See XML source line {sourcenum}." +msgstr "" + +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +msgid "There was a problem with the staff answer to this problem." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{student_answer}' as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use variables ({bad_variables}) in numerical problems." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "factorial function evaluated outside its domain:'{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid math syntax: '{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use complex numbers in range tolerance problems" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: complex boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: empty boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "CustomResponse: check function returned an invalid dictionary!" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"Unable to deliver your submission to grader (Reason: {error_msg}). Please " +"try again later." +msgstr "" + +#. Translators: 'grader' refers to the edX automatic code grader. +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/capa/capa/responsetypes.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Invalid grader reply. Please contact the course staff." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: {bad_input} not permitted in answer." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"factorial function not permitted in answer for this problem. Provided answer" +" was: {bad_input}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula" +msgstr "" + +#. Translators: 'SchematicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "The Staff answer could not be interpreted as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{given_answer}' as a number." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Final Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Warning: The problem has been reset to its initial state!" +msgstr "" + +#. Translators: Following this message, there will be a bulleted list of +#. items. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"The problem's state was corrupted by an invalid submission. The submission " +"consisted of:" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "If this error persists, please contact the course staff." +msgstr "" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem is closed." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be reset before it can be checked again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You must wait at least {wait} seconds between submissions." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + +#. Translators: {msg} will be replaced with a problem's error message. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Error: {msg}" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + +#. Translators: 'rescoring' refers to the act of re-submitting a student's +#. solution so it can get a new score. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem's definition does not support rescoring." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be answered before it can be graded again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem needs to be reset prior to save." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Your answers have been saved." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Your answers have been saved but not graded. Click 'Check' to grade them." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Refresh the page and make an attempt before resetting." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"We're sorry, there was an error with processing your request. Please try " +"reloading your page and trying again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"The state of this problem has changed since you loaded this page. Please " +"refresh your page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "General" +msgstr "" + +#. Translators: TBD stands for 'To Be Determined' and is used when a course +#. does not yet have an announced start date. +#: common/lib/xmodule/xmodule/course_module.py +msgid "TBD" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: 'Courseware' refers to the tab in the courseware that leads to +#. the content of a course +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/courseware/courseware-error.html +msgid "Courseware" +msgstr "" + +#. Translators: "Course Info" is the name of the course's information and +#. updates page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Course Info" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Progress" is the name of the student's course progress page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/peer_grading/peer_grading.html +msgid "Progress" +msgstr "" + +#. Translators: "Wiki" is the name of the course's wiki page +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/course_wiki/views.py +#: lms/templates/wiki/base.html +msgid "Wiki" +msgstr "" + +#. Translators: "Discussion" is the title of the course forum page +#. Translators: 'Discussion' refers to the tab in the courseware that leads to +#. the discussion forums +#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +msgid "Discussion" +msgstr "" + +#: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Textbooks" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Staff grading" appears on a tab that allows +#. staff to view open-ended problems that require staff grading +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/instructor/staff_grading.html +msgid "Staff grading" +msgstr "" + +#. Translators: "Peer grading" appears on a tab that allows +#. students to view open-ended problems that require grading +#: common/lib/xmodule/xmodule/tabs.py +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 +msgid "Syllabus" +msgstr "" + +#. Translators: 'Instructor' appears on the tab that leads to the instructor +#. dashboard, which is +#. a portal where an instructor can get data and perform various actions on +#. their course +#: common/lib/xmodule/xmodule/tabs.py +msgid "Instructor" +msgstr "" + +#. Translators: "Self" is used to denote an openended response that is self- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Self" +msgstr "" + +#. Translators: "AI" is used to denote an openended response that is machine- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "AI" +msgstr "" + +#. Translators: "Peer" is used to denote an openended response that is peer- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Peer" +msgstr "" + +#. Translators: "Not started" is used to communicate to a student that their +#. response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Not started." +msgstr "" + +#. Translators: "Being scored." is used to communicate to a student that their +#. response +#. are in the process of being scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Being scored." +msgstr "" + +#. Translators: "Scoring finished" is used to communicate to a student that +#. their response +#. have been scored, but the full scoring process is not yet complete +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scoring finished." +msgstr "" + +#. Translators: "Complete" is used to communicate to a student that their +#. openended response has been fully scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Complete." +msgstr "" + +#. Translators: "Scored rubric" appears to a user as part of a longer +#. string that looks something like: "Scored rubric from grader 1". +#. "Scored" is an adjective that modifies the noun "rubric". +#. That longer string appears when a user is viewing a graded rubric +#. returned from one of the graders of their openended response problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scored rubric" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "" +"You have attempted this question {number_of_student_attempts} times. You are" +" only allowed to attempt it {max_number_of_attempts} times." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "The problem state got out-of-sync. Please try reloading the page." +msgstr "" + +#. Translators: "Self-Assessment" refers to the self-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Self-Assessment" +msgstr "" + +#. Translators: "Peer-Assessment" refers to the peer-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Peer-Assessment" +msgstr "" + +#. Translators: "Instructor-Assessment" refers to the instructor-assessed mode +#. of openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Instructor-Assessment" +msgstr "" + +#. Translators: "AI-Assessment" refers to the machine-graded mode of openended +#. evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "AI-Assessment" +msgstr "" + +#. Translators: 'tag' is one of 'feedback', 'submission_id', +#. 'grader_id', or 'score'. They are categories that a student +#. responds to when filling out a post-assessment survey +#. of his or her grade from an openended problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Could not find needed tag {tag_name} in the survey responses. Please try " +"submitting again." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "There was an error saving your feedback. Please contact course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Couldn't submit feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Unable to save your feedback. Please try again later." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your submission." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Unable to submit your submission to the grader. Please try again later." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error getting feedback from grader." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "No feedback available from grader." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error handling action. Please try again." +msgstr "" + +#. Translators: this string appears once an openended response +#. is submitted but before it has been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: "Not started" communicates to a student that their response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Not started" +msgstr "" + +#. Translators: "In progress" communicates to a student that their response +#. is currently in the grading process +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "In progress" +msgstr "" + +#. Translators: "Done" communicates to a student that their response +#. has been fully graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Done" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We could not find a file in your submission. Please try choosing a file or " +"pasting a URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We are having trouble saving your file. Please try another file or paste a " +"URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/self_assessment_module.py +msgid "Error saving your score. Please notify course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Can't receive transcripts from Youtube for {youtube_id}. Status code: " +"{status_code}." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Can't find any transcripts on the Youtube service." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "We support only SubRip (*.srt) transcripts format." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Something wrong with SubRip transcripts file during parsing. Inner message " +"is {error_message}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Something wrong with SubRip transcripts file during parsing." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "A YouTube URL or a link to a file hosted anywhere on the web." +msgstr "" + +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Navigation" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "About these documents" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Index" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Search" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/copyright.html +msgid "Copyright" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: " +"{grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "students" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "questions" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{num_students} student(s) opened Subsection {subsection_num}: " +"{subsection_name}" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{problem_info_x} {problem_info_n} - {count_grade} {students} " +"({percent:.0f}%: {grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#. Translators: this string includes wiki markup. Leave the ** and the _ +#. alone. +#: lms/djangoapps/course_wiki/views.py +msgid "This is the wiki for **{organization}**'s _{course_name}_." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Course page automatically created." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Welcome to the edX Wiki" +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Visit a course wiki to add an article." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} does not exist." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} has never accessed problem {location}" +msgstr "" + +#: lms/djangoapps/courseware/features/video.py lms/templates/video.html +msgid "ERROR: No playable video sources found!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Path {0} doesn't exist, please create it, or configure a different path with" +" GIT_REPO_DIR" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Non usable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to get git log" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "git clone or pull failed!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to run import command." +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "The underlying module store does not support import." +msgstr "" + +#. Translators: This is an error message when they ask for a +#. particular version of a git repository and that version isn't +#. available from the remote source they specified +#: lms/djangoapps/dashboard/git_import.py +msgid "The specified remote branch is not available." +msgstr "" + +#. Translators: Error message shown when they have asked for a git +#. repository branch, a specific version within a repository, that +#. doesn't exist, or there is a problem changing to it. +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to switch to specified branch. Please check your branch name." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}, error {1}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "fixed password" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "All ok!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide full name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email must end in" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed - email {0} already exists as external_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Password must be supplied if not using certificates" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email address required (not username)" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Oops, failed to create user {0}, IntegrityError" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "User {0} created successfully!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with email address {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with username {0} - {1}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted user {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Statistic" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Value" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Site statistics" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Total number of users" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Courses loaded in the modulestore" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/templates/tracking_log.html +msgid "username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "email" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Repair Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Create User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Delete User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "The git repo location should end with '.git', and be a valid url" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Added Course" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Refusing to import. GIT_IMPORT_WITH_XMLMODULESTORE is not turned on, and it " +"is generally not safe to import into an XMLModuleStore with multithreaded. " +"We recommend you enable the MongoDB based module store instead, unless this " +"is a development environment." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "" +"The course {0} already exists in the data directory! (reloading anyway)" +msgstr "" + +#. Translators: unable to download the course content from +#. the source git repository. Clone occurs if this is brand +#. new, and pull is when it is being updated from the +#. source. +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Unable to clone or pull repository. Please check your url. Output was: {0!r}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed to clone repository to {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Successfully switched to branch: {branch_name}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Loaded course {0} {1}
Errors:" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: cms/templates/index.html cms/templates/settings.html +msgid "Course Name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Directory/ID" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Git Commit" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Change" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Editor" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Information about all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Error - cannot get course with ID {0}
{1}
" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "course_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# enrolled" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# staff" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "instructors" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Enrollment information for all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "role" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "full_name" +msgstr "" + +#: lms/djangoapps/dashboard/management/commands/git_add_course.py +msgid "" +"Import the specified git repository and optional branch into the modulestore" +" and optionally specified directory." +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with email address" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with username" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Failed in authenticating" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Unable to clone or pull repository" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Error - cannot get course with ID" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Re-open thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Close thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Title can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Body can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Comment level too deep" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "allowed file types are '%(file_types)s'" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "maximum upload file size is %(file_size)sK" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "" +"Error uploading file. Please contact the site administrator. Thank you." +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Good" +msgstr "" + +#: lms/djangoapps/django_comment_client/forum/views.py +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "All Groups" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "User does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Task is already running." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Username" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Name" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Email" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Language" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Location" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Birth Year" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "Gender" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Level of Education" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +msgid "Mailing Address" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Goals" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Complete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Incomplete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Your grade report is being generated! You can view the status of the " +"generation task in the 'Pending Instructor Tasks' section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"A grade report generation task is already in progress. Check the 'Pending " +"Instructor Tasks' table for the status of the task. When completed, the " +"report will be available for download in the table below." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully changed due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully reset due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Membership" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Student Admin" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Extensions" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Data Download" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/courseware/instructor_dashboard.html +msgid "Analytics" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Course Statistics At A Glance" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found a single student. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find student with that email or username." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Summary Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Raw Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for resetting \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found module. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname: {url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Deleted student module state for {state}!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to delete module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Module state successfully reset!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't reset module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{key}\" for student {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{key}\": {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Progress page for username: {username} with email address: {email}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Assignment Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Please enter an assignment name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Invalid assignment name '{name}'" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "External email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades for assignment \"{name}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Staff" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Instructors" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student profile data for course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found {num} records to dump." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student state for problem {problem}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Beta Testers" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades from {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook defined in course metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook url defined in settings.FEATURES" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No gradebook name defined in course remote_gradebook metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to communicate with gradebook server at {url}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: {err}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Remote gradebook response for {action}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Full name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Roles" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Forum {name}s in course {id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown rolename \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown username \"{username}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" does not have rolename \"{rolename}\", cannot " +"remove" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Removed \"{username}\" from \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: user \"{username}\" already has rolename \"{rolename}\", cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" should first be added as staff before adding as a" +" forum administrator, cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Added \"{username}\" to \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "{title} in course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "ID" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py cms/templates/register.html +#: lms/templates/dashboard.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "Full Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "edX email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Un-enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\", module " +"\"{problem}\" and student \"{student}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\" and module " +"\"{problem}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unable to parse date: " +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Couldn't find module for url: {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor/views/tools.py +msgid "Extended Due Date" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Users with due date extensions for {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unit" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Due date extensions for {0} {1} ({2})" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "rescored" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "reset" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/templates/wiki/plugins/attachments/index.html wiki/models/article.py +msgid "deleted" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "emailed" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks.py +msgid "graded" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#: lms/djangoapps/instructor_task/views.py +msgid "No status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No task_output information found for instructor_task {0}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No message provided" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "Invalid task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No progress status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_input information found for instructor_task {0}: {1}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} and {succeeded} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Progress: {action} {succeeded} of {attempted} so far" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find submission to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any students with submissions to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for any of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem {action} for {succeeded} of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any recipients to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message failed to be {action} for any of {attempted} recipients " +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message successfully {action} for {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Message {action} for {succeeded} of {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Status: {action} {succeeded} of {attempted}" +msgstr "" + +#. Translators: {skipped} is a count. This message is appended to task +#. progress status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (skipping {skipped})" +msgstr "" + +#. Translators: {total} is a count. This message is appended to task progress +#. status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (out of {total})" +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +"\n" +" Dear %(student_name)s,\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +" \n" +" Congratulations on earning your certificate in %(course_name)s!\n" +" Since you have an account on LinkedIn, you can display your hard earned\n" +" credential for your colleagues to see. Click the button below to add the\n" +" certificate to your profile.\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "Add to profile" +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Could not contact the external grading server. Please contact the " +"development team at {email}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Cannot find any open response problems in this course. Have you submitted " +"answers to any open response assessment questions? If not, please do so and " +"return to this page." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "AI Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Peer Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Not yet available" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Automatic Checker" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Instructor Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify course " +"staff." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify your edX" +" point of contact." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "for course {0} and student {1}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View all problems that require peer assessment in this particular course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View ungraded submissions submitted by students for the open ended problems " +"in the course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View open ended problems that you have previously submitted for grading." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "View submissions that have been flagged by students as inappropriate." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +#: lms/djangoapps/open_ended_grading/views.py +msgid "New submissions to grade" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "New grades have been returned" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "Submissions have been flagged for review" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"\n" +" Error with initializing peer grading.\n" +" There has not been a peer grading module created in the courseware that would allow you to grade others.\n" +" Please check back later for this.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Order Payment Confirmation" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Trying to add a different currency into the cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Please visit your dashboard to see your new" +" enrollments." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "[Refund] User-Requested Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Mode {mode} does not exist for {course_id}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Certificate of Achievement, {mode_name} for course {course}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Note - you have up to 2 weeks into the course to unenroll from the Verified " +"Certificate option and receive a full refund. To receive your refund, " +"contact {billing_email}. Please include your order number in your e-mail. " +"Please do NOT include your credit card information." +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order Number" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Customer Name" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Original Transaction" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Amount of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "Service Fees (if any)" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Purchase Time" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order ID" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Status" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +msgid "Quantity" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Unit Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Currency" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: wiki/plugins/attachments/forms.py +msgid "Description" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Comments" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "University" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html +#: cms/templates/widgets/header.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Course" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Announce Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html +msgid "Course Start Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Close Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Period" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Enrolled" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Audit Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Honor Code Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Verified Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue over the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Verified Students Contributing More than the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Dollars Refunded" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Transactions" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Payments Collected" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Successful Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Amount of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You must be logged-in to add to a shopping cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course you requested does not exist." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course {0} is already in your cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "You are already registered in course {0}." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Course added to cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You do not have permission to view this page." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor did not return a required parameter: {0}" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor returned a badly-typed value {0} for param {1}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The payment processor accepted an order whose number is not in our system." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The amount charged by the processor {0} {1} is different than the total cost" +" of the order {2} {3}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor did not accept your payment.\n" +" The decision they returned was {decision},\n" +" and the reason was {reason_code}:{reason_msg}.\n" +" You were not charged. Please try a different form of payment.\n" +" Contact us with payment-related questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a payment confirmation that had inconsistent data!\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" The specific error message is: {msg}.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Due to an error your purchase was charged for a different amount than the order total!\n" +" The specific error message is: {msg}.\n" +" Your credit card has probably been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a corrupted message regarding your charge, so we are\n" +" unable to validate that the message actually came from the payment processor.\n" +" The specific error message is: {msg}.\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Successful transaction." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request is missing one or more required fields." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "One or more fields in the request contains invalid data." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The merchantReferenceCode sent with this authorization request matches the\n" +" merchantReferenceCode of another authorization request that you sent in the last 15 minutes.\n" +" Possible fix: retry the payment after 15 minutes.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Error: General system failure. Possible fix: retry the payment after a few " +"minutes." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received but there was a server timeout.\n" +" This error does not include timeouts between the client and the server.\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but a service did not finish running in time\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The issuing bank has questions about the request. Possible fix: retry with " +"another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Expired card. You might also receive this if the expiration date you\n" +" provided does not match the date the issuing bank has on file.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" General decline of the card. No other information provided by the issuing bank.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Insufficient funds in the account. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Unknown reason" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Issuing bank unavailable. Possible fix: retry again after a few minutes" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Inactive card or card not authorized for card-not-present transactions.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The card has reached the credit limit. Possible fix: retry with another form" +" of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid card verification number. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid account number. Possible fix: retry with another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type is not accepted by the payment processor.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"General decline by the processor. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" There is a problem with our CyberSource merchant configuration. Please let us know at {0}\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The requested amount exceeds the originally authorized amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Processor Failure. Possible fix: retry the payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The authorization has already been captured" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The requested transaction amount must match the previous transaction amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type sent is invalid or does not correlate with the credit card number.\n" +" Possible fix: retry with the same card or another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request ID is invalid." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" You requested a capture through the API, but there is no corresponding, unused authorization record.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The transaction has already been settled or reversed." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The capture or credit is not voidable because the capture or credit information has already been\n" +" submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "You requested a credit for a capture that was previously voided" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but there was a timeout at the payment processor.\n" +" Possible fix: retry the payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource.'\n" +" Possible fix: retry with a different form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Reports" +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "" +"There was an error in your date input. It should be formatted as YYYY-MM-DD" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "No photo ID was provided." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "We couldn't read your name from your photo ID image." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "" +"The name associated with your account and the name on your ID do not match." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "The image of your face was not clear." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "Your face was not visible in your self-photo" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "There was an error verifying your ID photos." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Selected price is not valid number." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "This course doesn't support verified certificates" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "No selected price or selected price is below minimum." +msgstr "" + +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html +msgid "Skip to this view's content" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +#: lms/templates/registration/password_reset_complete.html +msgid "Your Password Reset is Complete" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +msgid "" +"\n" +" Your password has been set. You may go ahead and %(link_start)slog in%(link_end)s now.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Form" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" We're sorry, %(platform_name)s enrollment is not available in your region\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The following errors occurred while processing your registration: " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "You must complete all fields." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The two password fields didn't match." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"We're sorry, our systems seem to be having trouble processing your password " +"reset" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Someone has been made aware of this issue. Please try again shortly. Please %(start_link)scontact us%(end_link)s about any concerns you have.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"Please enter your new password twice so we can verify you typed it in " +"correctly.
Required fields are noted by bold text and an asterisk (*)." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: lms/templates/forgot_password_modal.html lms/templates/login.html +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Required Information" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password Again" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Change My Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your Password Reset Was Unsuccessful" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" The password reset link was invalid, possibly because the link has already been used. Please return to the %(start_link)slogin page%(end_link)s and start the password reset process again.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Help" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: cms/templates/login.html lms/templates/login-sidebar.html +#: lms/templates/register-sidebar.html +msgid "Need Help?" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" View our %(start_link)shelp section for contact information and answers to commonly asked questions%(end_link)s\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"You're receiving this e-mail because you requested a password reset for your" +" user account at edx.org." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet reset your password." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Thanks for using our site!" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "The edX Team" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "Last modified:" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "See all children" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "This article was last modified:" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/create.html.py +msgid "Add new article" +msgstr "" + +#: lms/templates/wiki/create.html +msgid "Create article" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/delete.html +#: lms/templates/wiki/delete.html.py +msgid "Go back" +msgstr "" + +#: lms/templates/wiki/delete.html lms/templates/wiki/delete.html.py +#: lms/templates/wiki/edit.html +msgid "Delete article" +msgstr "" + +#: lms/templates/wiki/delete.html +#: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Delete" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You cannot delete a root article." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You cannot delete this article because you do not have permission to delete " +"articles with children. Try to remove the children manually one-by-one." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You are deleting an article. This means that its children will be deleted as" +" well. If you choose to purge, children will also be purged!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "Articles that will be deleted" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "...and more!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You are deleting an article. Please confirm." +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/wiki/includes/article_menu.html +msgid "Edit" +msgstr "" + +#: lms/templates/wiki/edit.html lms/templates/wiki/edit.html.py +msgid "Save changes" +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/unit.html +msgid "Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this is a control to allow users to exit out of this modal +#. interface (a menu or piece of UI that takes the full focus of the screen) +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/modal/_modal-settings-language.html +#: lms/templates/modal/accessible_confirm.html +msgid "Close" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Wiki Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html +#: lms/templates/modal/_modal-settings-language.html +msgid "window open" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Back to editor" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "History" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"Click each revision to see a list of edited lines. Click the Preview button " +"to see how the article looked at this stage. At the bottom of this page, you" +" can change to a particular revision or merge an old revision with the " +"current one." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "(no log message)" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Preview this revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Auto log:" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Change" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Merge selected with current..." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Switch to selected version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Wiki Revision Preview" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Back to history view" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Switch to this version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge Revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge with current" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"When you merge a revision with the current, all data will be retained from " +"both versions and merged at its approximate location from each revision." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "After this, it's important to do a manual review." +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Create new merged version" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing revision:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing a merge between two revisions:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "This revision has been deleted." +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Restoring to this revision will mark the article as deleted." +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "" +"\n" +" You need to log in or sign up to use this function.\n" +" " +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in or sign up to use this function." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Cheatsheet" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Syntax Help" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"This wiki uses Markdown for styling. There are several " +"useful guides online. See any of the links below for in-depth details:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Markdown: Basics" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quick Markdown Syntax Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Miniature Markdown Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"To create a new wiki article, create a link to it. Clicking the link gives " +"you the creation page." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "[Article Name](wiki:ArticleName)" +msgstr "" + +#. Translators: Do not translate "edX" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Additions:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Math Expression" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Useful examples:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wikipedia" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Wiki" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Huge Header" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Smaller Header" +msgstr "" + +#. Translators: Leave the punctuation, but translate "emphasis" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "*emphasis* or _emphasis_" +msgstr "" + +#. Translators: Leave the punctuation, but translate "strong" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "**strong** or __strong__" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Unordered List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 1" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 2" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Ordered" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quotes" +msgstr "" + +#: lms/templates/wiki/includes/editor_widget.html +msgid "" +"\n" +" Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for help.\n" +" " +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/wiki_plugin.py +msgid "Attachments" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload new file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search and add file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload File" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search files and articles" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"You can reuse files from other articles. These files are subject to updates " +"on other articles which may or may not be a good thing." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"The following files are available for this article. Copy the markdown tag to" +" directly refer to a file from the article text." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Markdown tag" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Uploaded by" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Size" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File History" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Detach" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Replace" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Restore" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "anonymous (IP logged)" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File history" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "revisions" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "There are no attachments for this article." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Invalid course update id." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Course update not found." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " +"configure a different path with GIT_REPO_EXPORT_DIR" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Non writable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"If using http urls, you must provide the username and password in the url. " +"Similar to https://user:pass@github.com/user/course." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to determine branch, repo in detached HEAD mode" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to update or clone git repository." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to export course to xml." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to configure git username and password" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to commit changes. This is usually because there are no changes to be" +" committed" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to push changes. This is usually because the remote repository " +"cannot be contacted" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Bad course location provided" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Missing branch on fresh clone" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command was: {0!r}. Working directory was: {1!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command output was: {0!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Directory already exists, doing a git reset and pull instead of git clone." +msgstr "" + +#: cms/djangoapps/contentstore/utils.py lms/templates/notes.html +msgid "My Notes" +msgstr "" + +#: cms/djangoapps/contentstore/management/commands/git_export.py +msgid "" +"Take the specified course and attempt to export it to a git repository\n" +". Course directory must already be a git repository. Usage: git_export " +msgstr "" + +#: cms/djangoapps/contentstore/views/assets.py +msgid "Upload completed" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Special characters not allowed in organization, course number, and course " +"run." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Unable to create course '{name}'.\n" +"\n" +"{err}" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization, course number," +" and course run. Please change either organization or course number to be " +"unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Please change either the organization or course number so that it is unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization and course " +"number. Please change at least one field to be unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/export_git.py +msgid "Course successfully exported to git repository" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "We only support uploading a .tar.gz file." +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "File upload corrupted. Please try again" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "Could not find the course.xml file in the package." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of {0}" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of '{0}'" +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Incoming video data is empty." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Can't find item by locator." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Transcripts are supported only for \"video\" modules." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Insufficient permissions" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Could not find user by email address '{email}'." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "User {email} has registered but has not yet activated his/her account." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "`role` is required" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Only instructors may create other instructors" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "You may not remove the last instructor from a course" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "unrequested" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "pending" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "granted" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "denied" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Studio user" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "The date when state was last updated" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Current course creator state" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "" +"Optional notes about this user (for example, why course creation access was " +"denied)" +msgstr "" + +#: cms/templates/404.html cms/templates/error.html +#: lms/templates/static_templates/404.html +msgid "Page Not Found" +msgstr "" + +#: cms/templates/404.html lms/templates/static_templates/404.html +msgid "Page not found" +msgstr "" + +#: cms/templates/asset_index.html lms/templates/courseware/courseware.html +#: lms/templates/verify_student/_modal_editname.html +msgid "close" +msgstr "" + +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." +msgstr "" + +#. Translators: this is a verb describing the action of viewing more details +#: cms/templates/container_xblock_component.html +#: lms/templates/wiki/includes/article_menu.html +msgid "View" +msgstr "" + +#: cms/templates/html_error.html lms/templates/module-error.html +msgid "Error:" +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +#: lms/templates/courseware/course_about.html +msgid "Course Number" +msgstr "" + +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Organization:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Number:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Pending" +msgstr "" + +#: cms/templates/login.html lms/templates/login.html +#: lms/templates/university_profile/edge.html +msgid "Forgot password?" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/login.html lms/templates/provider_login.html +#: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Password" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + +#: cms/templates/manage_users.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Admin" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + +#: cms/templates/register.html cms/templates/widgets/header.html +#: lms/templates/index.html +msgid "Sign Up" +msgstr "" + +#: cms/templates/register.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "Public Username" +msgstr "" + +#: cms/templates/register.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "Preferred Language" +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Thanks for activating your account." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "This account has already been activated." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Visit your {link_start}dashboard{link_end} to see your courses." +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html +#: lms/templates/static_templates/tos.html +msgid "Terms of Service" +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/footer.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/privacy.html +msgid "Privacy Policy" +msgstr "" + +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py +msgid "Help" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Register for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sorry, there was an error when trying to register you" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your track:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Certificate of Achievement (ID Verified)" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your contribution for this course (min. $" +msgstr "" + +#: common/templates/course_modes/choose.html +#: lms/templates/verify_student/photo_verification.html +msgid "):" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay? What if I don't meet all the requirements?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"As a not-for-profit, edX uses your contribution to support our mission to " +"provide quality education to everyone around the world, and to improve " +"learning through research. While we have established a minimum fee, we ask " +"that you contribute as much as you can." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"I'd like to pay more than the minimum. Is my contribution tax deductible?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please check with your tax advisor to determine whether your contribution is" +" tax deductible." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What if I can't afford it or don't have the necessary equipment?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"If you can't afford the minimum fee or don't meet the requirements, you can " +"audit the course or elect to pursue an honor code certificate at no cost. If" +" you would like to pursue the honor code certificate, please check the honor" +" code certificate box, tell us why you can't pursue the verified certificate" +" below, and then click the 'Select Certificate' button to complete your " +"registration." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Honor Code Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Explain your situation: " +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please write a few sentences about why you'd like to opt out of the paid " +"verified certificate to pursue the honor code certificate:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Verified Registration Requirements" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To upgrade your registration and work towards a Verified Certificate of " +"Achievement, you will need a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To register for a Verified Certificate of Achievement option, you will need " +"a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What is an ID Verified Certificate?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"An ID Verified Certificate requires proof of your identity through your " +"photo and ID and is checked throughout the course to verify that it is you " +"who earned the passing grade." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "or" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Audit This Course" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up to audit this course for free and track your own progress." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Audit" +msgstr "" + +#: lms/templates/admin_dashboard.html +msgid "{platform_name}-wide Summary" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/open_ended_problems/combined_notifications.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Instructions" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "Collapse Instructions" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Guided Discussion" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Hide Annotations" +msgstr "" + +#: lms/templates/contact.html lms/templates/static_templates/about.html +#: lms/templates/static_templates/about.html +msgid "Vision" +msgstr "" + +#: lms/templates/contact.html +msgid "Faq" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +msgid "Press" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/contact.html +msgid "Contact" +msgstr "" + +#: lms/templates/contact.html +msgid "Class Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"We are always seeking feedback to improve our courses. If you are an " +"enrolled student and have any questions, feedback, suggestions, or any other" +" issues specific to a particular class, please post on the discussion forums" +" of that class." +msgstr "" + +#: lms/templates/contact.html +msgid "General Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." +msgstr "" + +#: lms/templates/contact.html +msgid "Technical Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have suggestions/feedback about the overall {platform_name} platform," +" or are facing general technical issues with the platform (e.g., issues with" +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Media" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"Please visit our {link_start}media/press page{link_end} for more " +"information. For any media or press inquiries, please email {email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Universities" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you are a university wishing to collaborate with or if you have questions" +" about {platform_name}, please email {email}." +msgstr "" + +#: lms/templates/course.html +msgid "New" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Dashboard" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/courseware/course_about.html +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "An error occurred. Please try again later." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please verify your new email" +msgstr "" + +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "edit" +msgstr "" + +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Reset Password" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Current Courses" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't registered for any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Find courses now!" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't been enrolled in any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Course-loading errors" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Email Settings for {course_number}" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Receive course emails" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Save Settings" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Password Reset Email Sent" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"An email has been sent to {email}. Follow the link in the email to change " +"your password." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Change Email" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please enter your new email address:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please confirm your password:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"We will send a confirmation to both {email} and your new email as part of " +"the process." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change your name" +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"To uphold the credibility of your {platform} {cert_name_short}, all name " +"changes will be logged and recorded." +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"Enter your desired full name, as it will appear on your {platform} " +"{cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/verify_student/_modal_editname.html +msgid "Reason for name change:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change My Name" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +" {course_number}? " +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Unregister" +msgstr "" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +msgid "E-mail change failed" +msgstr "" + +#: lms/templates/email_change_failed.html +msgid "We were unable to send a confirmation email to {email}" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +#: lms/templates/invalid_email_key.html +msgid "Go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "E-mail change successful!" +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "You should see your new email in your {link_start}dashboard{link_end}." +msgstr "" + +#: lms/templates/email_exists.html +msgid "An account with the new e-mail address already exists." +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Student Enrollment Form" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Course: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Add new students" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Existing students:" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "New students added: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Students rejected: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Debug: " +msgstr "" + +#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +msgid "External Authentication failed" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Due:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Status:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have successfully gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have not yet gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Completed puzzles" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Level" +msgstr "" + +#: lms/templates/folditbasic.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Submitted" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Puzzle Leaderboard" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "User" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Score" +msgstr "" + +#: lms/templates/footer.html +msgid "About" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/jobs.html +msgid "Jobs" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/faq.html +#: lms/templates/static_templates/faq.html +msgid "FAQ" +msgstr "" + +#: lms/templates/footer.html +msgid "{platform_name} Logo" +msgstr "" + +#: lms/templates/footer.html +msgid "" +"{platform_name} is a non-profit created by founding partners {Harvard} and " +"{MIT} whose mission is to bring the best of higher education to students of " +"all ages anywhere in the world, wherever there is Internet access. " +"{platform_name}'s free online MOOCs are interactive and subjects include " +"computer science, public health, and artificial intelligence." +msgstr "" + +#: lms/templates/footer.html +msgid "© 2014 {platform_name}, some rights reserved." +msgstr "" + +#: lms/templates/footer.html +msgid "Terms of Service and Honor Code" +msgstr "" + +#: lms/templates/forgot_password_modal.html +#: lms/templates/forgot_password_modal.html +msgid "Password Reset" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "" +"Please enter your e-mail address below, and we will e-mail instructions for " +"setting a new password." +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Your E-mail Address" +msgstr "" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +msgid "This is the e-mail address you used to register with {platform}" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Reset My Password" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Email is incorrect." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +msgid "{platform_name} Help" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"For questions on course lectures, homework, tools, or materials for " +"this course, post in the {link_start}course discussion " +"forum{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have general questions about {platform_name}? You can find " +"lots of helpful information in the {platform_name} " +"{link_start}FAQ{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have a question about something specific? You can contact " +"the {platform_name} general support team directly:" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Please note: The {platform_name} support team is English speaking. While we " +"will do our best to address your inquiry in any language, our responses will" +" be in English." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/login.html +#: lms/templates/provider_login.html lms/templates/provider_login.html +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "E-mail" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Briefly describe your issue" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Tell us the details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +#: lms/templates/instructor/staff_grading.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Submit" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Thank You!" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Thank you for your inquiry or feedback. We typically respond to a request " +"within one business day (Monday to Friday, {open_time} UTC to {close_time} " +"UTC.) In the meantime, please review our {link_start}detailed FAQs{link_end}" +" where most questions have already been answered." +msgstr "" + +#: lms/templates/help_modal.html +msgid "problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a Problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of the problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Details of the problem you are encountering" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc." +msgstr "" + +#: lms/templates/help_modal.html +msgid "suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a Suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of your suggestion" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/module-error.html +msgid "Details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a Question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief summary of your question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "An error has occurred." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please {link_start}send us e-mail{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please try again later." +msgstr "" + +#: lms/templates/index.html +msgid "Free courses from {university_name}" +msgstr "" + +#: lms/templates/index.html +msgid "The Future of Online Education" +msgstr "" + +#: lms/templates/index.html +msgid "For anyone, anywhere, anytime" +msgstr "" + +#: lms/templates/index.html +msgid "Stay up to date with all {platform_name} has to offer!" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Invalid email change key" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "This e-mail key is not valid. Please check:" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "" +"Was this key already used? Check whether the e-mail change has already " +"happened." +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Did your e-mail client break the URL into two lines?" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "The keys are valid for a limited amount of time. Has the key expired?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Helpful Information" +msgstr "" + +#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +msgid "Login via OpenID" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "" +"You can now start learning with {platform_name} by logging in with your OpenID account." +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Not Enrolled?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Sign up for {platform_name} today!" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Looking for help in logging in or with your {platform_name} account?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "View our help section for answers to commonly asked questions." +msgstr "" + +#: lms/templates/login.html +msgid "Log into your {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Log into My {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Access My Courses" +msgstr "" + +#: lms/templates/login.html lms/templates/register.html +msgid "Processing your account information…" +msgstr "" + +#: lms/templates/login.html +msgid "Please log in" +msgstr "" + +#: lms/templates/login.html +msgid "to access your account and courses" +msgstr "" + +#: lms/templates/login.html +msgid "We're Sorry, {platform_name} accounts are unavailable currently" +msgstr "" + +#: lms/templates/login.html +msgid "The following errors occurred while logging you in:" +msgstr "" + +#: lms/templates/login.html +msgid "Your email or password is incorrect" +msgstr "" + +#: lms/templates/login.html +msgid "" +"Please provide the following information to log into your {platform_name} " +"account. Required fields are noted by bold text " +"and an asterisk (*)." +msgstr "" + +#: lms/templates/login.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +msgid "example: username@domain.com" +msgstr "" + +#: lms/templates/login.html +msgid "Account Preferences" +msgstr "" + +#: lms/templates/login.html +msgid "Remember me" +msgstr "" + +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS +#: lms/templates/lti.html +msgid "External resource" +msgstr "" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + +#: lms/templates/lti.html +msgid "View resource in a new window" +msgstr "" + +#: lms/templates/lti.html +msgid "" +"Please provide launch_url. Click \"Edit\", and fill in the required fields." +msgstr "" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable or Reenable student accounts" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Username:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Reenable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Students whose accounts have been disabled" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "(reload your page to refresh)" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "working..." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"This page features MathJax technology to render mathematical formulae. To " +"make math accessibile, we suggest using the MathPlayer plugin. Please visit " +"the {link_start}MathPlayer Download Page{link_end} to download the plugin " +"for your browser." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"Your browser does not support the MathPlayer plugin. To use MathPlayer, " +"please use Internet Explorer 6 through 9." +msgstr "" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" +msgstr "" + +#: lms/templates/module-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/module-error.html +msgid "Raw data:" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Accepted" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Error" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Rejected" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Pending name changes" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/modal/accessible_confirm.html +msgid "Confirm" +msgstr "" + +#: lms/templates/name_changes.html +msgid "[Reject]" +msgstr "" + +#: lms/templates/navigation.html +msgid "Global Navigation" +msgstr "" + +#: lms/templates/navigation.html +msgid "Find Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Dashboard for:" +msgstr "" + +#: lms/templates/navigation.html +msgid "More options dropdown" +msgstr "" + +#: lms/templates/navigation.html +msgid "Log Out" +msgstr "" + +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + +#: lms/templates/navigation.html +msgid "How it Works" +msgstr "" + +#: lms/templates/navigation.html lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/courseware/courses.html +msgid "Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Schools" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Register Now" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Log in" +msgstr "" + +#: lms/templates/navigation.html +msgid "" +"Warning: Your browser is not fully supported. We strongly " +"recommend using {chrome_link_start}Chrome{chrome_link_end} or " +"{ff_link_start}Firefox{ff_link_end}." +msgstr "" + +#: lms/templates/notes.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "You do not have any notes." +msgstr "" + +#: lms/templates/problem.html +msgid "Reset" +msgstr "" + +#: lms/templates/problem.html +msgid "Show Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "Reveal Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "You have used {num_used} of {num_total} submissions" +msgstr "" + +#: lms/templates/provider_login.html +#: lms/templates/university_profile/edge.html +msgid "Log In" +msgstr "" + +#: lms/templates/provider_login.html +msgid "" +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." +msgstr "" + +#: lms/templates/provider_login.html +msgid "Return To %s" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Preferences for {platform_name}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update my {platform_name} Account" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Processing your account information …" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Welcome {username}! Please set your preferences below" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"We're sorry, {platform_name} enrollment is not available in your region" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "The following errors occurred while processing your registration:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"Required fields are noted by bold text and an " +"asterisk (*)." +msgstr "" + +#: lms/templates/register-shib.html lms/templates/signup_modal.html +msgid "Enter a public username:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "example: JaneDoe" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "Will be shown in any discussions or forums you participate in" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Account Acknowledgements" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Terms of Service{link_end}" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Honor Code{link_end}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update My Account" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Registration Help" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Already registered?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Click here to log in." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Registering with {platform_name} gives you access to all of our current and " +"future free courses. Not ready to take a course just yet? Registering puts " +"you on our mailing list - we will update you as courses are added." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Next Steps" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"You will receive an activation email. You must click on the activation link" +" to complete the process. Don't see the email? Check your spam folder and " +"mark emails from class.stanford.edu as 'not spam', since you'll want to be " +"able to receive email from your courses." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"As part of joining {platform_name}, you will receive an activation email. " +"You must click on the activation link to complete the process. Don't see " +"the email? Check your spam folder and mark {platform_name} emails as 'not " +"spam'. At {platform_name}, we communicate mostly through email." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Need help in registering with {platform_name}?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "View our FAQs for answers to commonly asked questions." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Once registered, most questions can be answered in the course specific " +"discussion forums or through the FAQs." +msgstr "" + +#: lms/templates/register.html +msgid "Register for {platform_name}" +msgstr "" + +#: lms/templates/register.html +msgid "Create My {platform_name} Account" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome!" +msgstr "" + +#: lms/templates/register.html +msgid "Register below to create your {platform_name} account" +msgstr "" + +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + +#: lms/templates/register.html +msgid "Please complete the following fields to register for an account. " +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "cannot be changed later" +msgstr "" + +#: lms/templates/register.html lms/templates/verify_student/face_upload.html +msgid "example: Jane Doe" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Needed for any certificates you may earn" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome {username}" +msgstr "" + +#: lms/templates/register.html +msgid "Enter a Public Display Name:" +msgstr "" + +#: lms/templates/register.html +msgid "Public Display Name" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Extra Personal Information" +msgstr "" + +#: lms/templates/register.html +msgid "City" +msgstr "" + +#: lms/templates/register.html +msgid "example: New York" +msgstr "" + +#: lms/templates/register.html +msgid "Country" +msgstr "" + +#: lms/templates/register.html +msgid "Highest Level of Education Completed" +msgstr "" + +#: lms/templates/register.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Year of Birth" +msgstr "" + +#: lms/templates/register.html +msgid "Please share with us your reasons for registering with {platform_name}" +msgstr "" + +#: lms/templates/register.html lms/templates/university_profile/edge.html +msgid "Register" +msgstr "" + +#: lms/templates/register.html lms/templates/signup_modal.html +msgid "Create My Account" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "Re-subscribe Successful!" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "" +"You have re-enabled forum notification emails from {platform_name}. Click " +"{dashboard_link_start}here{link_end} to return to your dashboard. " +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Previous" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +msgid "Section Navigation" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Next" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Sign Up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname@domain.com" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname (shown on forums)" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. Your Name (for certificates)" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Welcome {name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Ed. Completed" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Year of birth" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Mailing address" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Goals in signing up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Already have an account?" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Login." +msgstr "" + +#. Translators: The 'Group' here refers to the group of users that has been +#. sorted into group_id +#: lms/templates/split_test_staff_view.html +msgid "Group {group_id}" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug Info" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission history" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "{platform_name} Content Quality Assessment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Optional tag (eg \"done\" or \"broken\"):" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Add comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug" +msgstr "" + +#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +msgid "Module Fields" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "XML attributes" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission History Viewer" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "User:" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "View History" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "{course_number} Textbook" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "Textbook Navigation" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Previous page" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Next page" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Sysadmin Dashboard" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Users" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Staffing and Enrollment" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Logs" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "User Management" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Email or username" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Create user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download list of all users (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Check and repair external authentication map" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "" +"Go to each individual course's Instructor dashboard to manage course " +"enrollment." +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Manage course staff and instructors" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download staff and instructor list (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Administer Courses" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Location" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware and branch is a specific version within that repository +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Branch (optional)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Load new course from github" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Course ID or dir" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete course from site" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Django PID" +msgstr "" + +#. Translators: A version number appears after this string +#: lms/templates/sysadmin_dashboard.html +msgid "Platform Version" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Date" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Course ID" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Action" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Recent git load activity for" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "git action" +msgstr "" + +#: lms/templates/textannotation.html +msgid "Source:" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "Tracking Log" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "datetime" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "ipaddr" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "source" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "type" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "Unsubscribe Successful!" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "" +"You will no longer receive forum notification emails from {platform_name}. " +"Click {dashboard_link_start}here{link_end} to return to your dashboard. If " +"you did not mean to do this, click {undo_link_start}here{link_end} to re-" +"subscribe." +msgstr "" + +#: lms/templates/using.html +msgid "Using the system" +msgstr "" + +#: lms/templates/using.html +msgid "" +"During video playback, use the subtitles and the scroll bar to navigate. " +"Clicking the subtitles is a fast way to skip forwards and backwards by small" +" amounts." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you are on a low-resolution display, the left navigation bar can be " +"hidden by clicking on the set of three left arrows next to it." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you need bigger or smaller fonts, use your browsers settings to scale " +"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" +" ctrl-minus at the same time." +msgstr "" + +#: lms/templates/video.html +msgid "Skip to a navigable version of this video's transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Loading video player" +msgstr "" + +#: lms/templates/video.html +msgid "Play video" +msgstr "" + +#: lms/templates/video.html +msgid "Video position" +msgstr "" + +#: lms/templates/video.html +msgid "Play" +msgstr "" + +#: lms/templates/video.html +msgid "Speeds" +msgstr "" + +#: lms/templates/video.html +msgid "Speed" +msgstr "" + +#: lms/templates/video.html +msgid "Volume" +msgstr "" + +#: lms/templates/video.html +msgid "Fill browser" +msgstr "" + +#: lms/templates/video.html +msgid "HD off" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Turn off captions" +msgstr "" + +#: lms/templates/video.html +msgid "Skip to end of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "" +"Activating an item in this group will spool the video to the corresponding " +"time point. To skip transcript, go to previous item." +msgstr "" + +#: lms/templates/video.html +msgid "Go back to start of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Download video" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Download transcript" +msgstr "" + +#: lms/templates/video.html +msgid "Download Handout" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Your words:" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Total number of words:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Open Response" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Assessments:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Hide Question" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "New Submission" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Next Step" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "" +"Staff Warning: Please note that if you submit a duplicate of text that has " +"already been submitted for grading, it will not show up in the staff grading" +" view. It will be given the same grade that the original received " +"automatically, and will be returned within 30 minutes if the original is " +"already graded, or when the original is graded if not." +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_legend.html +msgid "Legend" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Submitted Rubric" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Toggle Full Rubric" +msgstr "" + +#. Translators: an example of what this string will look +#. like is: "Scored rubric from grader 1", where +#. "Scored rubric" replaces {result_of_task} and +#. "1" replaces {number}. +#. This string appears when a user is viewing one of +#. their graded rubrics for an openended response problem. +#. the number distinguishes between the different +#. graded rubrics the user might have received +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "{result_of_task} from grader {number}" +msgstr "" + +#. Translators: "See full feedback" is the text of +#. a link that allows a user to see more detailed +#. feedback from a self, peer, or instructor +#. graded openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +msgid "See full feedback" +msgstr "" + +#. Translators: this text forms a link that, when +#. clicked, allows a user to respond to the feedback +#. the user received on his or her openended problem +#. Translators: when "Respond to Feedback" is clicked, a survey +#. appears on which a user can respond to the feedback the user +#. received on an openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Respond to Feedback" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "How accurate do you find this feedback?" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "No Opinion" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Additional comments:" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Submit Feedback" +msgstr "" + +#. Translators: "Response" labels an area that contains the user's +#. Response to an openended problem. It is a noun. +#. Translators: "Response" labels a text area into which a user enters +#. his or her response to a prompt from an openended problem. +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Response" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Unanswered" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Skip Post-Assessment" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_combined_rubric.html +msgid "{num} point: {explanatory_text}" +msgid_plural "{num} points: {explanatory_text}" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/combinedopenended/openended/open_ended_error.html +msgid "There was an error with your submission. Please contact course staff." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "Rubric" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "" +"Select the criteria you feel best represents this submission in each " +"category." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "{num} point: {text}" +msgid_plural "{num} points: {text}" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/combinedopenended/selfassessment/self_assessment_hint.html +msgid "Please enter a hint below:" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohort groups" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Show cohorts" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohorts in the course" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add users by username or email. One per line or comma-separated." +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort members" +msgstr "" + +#: lms/templates/courseware/accordion.html +msgid "{chapter}, current chapter" +msgstr "" + +#: lms/templates/courseware/accordion.html +#: lms/templates/courseware/progress.html +msgid "due {date}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"The currently logged-in user account does not have permission to enroll in " +"this course. You may need to {start_logout_tag}log out{end_tag} then try the" +" register button again. Please visit the {start_help_tag}help page{end_tag} " +"for a possible solution." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "About {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "You are registered for this course" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View Courseware" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "This course is in your cart." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"Add {course.display_number_with_default} to Cart ({currency_symbol}{cost})" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Register for {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Overview" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Share with friends and family!" +msgstr "" + +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes Start" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes End" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Estimated Effort" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Prerequisites" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Additional Resources" +msgstr "" + +#. Translators: 'needs attention' is an alternative string for the +#. notification image that indicates the tab "needs attention". +#: lms/templates/courseware/course_navigation.html +msgid "needs attention" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/course_navigation.html +msgid "Staff view" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +msgid "Student view" +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from leading universities." +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from {university_name}." +msgstr "" + +#: lms/templates/courseware/courseware-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "{course_number} Courseware" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Return to Exam" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Course Navigation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Open Calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Input Field" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "" +"Use the arrow keys to navigate the tips or use the tab key to return to the " +"calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Hints" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Integers" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Decimals" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Scientific notation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Appending SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Supported SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Operators" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "parallel resistors function" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Functions" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Constants" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Euler's number" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "ratio of a circle's circumference to it's diameter" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Boltzmann constant" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "speed of light" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "freezing point of water in degrees Kelvin" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "fundamental charge" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculate" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Output Field" +msgstr "" + +#: lms/templates/courseware/error-message.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {link_to_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/grade_summary.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade summary" +msgstr "" + +#: lms/templates/courseware/grade_summary.html +msgid "Not implemented yet" +msgstr "" + +#: lms/templates/courseware/gradebook.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "Search students" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "{course_number} Course Info" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + +#: lms/templates/courseware/info.html lms/templates/courseware/info.html +msgid "Course Updates & News" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Handout Navigation" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Course Handouts" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Instructor Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Try New Beta Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Psychometrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Forum Admin" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "DataDump" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Manage Groups" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Metrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade Downloads" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Note: some of these buttons are known to time out for larger courses. We " +"have temporarily disabled those features for courses with more than " +"{max_enrollment} students. We are urgently working on fixing this issue. " +"Thank you for your patience as we continue working to improve the platform!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Export grades to remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"The assignments defined for this course should match the ones stored in the " +"gradebook, for this to work properly!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Assignment name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Course-specific grade adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Specify a particular problem in the course here by its url:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is " +"i4x://university/course/problem/problemname, then just provide the " +"problemname. If the location is " +"i4x://university/course/notaproblem/someothername, then provide " +"notaproblem/someothername.)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Then select an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"These actions run in the background, and status for active tasks will appear" +" in a table below. To see status for all tasks submitted for this problem, " +"click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student-specific grade inspection and adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Specify the {platform_name} email address or username of a student here:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Click this, and a link to student's progress page will appear below:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may also delete the entire state of a student for the specified module:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" a table below. To see status for all tasks submitted for this problem and " +"student, click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Select a problem and an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"User requires forum administrator privileges to perform administration " +"tasks. See instructor." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Explanation of Roles:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Moderators: can edit or delete any post, remove misuse flags, close " +"and re-open threads, endorse responses, and see posts from all cohorts (if " +"the course is cohorted). Moderators' posts are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Admins: have moderator privileges, as well as the ability to edit the " +"list of forum moderators (e.g. to appoint a new moderator). Admins' posts " +"are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Community TAs: have forum moderator privileges, and their posts are labelled" +" 'Community TA'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment Data" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Pull enrollment from remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Section:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enroll or un-enroll one or many students: enter emails, separated by new " +"lines or commas;" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Notify students by email" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Auto-enroll students when they activate" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Problem urlname:" +msgstr "" + +#. Translators: days_early_for_beta should not be translated +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enter usernames or emails for students who should be beta-testers, one per " +"line, or separated by commas. They will get to see course materials early, " +"as configured via the days_early_for_beta option in the course " +"policy." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send to:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Myself" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Staff and instructors" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "All (students, staff and instructors)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Subject: " +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Max 128 characters)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Please try not to email students more than once per week. Important things " +"to consider before sending:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you read over the email to make sure it says everything you want to " +"say?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you sent the email to yourself first to make sure you're happy with how" +" it's displayed, and that embedded links and images work properly?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "CAUTION!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Once the 'Send Email' button is clicked, your email will be queued for " +"sending." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "A queued email CANNOT be cancelled." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "No Analytics are available at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Students enrolled (historical count, includes those who have since " +"unenrolled):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students active in the last week:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student activity day by day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Score distribution for problems" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Max" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Points Earned (Num Students)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There is no data available to display at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"Loading the latest graphs for you; depending on your class size, this may " +"take a few minutes." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Count of Students that Opened a Subsection" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution per Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There are no problems in this section." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students answering correctly" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Number of students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Student distribution per country, all courses, Sep-12 to Oct-17, 1 server " +"(shown here as an example):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Pending Instructor Tasks" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Type" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task inputs" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Id" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Requester" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task State" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Duration (sec)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Progress" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "unknown" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Course errors" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "About {course_id}" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "Coming Soon" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "About {course_number}" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Access Courseware" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "You Are Registered" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Register for" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Registration Is Closed" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "News - MITx 6.002x" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "Updates to Discussion Posts You Follow" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{course_number} Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress for Student '{username}' ({email})" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{earned:.3n} of {total:.3n} possible points" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Problem Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Practice Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "No problem scores in this section" +msgstr "" + +#: lms/templates/courseware/syllabus.html +msgid "{course.display_number_with_default} Course Info" +msgstr "" + +#: lms/templates/courseware/welcome-back.html +msgid "" +"You were most recently in {section_link}. If you're done with that, choose " +"another section on the left." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Final course details are being wrapped up at this time. Your final standing " +"will be available shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final grade:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required for a {cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your verified {cert_name_long} is being held pending confirmation that the " +"issuance of your {cert_name_short} is in compliance with strict U.S. " +"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " +"mistakenly identified you as being connected with one of those countries, " +"please let us know by contacting {email}. If you would like a refund on your" +" {cert_name_long}, please contact our billing address {billing_email}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your {cert_name_long} is being held pending confirmation that the issuance " +"of your {cert_name_short} is in compliance with strict U.S. embargoes on " +"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " +"identified you as being connected with one of those countries, please let us" +" know by contacting {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your {cert_name_short} is Generating" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open/download a PDF document" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"This link will open/download a PDF document of your verified " +"{cert_name_long}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your ID Verified {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Complete our course feedback survey" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Cover Image" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Enrolled as: " +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +msgid "ID Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Completed - {end_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Started - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course has not yet started" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Starts - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Document your accomplishment!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Challenge Yourself!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Take this course as an ID-verified student." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can still sign up for an ID verified {cert_name_long} for this course. " +"If you plan to complete the whole course, it is a great way to recognize " +"your achievement. {link_start}Learn more about the verified " +"{cert_name_long}{link_end}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Upgrade to Verified Track" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Archived Course" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Course" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Are you sure you want to unregister from" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Are you sure you want to unregister from the verified {cert_name_long} track" +" of" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Email Settings" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "You need to re-verify to continue" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in the following courses, you need to " +"re-verify your identity:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "{course_name}: Re-verify by {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Notification Actions" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course_name}, you need to re-verify" +" your identity by {date}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Your re-verification failed" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"Your re-verification for {course_name} failed and you are no longer eligible" +" for a Verified Certificate. If you think this is in error, please contact " +"us at {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Dismiss" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verification now open for:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verify now:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Pending:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Denied:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Approved:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "ID-Verification Status" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Reviewed and Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Your verification status is good for one year after submission." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification photos have been submitted and will be reviewed shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Re-verify Yourself" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"If you fail to pass a verification attempt before your course ends, you will" +" not receive a verified certificate." +msgstr "" + +#: lms/templates/debug/run_python_form.html +msgid "Results:" +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "" +"Sorry! We can't find anything matching your search. Please try another " +"search." +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "There are no posts here yet. Be the first one to post!" +msgstr "" + +#: lms/templates/discussion/_discussion_course_navigation.html +#: lms/templates/discussion/_discussion_module.html +msgid "New Post" +msgstr "" + +#: lms/templates/discussion/_discussion_module.html +msgid "Show Discussion" +msgstr "" + +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Filter Topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "filter topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Show All Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Show Flagged Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Posts I'm Following" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "follow this post" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously to classmates" +msgstr "" + +#. Translators: This labels the selector for which group of students can view +#. a +#. post +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Make visible to:" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +msgid "My Cohort" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "new post title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: wiki/forms.py wiki/forms.py wiki/forms.py +msgid "Title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Enter your question or comment…" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Add post" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Create new post about:" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter List" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter discussion areas" +msgstr "" + +#: lms/templates/discussion/_recent_active_posts.html +msgid "Following" +msgstr "" + +#: lms/templates/discussion/_search_bar.html +msgid "Search posts" +msgstr "" + +#: lms/templates/discussion/_similar_posts.html +msgid "Hide" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Home" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Topics" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion topics; current selection is: " +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Search all discussions" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Sort by:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "date" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "votes" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "comments" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Show:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View All" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View as {name}" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Add A Response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Post a response:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "anonymous" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "• This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "follow" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow this post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Pin Thread" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Pinned" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "(this post is about %(courseware_title_linked)s)" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Edit post title" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment..." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "endorse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Delete Comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "-posted %(time_ago)s by" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"%(comments_count)s %(span_sr_open)scomments (%(unread_comments_count)s " +"unread comments)%(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(comments_count)s %(span_sr_open)scomments %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(votes_up_count)s%(span_sr_open)s votes %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "DISCUSSION HOME:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "HOW TO USE EDX DISCUSSIONS" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Find discussions" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Focus in on specific topics" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Search for specific posts " +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Sort by date, vote, or comments" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Engage with posts" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Upvote posts and good responses" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Forum Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow posts for updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Receive updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Toggle Notifications Setting" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"Check this box to receive an email digest once a day notifying you about " +"new, unread activity from posts you are following." +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid ", " +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s discussion started" +msgid_plural "%s discussions started" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/discussion/index.html +#: lms/templates/discussion/user_profile.html +msgid "Discussion - {course_number}" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "We're sorry" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "" +"The forums are currently undergoing maintenance. We'll have them back up " +"shortly!" +msgstr "" + +#: lms/templates/discussion/user_profile.html +msgid "User Profile" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Collapse discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "This thread has been pinned by course staff." +msgstr "" + +#: lms/templates/discussion/mustache/_pagination.mustache +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "…" +msgstr "" + +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + +#: lms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for {platform_name}! To activate your account, " +"please copy and paste this address into your web browser's address bar:" +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the about section of the {platform_name} Courses web site." +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the {platform_name} web site." +msgstr "" + +#: lms/templates/emails/activation_email_subject.txt +msgid "Your account for {platform_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Dear {full_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "" +"You have been invited to be a beta tester for {course_name} at {site_name} " +"by a member of the course staff." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {course_about_url} to join the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_allowedmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "This email was automatically sent from {site_name} to {email_address}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_subject.txt +msgid "You have been invited to a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us at" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us immediately. Contact information is listed at:" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "" + +#: lms/templates/emails/email_change.txt +msgid "" +"We received a request to change the e-mail associated with your " +"{platform_name} account from {old_email} to {new_email}. If this is correct," +" please confirm your new e-mail address by visiting:" +msgstr "" + +#: lms/templates/emails/email_change_subject.txt +msgid "Request to change {platform_name} account e-mail" +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "Dear student," +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"You have been invited to join {course_name} at {site_name} by a member of " +"the course staff." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "To access the course visit {course_url} and login." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To access the course visit {course_about_url} and register for the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To finish your registration, please visit {registration_url} and fill out " +"the registration form making sure to use {email_address} in the E-mail " +"field." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, you will see " +"{course_name} listed on your dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, visit " +"{course_about_url} to join the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedsubject.txt +msgid "You have been invited to register for {course_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "" +"You have been enrolled in {course_name} at {site_name} by a member of the " +"course staff. The course should now appear on your {site_name} dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "This email was automatically sent from {site_name} to {full_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledsubject.txt +msgid "You have been enrolled in {course_name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Hi {name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"Your payment was successful. You will see the charge below on your next " +"credit or debit card statement." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"The charge will show up on your statement under the company name " +"{merchant_name}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"If you have billing questions, please read the FAQ ({faq_url}) or contact " +"{billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "If you have billing questions, please contact {billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "-The {platform_name} Team" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Your order number is: {order_number}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "The items in your order are:" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Quantity - Description - Price" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/shoppingcart/receipt.html +msgid "#:" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the tech support at" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the course staff at ta@edx.org." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +msgid "" +"You have been removed as a beta tester for {course_name} at {site_name} by a" +" member of the course staff. The course will remain on your dashboard, but " +"you will no longer be part of the beta testing group." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Your other courses have not been affected." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_subject.txt +msgid "You have been removed from a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "Dear Student," +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "" +"You have been un-enrolled from course {course_name} by a member of the " +"course staff. Please disregard the invitation previously sent." +msgstr "" + +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "" +"You have been un-enrolled in {course_name} at {site_name} by a member of the" +" course staff. The course will no longer appear on your {site_name} " +"dashboard." +msgstr "" + +#: lms/templates/emails/unenroll_email_subject.txt +msgid "You have been un-enrolled from {course_name}" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "{course_number} Staff Grading" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"This is the list of problems that currently need to be graded in order to " +"train AI grading and create calibration essays for peer grading. Each " +"problem needs to be treated separately, and we have indicated the number of " +"student submissions that need to be graded. You can grade more than the " +"minimum required number of submissions--this will improve the accuracy of AI" +" grading, though with diminishing returns. You can see the current accuracy " +"of AI grading in the problem view." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Problem List" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"Please note that when you see a submission here, it has been temporarily " +"removed from the grading pool. The submission will return to the grading " +"pool after 30 minutes without any grade being submitted. Hitting the back " +"button will result in a 30 minute wait to be able to grade this submission " +"again." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Prompt" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "(Hide)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Student Response" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Written Feedback" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Feedback for student (optional)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Flag as inappropriate content for later review" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Skip" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Score Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"The chart below displays the score distribution for each standard problem in" +" your class, specified by the problem's url name." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"Scores are shown without weighting applied, so if your problem contains 2 " +"questions, it will display as having a total of 2 points." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Loading problem list..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Gender Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Enrollment Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Total number of enrollees (instructors, staff members, and students)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Basic Course Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Display Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course started?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Yes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course ended?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Grade Cutoffs:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "The status for any active tasks appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Warnings" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 +msgid "" +"For large courses, generating this report may take several hours. Please be " +"patient and do not click the button multiple times. Clicking the button " +"multiple times will significantly slow the grade generation process." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The report is generated in the background, meaning it is OK to navigate away" +" from this page while your report is generating." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Grade Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports Available for Download" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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. +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Note: To keep student data secure, you cannot save or email these " +"links for direct access. Copies of links expire within 5 minutes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Individual due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"In this section, you have the ability to grant extensions on specific units " +"to individual students. Please note that the latest date is always taken; " +"you cannot use this tool to make an assignment due earlier for a particular " +"student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Choose the graded unit:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the extension due date and time (in UTC; please specify MM/DD/YYYY " +"HH:MM)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Change due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Viewing granted extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Here you can see what extensions have been granted on particular units or " +"for a particular student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Choose a graded unit and click the button to obtain a list of all students " +"who have extensions for the given unit." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List all students with due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Specify a specific student to see all of that student's extensions." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List date extensions for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Resetting extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Resetting a problem's due date rescinds a due date extension for a student " +"on a particular unit. This will revert the due date for the student back to " +"the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reset due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Back to Standard Dashboard" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "section_display_name" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"You will not get notification for emails that bounce, so please double-check" +" spelling." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Email Addresses/Usernames" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Auto Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not yet registered for " +"{platform_name} will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is left unchecked, users who have not yet registered" +" for {platform_name} will not be enrolled, but will be allowed to enroll " +"once they make an account." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Notify users by email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users will receive an email " +"notification." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Unenroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Beta Tester Addition" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Note: Users must have an activated {platform_name} account before they can " +"be enrolled as a beta tester." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add beta testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Remove beta testers" +msgstr "" + +#. Translators: an "Administration List" is a list, such as Course Staff, that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Administration List Management" +msgstr "" + +#. Translators: an "Administrator Group" is a group, such as Course Staff, +#. that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Select an Administrator Group:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Getting available lists..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Staff cannot modify staff or beta tester lists. To modify these lists, " +"contact your instructor and ask them to add you as an instructor for staff " +"and beta lists, or a discussion admin for discussion management." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Course Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course staff can help you manage limited aspects of your course. Staff can " +"enroll and unenroll students, as well as modify their grades and see all " +"course data. Course staff are not automatically given access to Studio and " +"will not be able to edit your course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Instructors" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Instructors are the core administration of your course. Instructors can add " +"and remove course staff, as well as administer discussion access." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Instructor" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Beta Testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Beta testers can see course content before the rest of the students. They " +"can make sure that the content works, but have no additional privileges." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Beta Tester" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Admins" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion admins can edit or delete any post, clear misuse flags, close and" +" re-open threads, endorse responses, and see posts from all cohorts. They " +"CAN add/delete other moderators and their posts are marked as 'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Discussion Admin" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Moderators" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion moderators can edit or delete any post, clear misuse flags, close" +" and re-open threads, endorse responses, and see posts from all cohorts. " +"They CANNOT add/delete other moderators and their posts are marked as " +"'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Moderator" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Community TAs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Community TA's are members of the community whom you deem particularly " +"helpful on the discussion boards. They can edit or delete any post, clear " +"misuse flags, close and re-open threads, endorse responses, and see posts " +"from all cohorts. Their posts are marked 'Community TA'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Community TA" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Reload Graphs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Count of Students Opened a Subsection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send Email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Message:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Please try not to email students more than once per week. Before sending " +"your email, consider:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Email actions run in the background. The status for any active tasks - " +"including email tasks - appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"To see the status for all bulk email tasks ever submitted for this course, " +"click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade inspection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Email or Username" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Click this link to view the student's progress page:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Progress Page" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade adjustment" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem urlname" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is {location1}, then just provide the " +"{urlname1}. If the location is {location2}, then provide {urlname2}.)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Next, select an action to perform for the given user and problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset Student Attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Student Submission" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may also delete the entire state of a student for the specified problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Delete Student State for Problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" the 'Pending Instructor Tasks' table. To see status for all tasks submitted" +" for this problem and student, click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Then select an action" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset ALL students' attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore ALL students' problem submissions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"The above actions run in the background, and status for active tasks will " +"appear in a table on the Course Info tab. To see status for all tasks " +"submitted for this problem, click on this button" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Problem" +msgstr "" + +#: lms/templates/licenses/serial_numbers.html +msgid "None Available" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Change Preferred Language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Please choose your preferred language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Save Language Settings" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "" +"Don't see your preferred language? {link_start}Volunteer to become a " +"translator!{link_end}" +msgstr "" + +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/modal/accessible_confirm.html +msgid "modal open" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "{course_number} Combined Notifications" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Open Ended Console" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Here are items that could potentially need your attention." +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "No items require attention at the moment." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "{course_number} Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "" +"Here are a list of open ended problems for this course that have been " +"flagged by students as potentially inappropriate." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "No flagged problems exist." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Unflag" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Ban" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "{course_number} Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Here is a list of open ended problems for this course." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "You have not attempted any open ended problems yet." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Problem Name" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Grader Type" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"\n" +"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" +"{ul_tag}\n" +"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" +"{li_tag}The instructor needs to score the essays that are used to help you better understand the grading\n" +"criteria.{end_li_tag}\n" +"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"Here are a list of problems that need to be peer graded for this course." +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Graded" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Available" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Required" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "No due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "" +"The due date has passed, and peer grading for this problem is closed at this" +" time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "The due date has passed, and peer grading is closed at this time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to Grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Please include some written feedback as well." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"This submission has explicit, offensive, or (I suspect) plagiarized content." +" " +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "How did I do?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Continue" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Ready to grade!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You have finished learning to grade, which means that you are now ready to " +"start grading." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start Grading!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "You have not yet finished learning to grade this problem." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You will now be shown a series of instructor-scored essays, and will be " +"asked to score them yourself." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"Once you can score the essays similarly to an instructor, you will be ready " +"to grade your peers." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Are you sure that you want to flag this submission?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You are about to flag a submission. You should only flag a submission that " +"contains explicit, offensive, or (suspected) plagiarized content. If the " +"submission is not addressed to the question or is incorrect, you should give" +" it a score of zero and accompanying feedback instead of flagging it." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Remove Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Keep Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Go Back" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "Thanks For Registering!" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "" +"Your account is not active yet. An activation link has been sent to {email}," +" along with instructions for activating your account." +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Activation Complete!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Account already active!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "You can now {link_start}log in{link_end}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Activation Invalid" +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "" +"Something went wrong. Check to make sure the URL you went to was correct -- " +"e-mail programs will sometimes split it into two lines. If you still have " +"issues, e-mail us to let us know what happened at {email}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Or you can go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "Password reset successful" +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "" +"We've e-mailed you instructions for setting your password to the e-mail " +"address you submitted. You should be receiving it shortly." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Data" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "These reports are delimited by start and end dates." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"These reports are delimited alphabetically by university name. i.e., " +"generating a report with 'Start Letter' A and 'End Letter' C will generate " +"reports for all universities starting with A, B, and C." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Letter: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Letter: " +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "Payment Error" +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "There was an error processing your order!" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your Shopping Cart" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your selected items:" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Unit Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Total Amount" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "You have selected no items for purchase." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Register for [Course Name] | Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid " () Electronic Receipt" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Order #" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Date:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Items ordered:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Qty" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Note: items with strikethough like " +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid " have been refunded." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Billed To:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are now registered for: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Registered as: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Your Progress" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Current Step: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Intro" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take ID Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Review" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Make Payment" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Confirmation" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Congratulations! You are now verified on " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"You are now registered as a verified student! Your registration details are " +"below." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are registered for:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "A list of courses you have just registered for as a verified student" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Options" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Starts: {start_date}" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to Course" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to your Dashboard" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Verified Status" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"We have received your identification details to verify your identity. If " +"there is a problem with any of the items, we will contact you to resubmit. " +"You can now register for any of the verified certificate courses this " +"semester without having to re-verify." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"The professor will ask you to periodically submit a new photo to verify your" +" work during the course (usually at exam times)." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Payment Details" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"Please print this page for your records; it serves as your receipt. You will" +" also receive an email with the same information." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Order No." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Total" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "this" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Billed To" +msgstr "" + +#: lms/templates/static_templates/404.html +msgid "" +"The page that you were looking for was not found. Go back to the " +"{link_start}homepage{link_end} or let us know about any pages that may have " +"been moved at {email}." +msgstr "" + +#: lms/templates/static_templates/about.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/faq.html +#: lms/templates/static_templates/help.html +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/tos.html +msgid "" +"This page left intentionally blank. It is not used by edx.org but is left " +"here for possible use by installations of Open edX." +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "This Course Unavailable In Your Country" +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "" +"Our system indicates that you are trying to access an edX course from an IP " +"address associated with a country currently subjected to U.S. economic and " +"trade sanctions. Unfortunately, at this time edX must comply with export " +"controls, and we cannot allow you to access this particular course. Feel " +"free to browse our catalogue to find other courses you may be interested in " +"taking." +msgstr "" + +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/honor.html +msgid "Honor Code" +msgstr "" + +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/media-kit.html +msgid "Media Kit" +msgstr "" + +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/press.html +msgid "In the Press" +msgstr "" + +#: lms/templates/static_templates/server-down.html +msgid "Currently the {platform_name} servers are down" +msgstr "" + +#: lms/templates/static_templates/server-down.html +#: lms/templates/static_templates/server-overloaded.html +msgid "" +"Our staff is currently working to get the site back up as soon as possible. " +"Please email us at {tech_support_email} to report any problems or downtime." +msgstr "" + +#: lms/templates/static_templates/server-error.html +msgid "There has been a 500 error on the {platform_name} servers" +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}." +msgstr "" + +#: lms/templates/static_templates/server-overloaded.html +msgid "Currently the {platform_name} servers are overloaded" +msgstr "" + +#: lms/templates/university_profile/edge.html +#: lms/templates/university_profile/edge.html +msgid "edX edge" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Log in to your courses" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Register for classes" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Take free online courses from today's leading universities." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Edit Your Name" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "The following error occurred while editing your name:" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "" +"To uphold the credibility of {platform} certificates, all name changes will " +"be logged and recorded." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Change my name" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Why Do I Need to Re-Verify?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity. We will send the new photo to be matched up with the photo of the " +"original ID you submitted when you signed up for the course." +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Having Technical Trouble?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Have questions?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please read {a_start}our FAQs to view common questions about our " +"certificates{a_end}." +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are upgrading your registration for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are re-verifying for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are registering for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Upgrading to:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Re-verifying for:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Registering as: " +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Change your mind?" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "You can always continue to audit the course without verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You can always {a_start} audit the course for free {a_end} without " +"verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "Technical Requirements" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)." +msgstr "" + +#: lms/templates/verify_student/face_upload.html +msgid "Edit Your Full Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Re-Verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Webcam Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Flash Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have Flash installed. {a_start} Get Flash {a_end} to " +"continue your registration." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Error submitting your images" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Oops! Something went wrong. Please confirm your details and try again." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with your " +"original verification." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Don't see your picture? Make sure to allow your browser to use your camera " +"when it asks for permission." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Take photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Looks good" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Tips on taking a successful photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your face is well-lit" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be sure your entire face is inside the frame" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Can we match the photo you took with the one on your ID?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once in position, use the camera button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your picture" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Use the checkmark button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "once you are happy with the photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Common Questions" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need my photo?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"As part of the verification process, we need your photo to confirm that you " +"are you." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "What do you do with this picture?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "We only use it to verify your identity. It is not displayed anywhere." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches the ID " +"you originally submitted. We will also use this as the name on your " +"certificate." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Edit your name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Once you verify your photo looks good and your name is correct, you can " +"finish your re-verification and return to your course. Note: You " +"will not have another chance to re-verify." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Yes! You can confirm my identity with this information." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Submit photos & re-verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Verification Submission Confirmation" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Your Credentials Have Been Updated" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"We have received your re-verification details and submitted them for review." +" Your dashboard will show the notification status once the review is " +"complete." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"Please note: The professor may ask you to re-verify again at other key " +"points in the course." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "Complete your other re-verifications" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Return to where you left off" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Reverification Status" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You are in the ID Verified track" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following courses:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Re-verify by {date}" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following course:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You have no re-verifications at present." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "The status of your submitted re-verifications:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Failed" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Don't want to re-verify right now?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Why do I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity by submitting a new photo of your face. We will send the new photo " +"to be matched up with the photo of the original ID you submitted when you " +"signed up for the course. If you are taking multiple courses, you may need " +"to re-verify multiple times, once for every important point in each course " +"you are taking as a verified student." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What will I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because you are just confirming that you are still you, the only thing you " +"will need to do to re-verify is to submit a new photo of your face with " +"your webcam. The process is quick and you will be brought back to where " +"you left off so you can keep on learning." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"If you changed your name during the semester and it no longer matches the " +"original ID you submitted, you will need to re-edit your name to match as " +"well." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What if I have trouble with my re-verification?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because of the short time that re-verification is open, you will not" +" be able to correct a failed verification. If you think there was " +"an error in the review, please contact us at {email}" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Verification" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Please Resubmit Your Verification Information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"There was an error with your previous verification. In order proceed in the " +"verified certificate of achievement track of your current courses, please " +"complete the following steps." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with the " +"picture on your ID." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your photo looks good, you can move on to step 2." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Go to Step 2: Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show Us Your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your ID so we can match it with your " +"photo and the name on your account." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your ID is well-lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Acceptable IDs include drivers licenses, passports, or other goverment-" +"issued IDs that include your name and photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check that there isn't any glare" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Ensure that you can see your photo and read your name" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Try to keep your fingers at the edge to avoid covering important information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need a photo of my ID?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We need to match your ID with your photo and name to confirm that you are " +"you." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We encrypt it and send it to our secure authorization service for review. We" +" use the highest levels of security and do not save the photo or information" +" anywhere once the match has been completed." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your ID photo looks good, you can move on to step 3." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 3: Review Your Info" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Verify Your Submission" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure we can verify your identity with the photos and information below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Review the Photos You've Re-Taken" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Please review the photos and verify that they meet the requirements listed " +"below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo above needs to meet the following requirements:" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be well lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show your whole face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo on your ID must match the photo of your face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be readable (not too far away, no glare)" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The name on your ID must match the name on your account below" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Photos don't meet the requirements?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake Your Photos" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches your ID. " +"We will also use this as the name on your certificate." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"Once you verify your details match the requirements, you can move onto to " +"confirm your re-verification submisssion." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Yes! My details all match." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Upgrade Your Registration for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/verified.html +msgid "Register for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue registering, or select to {a_start} audit " +"the course for free {a_end} without verifying." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Error processing your order" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Oops! Something went wrong. Please confirm your details again and click the " +"button to move on to payment. If you are still having trouble, please try " +"again later." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "What if my camera isn't working?" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 2: Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Review the Photos You've Taken" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Contribution Level" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Please confirm your contribution for this course (min. $" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Once you verify your details match the requirements, you can move on to step" +" 4, payment on our secure server." +msgstr "" + +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course}, you need to re-verify your" +" identity by {date}. Go to URL." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +msgid "" +"We've captured your re-submitted information and will review it to verify " +"your identity shortly. You should receive an update to your veriication " +"status within 1-2 days. In the meantime, you still have access to all of " +"your course content." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Return to Your Dashboard" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Re-Verification Failed" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "" +"Your re-verification was submitted after the re-verification deadline, and " +"you can no longer be re-verified." +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Please contact support if you believe this message to be in error." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Upgrade Your Registration for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Register for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "You need to activate your edX account before proceeding" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please check your email for further instructions on activating your new " +"account." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Upgrade" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to upgrade to being an ID verified " +"student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Register" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to register as an ID verified student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Activate Your Account" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Check your email" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"you need an active edX account before registering - check your email for " +"instructions" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Identification" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A photo identification document" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"a drivers license, passport, or other goverment or school-issued ID with " +"your name and picture on it" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Webcam" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A webcam and a modern browser" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " +"{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please make sure your browser is updated to the most recent version possible" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Credit or Debit Card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A major credit or debit card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Visa, Master Card, American Express, Discover, Diners Club, JCB with " +"Discover logo" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always continue to audit this course instead." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always {a_start}audit this course instead{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Go to Step 1: Take my Photo" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "ID Verification" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You've Been Verified Previously" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "" +"We've already verified your identity (through the photos of you and your ID " +"you provided earlier). You can proceed to make your secure payment and " +"complete registration." +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You have decided to pay $ " +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}(active){span_end}" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "Changes" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}active{span_end}" +msgstr "" + +#: lms/templates/wiki/includes/breadcrumbs.html +msgid "Add article" +msgstr "" + +#: cms/templates/404.html +msgid "The page that you were looking for was not found." +msgstr "" + +#: cms/templates/404.html +msgid "" +"Go back to the {homepage} or let us know about any pages that may have been " +"moved at {email}." +msgstr "" + +#: cms/templates/500.html +msgid "Studio Server Error" +msgstr "" + +#: cms/templates/500.html +msgid "The Studio servers encountered an error" +msgstr "" + +#: cms/templates/500.html +msgid "" +"An error occurred in Studio and the page could not be loaded. Please try " +"again in a few moments." +msgstr "" + +#: cms/templates/500.html +msgid "" +"We've logged the error and our staff is currently working to resolve this " +"error as soon as possible." +msgstr "" + +#: cms/templates/500.html +msgid "If the problem persists, please email us at {email_link}." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +#: cms/templates/activation_invalid.html +msgid "Studio Account Activation" +msgstr "" + +#: cms/templates/activation_active.html +msgid "Your account is already active" +msgstr "" + +#: cms/templates/activation_active.html +msgid "" +"This account, set up using {0}, has already been activated. Please sign in " +"to start working within edX Studio." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +msgid "Sign into Studio" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "Your account activation is complete!" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "" +"Thank you for activating your account. You may now sign in and start using " +"edX Studio to author courses." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Your account activation is invalid" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"We're sorry. Something went wrong with your activation. Check to make sure " +"the URL you went to was correct — e-mail programs will sometimes split" +" it into two lines." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"If you still have issues, contact edX Support. In the meatime, you can also " +"return to" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Contact edX Support" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/widgets/header.html +msgid "Files & Uploads" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Uploading…" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +msgid "Choose File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/asset_index.html +msgid "Upload New File" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Load Another File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/course_info.html +#: cms/templates/edit-tabs.html cms/templates/overview.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Content" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/course_info.html cms/templates/edit-tabs.html +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/textbooks.html +msgid "Page Actions" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + +#: cms/templates/asset_index.html +msgid "What files are listed here?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"In addition to the files you upload on this page, any files that you add to " +"the course appear in this list. These files include your course image, " +"textbook chapters, and files that appear on your Course Handouts sidebar." +msgstr "" + +#: cms/templates/asset_index.html +msgid "File URLs" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the Embed URL value to link to the file or image from a component, a" +" course update, or a course handout." +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the External URL value to reference the file or image from outside " +"of your course. Do not use the External URL as a link value within your " +"course." +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/overview.html cms/templates/settings_graders.html +msgid "What can I do on this page?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You can upload new files or view, download, or delete existing files. You " +"can lock a file so that people who are not enrolled in your course cannot " +"access that file." +msgstr "" + +#: cms/templates/asset_index.html +msgid "Your file has been deleted." +msgstr "" + +#: cms/templates/asset_index.html +msgid "close alert" +msgstr "" + +#: cms/templates/checklists.html cms/templates/export.html +#: cms/templates/export_git.html cms/templates/import.html +#: cms/templates/widgets/header.html +msgid "Tools" +msgstr "" + +#: cms/templates/checklists.html +msgid "Course Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "Current Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "What are course checklists?" +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Course checklists are tools to help you understand and keep track of all the" +" steps necessary to get your course ready for students." +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Any changes you make to these checklists are saved automatically and are " +"immediately visible to other course team members." +msgstr "" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +msgid "Duplicate" +msgstr "" + +#: cms/templates/component.html +msgid "Duplicate this component" +msgstr "" + +#: cms/templates/component.html +msgid "Delete this component" +msgstr "" + +#: cms/templates/component.html cms/templates/container_xblock_component.html +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/overview.html cms/templates/overview.html +msgid "Drag to reorder" +msgstr "" + +#: cms/templates/container.html +msgid "Container" +msgstr "" + +#: cms/templates/container.html +msgid "This page has no content yet." +msgstr "" + +#: cms/templates/container.html cms/templates/container.html +msgid "Publishing Status" +msgstr "" + +#: cms/templates/container.html +msgid "Published" +msgstr "" + +#: cms/templates/container.html +msgid "" +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." +msgstr "" + +#: cms/templates/course_info.html cms/templates/course_info.html +msgid "Course Updates" +msgstr "" + +#: cms/templates/course_info.html +msgid "New Update" +msgstr "" + +#: cms/templates/course_info.html +msgid "" +"Use course updates to notify students of important dates or exams, highlight" +" particular discussions in the forums, announce schedule changes, and " +"respond to student questions. You add or edit updates in HTML." +msgstr "" + +#. Translators: Pages refer to the tabs that appear in the top navigation of +#. each course. +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/export.html cms/templates/widgets/header.html +msgid "Pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "New Page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit_subsection.html +#: cms/templates/index.html cms/templates/overview.html +#: cms/templates/unit.html +msgid "View Live" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Show this page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "Show/hide page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "This page cannot be reordered" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "You can add additional custom pages to your course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Add a New Page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "What are pages?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages are listed horizontally at the top of your course. Default pages " +"(Courseware, Course info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages that you create." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Custom pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"You can create and edit custom pages to provide students with additional " +"course content. For example, you can create pages for the grading policy, " +"course slides, and a course calendar. " +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "How do pages look to students in my course?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Students see the default and custom pages at the top of your course and use " +"these links to navigate." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "See an example" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Pages in Your Course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Preview of Pages in your course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages appear in your course's top navigation bar. The default pages " +"(Courseware, Course Info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages." +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/howitworks.html +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "close modal" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "CMS Subsection" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/unit.html +msgid "Display Name:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Units:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Subsection Settings" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Day" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Time" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/edit_subsection.html +#: cms/templates/overview.html +msgid "Coordinated Universal Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "UTC" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "" +"The date above differs from the release date of {name}, which is unset." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "The date above differs from the release date of {name} - {start_time}" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Sync to {name}." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Graded as:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Set a due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Day" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Remove due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Preview Drafts" +msgstr "" + +#: cms/templates/error.html +msgid "Internal Server Error" +msgstr "" + +#: cms/templates/error.html +msgid "The Page You Requested Page Cannot be Found" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. We couldn't find the Studio page you're looking for. You may " +"want to return to the Studio Dashboard and try again. If you are still " +"having problems accessing things, please feel free to {link_start}contact " +"Studio support{link_end} for further help." +msgstr "" + +#: cms/templates/error.html cms/templates/error.html +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Use our feedback tool, Tender, to share your feedback" +msgstr "" + +#: cms/templates/error.html +msgid "The Server Encountered an Error" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. There was a problem with the server while trying to process " +"your last request. You may want to return to the Studio Dashboard or try " +"this request again. If you are still having problems accessing things, " +"please feel free to {link_start}contact Studio support{link_end} for further" +" help." +msgstr "" + +#: cms/templates/error.html +msgid "Back to dashboard" +msgstr "" + +#: cms/templates/export.html cms/templates/export.html +msgid "Course Export" +msgstr "" + +#: cms/templates/export.html +msgid "About Exporting Courses" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export courses and edit them outside of Studio. The exported file is" +" a .tar.gz file (that is, a .tar file compressed with GNU Zip) that contains" +" the course structure and content. You can also re-import courses that " +"you've exported." +msgstr "" + +#: cms/templates/export.html +msgid "Export My Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Export Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}exported with{em_end} your course:" +msgstr "" + +#: cms/templates/export.html +msgid "Course Content (all Sections, Sub-sections, and Units)" +msgstr "" + +#: cms/templates/export.html +msgid "Course Structure" +msgstr "" + +#: cms/templates/export.html +msgid "Individual Problems" +msgstr "" + +#: cms/templates/export.html +msgid "Course Assets" +msgstr "" + +#: cms/templates/export.html +msgid "Course Settings" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}not exported{em_end} with your course:" +msgstr "" + +#: cms/templates/export.html +msgid "User Data" +msgstr "" + +#: cms/templates/export.html +msgid "Course Team Data" +msgstr "" + +#: cms/templates/export.html +msgid "Forum/discussion Data" +msgstr "" + +#: cms/templates/export.html +msgid "Certificates" +msgstr "" + +#: cms/templates/export.html +msgid "Why export a course?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your course directly, outside of Studio. You" +" may want to create a backup copy of your course. Or, you may want to create" +" a copy of your course that you can later import into another course " +"instance and customize." +msgstr "" + +#: cms/templates/export.html +msgid "What content is exported?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are exported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, is not exported." +msgstr "" + +#: cms/templates/export.html +msgid "Opening the downloaded file" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the course.xml file, as well as subfolders that contain course" +" content." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git" +msgstr "" + +#: cms/templates/export_git.html cms/templates/export_git.html +#: cms/templates/widgets/header.html +msgid "Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "About Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "Use this to export your course to its git repository." +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"This will then trigger an automatic update of the main LMS site and update " +"the contents of your course visible there to students if automatic git " +"imports are configured." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git:" +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"giturl must be defined in your course settings before you can export to git." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Failed" +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Succeeded" +msgstr "" + +#: cms/templates/export_git.html +msgid "Your course:" +msgstr "" + +#: cms/templates/export_git.html +msgid "Course git url:" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome to" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio helps manage your courses online, so you can focus on teaching them" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Studio's Many Features" +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "Studio Helps You Keep Your Courses Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Keeping Your Course Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"The backbone of your course is how it is organized. Studio offers an " +"Outline editor, providing a simple hierarchy and easy drag " +"and drop to help you and your students stay organized." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple Organization For Content" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio uses a simple hierarchy of sections and " +"subsections to organize your content." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Change Your Mind Anytime" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Draft your outline and build content anywhere. Simple drag and drop tools " +"let your reorganize quickly." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Go A Week Or A Semester At A Time" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Build and release sections to your students incrementally. " +"You don't have to have it all done at once." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html +msgid "Learning is More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio lets you weave your content together in a way that reinforces " +"learning — short video lectures interleaved with exercises and more. " +"Insert videos and author a wide variety of exercise types with just a few " +"clicks." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Create Learning Pathways" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Help your students understand a small interactive piece at a time with " +"multimedia, HTML, and exercises." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work Visually, Organize Quickly" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Work visually and see exactly what your students will see. Reorganize all " +"your content with drag and drop." +msgstr "" + +#: cms/templates/howitworks.html +msgid "A Broad Library of Problem Types" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"It's more than just multiple choice. Studio has nearly a dozen types of " +"problems to challenge your learners." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "" +"Studio Gives You Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio works like web applications you already know, yet understands how you" +" build curriculum. Instant publishing to the web when you want it, " +"incremental release when it makes sense. And with co-authors, you can have a" +" whole team building a course, together." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Instant Changes" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Caught a bug? No problem. When you want, your changes to live when you hit " +"Save." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Release-On Date Publishing" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"When you've finished a section, pick when you want it to go" +" live and Studio takes care of the rest. Build your course incrementally." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work in Teams" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Co-authors have full access to all the same authoring tools. Make your " +"course better through a team effort." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up for Studio Today!" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up & Start Making an edX Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Already have a Studio Account? Sign In" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Outlining Your Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simple two-level outline to organize your couse. Drag and drop, and see your" +" course at a glance." +msgstr "" + +#: cms/templates/howitworks.html +msgid "More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Quickly create videos, text snippets, inline discussions, and a variety of " +"problem types." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Publishing on Date" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simply set the date of a section or subsection, and Studio will publish it " +"to your students for you." +msgstr "" + +#: cms/templates/html_error.html +msgid "We're having trouble rendering your component" +msgstr "" + +#: cms/templates/html_error.html +msgid "" +"Students will not be able to access this component. Re-edit your component " +"to fix the error." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Course Import" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a course before continuing. Content of the " +"imported course replaces all the content of this course. {em_start}You " +"cannot undo a course import{em_end}. We recommend that you first export the " +"current course, so you have a backup copy of it." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "" +"The course that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " +"It may also contain other files." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your course until the import operation has completed." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Course Content" +msgstr "" + +#: cms/templates/import.html +msgid "Choose a File to Import" +msgstr "" + +#: cms/templates/import.html +msgid "File Chosen:" +msgstr "" + +#: cms/templates/import.html +msgid "Replace my course with the one above" +msgstr "" + +#: cms/templates/import.html +msgid "Course Import Status" +msgstr "" + +#: cms/templates/import.html +msgid "Uploading" +msgstr "" + +#: cms/templates/import.html +msgid "Transferring your file to our servers" +msgstr "" + +#: cms/templates/import.html +msgid "Unpacking" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Expanding and preparing folder/file structure (You can now leave this page " +"safely, but avoid making drastic changes to content until this import is " +"complete)" +msgstr "" + +#: cms/templates/import.html +msgid "Verifying" +msgstr "" + +#: cms/templates/import.html +msgid "Reviewing semantics, syntax, and required data" +msgstr "" + +#: cms/templates/import.html +msgid "Updating Course" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this course. This may take a while " +"with larger courses." +msgstr "" + +#: cms/templates/import.html +msgid "Success" +msgstr "" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this course" +msgstr "" + +#: cms/templates/import.html +msgid "View Updated Outline" +msgstr "" + +#: cms/templates/import.html +msgid "Why import a course?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"You may want to run a new version of an existing course, or replace an " +"existing course altogether. Or, you may have developed a course outside " +"Studio." +msgstr "" + +#: cms/templates/import.html +msgid "What content is imported?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are imported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, remains the same as it was in the existing course." +msgstr "" + +#: cms/templates/import.html +msgid "Warning: Importing while a course is running" +msgstr "" + +#: cms/templates/import.html +msgid "" +"If you perform an import while your course is running, and you change the " +"URL names (or url_name nodes) of any Problem components, the student data " +"associated with those Problem components may be lost. This data includes " +"students' problem scores." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error during the upload process." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while unpacking the file." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while verifying the file you submitted." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while importing the new course to our database." +msgstr "" + +#: cms/templates/import.html +msgid "Your import has failed." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Choose new file" +msgstr "" + +#: cms/templates/import.html +msgid "Your import is in progress; navigating away will abort it." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +#: cms/templates/widgets/header.html +msgid "My Courses" +msgstr "" + +#: cms/templates/index.html +msgid "New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Email staff to create course" +msgstr "" + +#: cms/templates/index.html +msgid "Welcome, {0}!" +msgstr "" + +#: cms/templates/index.html +msgid "Here are all of the courses you currently have access to in Studio:" +msgstr "" + +#: cms/templates/index.html +msgid "You currently aren't associated with any Studio Courses." +msgstr "" + +#: cms/templates/index.html +msgid "Please correct the highlighted fields below." +msgstr "" + +#: cms/templates/index.html +msgid "Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Required Information to Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. Introduction to Computer Science" +msgstr "" + +#: cms/templates/index.html +msgid "The public display name for your course." +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +msgid "Organization" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. UniversityX or OrganizationX" +msgstr "" + +#: cms/templates/index.html +msgid "The name of the organization sponsoring the course." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed." +msgstr "" + +#: cms/templates/index.html +msgid "" +"This cannot be changed, but you can set a different display name in Advanced" +" Settings later." +msgstr "" + +#: cms/templates/index.html +msgid "e.g. CS101" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The unique number that identifies your course within your organization." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed and it cannot be changed." +msgstr "" + +#: cms/templates/index.html +msgid "Course Run" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. 2014_T1" +msgstr "" + +#: cms/templates/index.html +msgid "The term in which your course will run." +msgstr "" + +#: cms/templates/index.html +msgid "Create" +msgstr "" + +#: cms/templates/index.html +msgid "Course Run:" +msgstr "" + +#: cms/templates/index.html +msgid "Are you staff on an existing Studio course?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"You will need to be added to the course in Studio by the course creator. " +"Please get in touch with the course creator or administrator for the " +"specific course you are helping to author." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Create Your First Course" +msgstr "" + +#: cms/templates/index.html +msgid "Your new course is just a click away!" +msgstr "" + +#: cms/templates/index.html +msgid "Becoming a Course Creator in Studio" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team will " +"evaluate your request and provide you feedback within 24 hours during the " +"work week." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status:" +msgstr "" + +#: cms/templates/index.html +msgid "Request the Ability to Create Courses" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is has " +"completed evaluating your request." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator request is:" +msgstr "" + +#: cms/templates/index.html +msgid "Denied" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request did not meet the criteria/guidelines specified by edX Staff." +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is " +"currently evaluating your request." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request is currently being reviewed by edX staff and should be updated " +"shortly." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Need help?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"If you are new to Studio and having trouble getting started, there are a few" +" things that may be of help:" +msgstr "" + +#: cms/templates/index.html +msgid "Get started by reading Studio's Documentation" +msgstr "" + +#: cms/templates/index.html +msgid "Request help with Studio" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Can I create courses in Studio?" +msgstr "" + +#: cms/templates/index.html +msgid "In order to create courses in Studio, you must" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX staff to help you create a course" +msgstr "" + +#: cms/templates/index.html +msgid "" +"In order to create courses in Studio, you must have course creator " +"privileges to create your own course." +msgstr "" + +#: cms/templates/index.html +msgid "Your request to author courses in studio has been denied. Please" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX Staff with further questions" +msgstr "" + +#: cms/templates/index.html +msgid "Thanks for signing up, %(name)s!" +msgstr "" + +#: cms/templates/index.html +msgid "We need to verify your email address" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Almost there! In order to complete your sign up we need you to verify your " +"email address (%(email)s). An activation message and next steps should be " +"waiting for you there." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Please check your Junk or Spam folders in case our email isn't in your " +"INBOX. Still can't find the verification email? Request help via the link " +"below." +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/header.html +msgid "Sign In" +msgstr "" + +#: cms/templates/login.html cms/templates/login.html +msgid "Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html +msgid "Don't have a Studio Account? Sign up!" +msgstr "" + +#: cms/templates/login.html +msgid "Required Information to Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +msgid "Email Address" +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/sock.html +msgid "Studio Support" +msgstr "" + +#: cms/templates/login.html +msgid "" +"Having trouble with your account? Use {link_start}our support " +"center{link_end} to look over self help steps, find solutions others have " +"found to the same problem, or let us know of your issue." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Settings" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Course Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a User to Your Course's Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member Information" +msgstr "" + +#: cms/templates/manage_users.html +msgid "User's Email Address" +msgstr "" + +#: cms/templates/manage_users.html +msgid "e.g. jane.doe@gmail.com" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Please provide the email address of the course staff member you'd like to " +"add" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add User" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "Current Role:" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "You!" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Staff" +msgstr "" + +#: cms/templates/manage_users.html +msgid "send an email message to {email}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Promote another member to Admin to remove your admin rights" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Remove Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Delete the user, {username}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Team Members to This Course" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Adding team members makes course authoring collaborative. Users must be " +"signed up for Studio and have an active account. " +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Roles" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Course team members, or staff, are course co-authors. They have full writing" +" and editing privileges on all course content." +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Admins are course team members who can add and remove other course team " +"members." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Transferring Ownership" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Every course must have an Admin. If you're the Admin and you want transfer " +"ownership of the course, click Add admin access to make another user the " +"Admin, then ask that user to remove you from the Course Team list." +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Course Outline" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html +msgid "Expand/collapse this section" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Section Name" +msgstr "" + +#: cms/templates/overview.html +msgid "Add a new section name" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Delete this section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to re-order" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Subsection" +msgstr "" + +#: cms/templates/overview.html cms/templates/widgets/units.html +msgid "New Unit" +msgstr "" + +#: cms/templates/overview.html +msgid "You haven't added any sections to your course outline yet." +msgstr "" + +#: cms/templates/overview.html +msgid "Add your first section" +msgstr "" + +#: cms/templates/overview.html +msgid "Collapse All Sections" +msgstr "" + +#: cms/templates/overview.html +msgid "New Section" +msgstr "" + +#: cms/templates/overview.html +msgid "This section is not scheduled for release" +msgstr "" + +#: cms/templates/overview.html +msgid "Schedule" +msgstr "" + +#: cms/templates/overview.html +msgid "Release date:" +msgstr "" + +#: cms/templates/overview.html +msgid "Edit section release date" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to reorder section" +msgstr "" + +#: cms/templates/overview.html +msgid "Expand/collapse this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"You can create new sections and subsections, set the release date for " +"sections, and create new units in existing subsections. You can set the " +"assignment type for subsections that are to be graded, and you can open a " +"subsection for further editing." +msgstr "" + +#: cms/templates/overview.html +msgid "" +"In addition, you can drag and drop sections, subsections, and units to " +"reorganize your course." +msgstr "" + +#: cms/templates/overview.html +msgid "Section Release Date" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"On the date set below, this section - {name} - will be released to students." +" Any units marked private will only be visible to admins." +msgstr "" + +#: cms/templates/overview.html +msgid "Form Actions" +msgstr "" + +#: cms/templates/register.html +msgid "Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "Already have a Studio Account? Sign in" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Ready to start creating online courses? Sign up below and start creating " +"your first edX course today." +msgstr "" + +#: cms/templates/register.html +msgid "Required Information to Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "" +"This will be used in public discussions with your courses and in our edX101 " +"support forums" +msgstr "" + +#: cms/templates/register.html +msgid "Your Location" +msgstr "" + +#: cms/templates/register.html +msgid "I agree to the {a_start} Terms of Service {a_end}" +msgstr "" + +#: cms/templates/register.html +msgid "Create My Account & Start Authoring Courses" +msgstr "" + +#: cms/templates/register.html +msgid "Common Studio Questions" +msgstr "" + +#: cms/templates/register.html +msgid "Who is Studio for?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is for anyone that wants to create online courses that leverage the " +"global edX platform. Our users are often faculty members, teaching " +"assistants and course staff, and members of instructional technology groups." +msgstr "" + +#: cms/templates/register.html +msgid "How technically savvy do I need to be to create courses in Studio?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is designed to be easy to use by almost anyone familiar with common " +"web-based authoring environments (Wordpress, Moodle, etc.). No programming " +"knowledge is required, but for some of the more advanced features, a " +"technical background would be helpful. As always, we are here to help, so " +"don't hesitate to dive right in." +msgstr "" + +#: cms/templates/register.html +msgid "I've never authored a course online before. Is there help?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Absolutely. We have created an online course, edX101, that describes some " +"best practices: from filming video, creating exercises, to the basics of " +"running an online course. Additionally, we're always here to help, just drop" +" us a note." +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details Settings" +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/settings.html +msgid "Basic Information" +msgstr "" + +#: cms/templates/settings.html +msgid "The nuts and bolts of your course" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "This field is disabled: this information cannot be changed." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Summary Page" +msgstr "" + +#: cms/templates/settings.html +msgid "(for student enrollment and access)" +msgstr "" + +#: cms/templates/settings.html +msgid "Send a note to students via email" +msgstr "" + +#: cms/templates/settings.html +msgid "Invite your students" +msgstr "" + +#: cms/templates/settings.html +msgid "Promoting Your Course with edX" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course summary page will not be viewable until your course has been " +"announced. To provide content for the page and preview it, follow the " +"instructions provided by your PM." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Schedule" +msgstr "" + +#: cms/templates/settings.html +msgid "Dates that control when your course can be viewed" +msgstr "" + +#: cms/templates/settings.html +msgid "First day the course begins" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day your course is active" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Date" +msgstr "" + +#: cms/templates/settings.html +msgid "First day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "These Dates Are Not Used When Promoting Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"These dates impact when your courseware can be viewed, but " +"they are not the dates shown on your course summary page. " +"To provide the course start and registration dates as shown on your course " +"summary page, follow the instructions provided by your PM or Conrad Warre (conrad@edx.org)." +msgstr "" + +#: cms/templates/settings.html +msgid "Introducing Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "Information for prospective students" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Short Description" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Appears on the course catalog page when students roll over the course name. " +"Limit to ~150 characters" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Overview" +msgstr "" + +#: cms/templates/settings.html +msgid "your course summary page" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"You can manage this image along with all of your other files " +"& uploads" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 375px wide by 200px tall)" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your course image (Note: only JPEG " +"or PNG format supported)" +msgstr "" + +#: cms/templates/settings.html +msgid "Upload Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Introduction Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Delete Current Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Enter your YouTube video's ID (along with any restriction parameters)" +msgstr "" + +#: cms/templates/settings.html +msgid "Requirements" +msgstr "" + +#: cms/templates/settings.html +msgid "Expectations of the students taking this course" +msgstr "" + +#: cms/templates/settings.html +msgid "Hours of Effort per Week" +msgstr "" + +#: cms/templates/settings.html +msgid "Time spent on all course work" +msgstr "" + +#: cms/templates/settings.html +msgid "How are these settings used?" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course's schedule determines when students can enroll in and begin a " +"course." +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Other information from this page appears on the About page for your course. " +"This information includes the course overview, course image, introduction " +"video, and estimated time requirements. Students use About pages to choose " +"new courses to take." +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html +msgid "Other Course Settings" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +msgid "Grading" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Advanced Settings" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "There was an error saving your information. Please see below." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Manual Policy Definition" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Warning: Do not modify these policies unless you are " +"familiar with their purpose." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "What do advanced settings do?" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Advanced settings control specific course functionality. On this page, you " +"can edit manual policies, which are JSON-based key and value pairs that " +"control specific course settings." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Any policies you modify here override all other information you've defined " +"elsewhere in Studio. Do not edit policies unless you are familiar with both " +"their purpose and syntax." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" +" you use double quotation marks (") around the string. Do not use " +"single quotation marks (')." +msgstr "" + +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +msgid "Details & Schedule" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Settings" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Overall Grade Range" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Your overall grading scale for student final grades" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Rules & Policies" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Deadlines, requirements, and logistics around grading student work" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grace Period on Deadline:" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Leeway on due dates" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Assignment Types" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Categories and labels for any exercises that are gradable" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "New Assignment Type" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can use the slider under Overall Grade Range to specify whether your " +"course is pass/fail or graded by letter, and to establish the thresholds for" +" each grade." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can specify whether your course offers students a grace period for late " +"assignments." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can also create assignment types, such as homework, labs, quizzes, and " +"exams, and specify how much of a student's grade each assignment type is " +"worth." +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +#: cms/templates/studio_vertical_wrapper.html +msgid "Expand or Collapse" +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + +#: cms/templates/textbooks.html +msgid "You have unsaved changes. Do you really want to leave this page?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "New Textbook" +msgstr "" + +#: cms/templates/textbooks.html +msgid "Why should I break my textbook into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"Breaking your textbook into multiple chapters reduces loading times for " +"students, especially those with slow Internet connections. Breaking up " +"textbooks into chapters can also help students more easily find topic-based " +"information." +msgstr "" + +#: cms/templates/textbooks.html +msgid "What if my book isn't divided into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"If your textbook doesn't have individual chapters, you can upload the entire" +" text as a single chapter and enter a name of your choice in the Chapter " +"Name field." +msgstr "" + +#: cms/templates/unit.html cms/templates/ux/reference/unit.html +msgid "Individual Unit" +msgstr "" + +#: cms/templates/unit.html +msgid "You are editing a draft." +msgstr "" + +#: cms/templates/unit.html +msgid "This unit was originally published on {date}." +msgstr "" + +#: cms/templates/unit.html +msgid "View the Live Version" +msgstr "" + +#: cms/templates/unit.html +msgid "Add New Component" +msgstr "" + +#: cms/templates/unit.html +msgid "Common Problem Types" +msgstr "" + +#: cms/templates/unit.html +msgid "Advanced" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Settings" +msgstr "" + +#: cms/templates/unit.html +msgid "Visibility:" +msgstr "" + +#: cms/templates/unit.html +msgid "Public" +msgstr "" + +#: cms/templates/unit.html +msgid "Private" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit has been published. To make changes, you must {link_start}edit a " +"draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This is a draft of the published unit. To update the live version, you must " +"{link_start}replace it with this draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "Delete Draft" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Location" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Identifier:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for edX Studio! To activate your account, please " +"copy and paste this address into your web browser's address bar:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the edX web site." +msgstr "" + +#: cms/templates/emails/activation_email_subject.txt +msgid "Your account for edX Studio" +msgstr "" + +#: cms/templates/emails/course_creator_admin_subject.txt +msgid "{email} has requested Studio course creator privileges on edge" +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "" +"User '{user}' with e-mail {email} has requested Studio course creator " +"privileges on edge." +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "To grant or deny this request, use the course creator admin table." +msgstr "" + +#: cms/templates/emails/course_creator_denied.txt +msgid "" +"Your request for course creation rights to edX Studio have been denied. If " +"you believe this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_granted.txt +msgid "" +"Your request for course creation rights to edX Studio have been granted. To " +"create your first course, visit:" +msgstr "" + +#: cms/templates/emails/course_creator_revoked.txt +msgid "" +"Your course creation rights to edX Studio have been revoked. If you believe " +"this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_subject.txt +msgid "Your course creator status for edX Studio" +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "You can now {link_start}login{link_end}." +msgstr "" + +#: cms/templates/registration/reg_complete.html +msgid "" +"An activation link has been sent to {email}, along with instructions for " +"activating your account." +msgstr "" + +#: cms/templates/widgets/footer.html +msgid "All rights reserved." +msgstr "" + +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Contact Us" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Current Course:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "{course_name}'s Navigation:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Outline" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Updates" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Checklists" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Import" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Export" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Help & Account Navigation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +msgid "This is a PDF Document" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Documentation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html +msgid "Studio Help Center" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Currently signed in as:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Sign Out" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "You're not currently signed in" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "How Studio Works" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Help" +msgstr "" + +#: cms/templates/widgets/metadata-edit.html +msgid "Launch Latex Source Compiler" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Heading 1" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Multiple Choice" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Checkboxes" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Text Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Numerical Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Dropdown" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Explanation" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Advanced Editor" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Toggle Cheatsheet" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Label" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "edX Studio Help" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Need help with Studio? Creating a course is complex, so we're here to help. " +"Take advantage of our documentation, help center, as well as our edX101 " +"introduction course for course authors." +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Download Studio Documentation" +msgstr "" + +#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +msgid "How to use Studio to build your course" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Enroll in edX101" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Contact us about Studio" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Have problems, questions, or suggestions about Studio? We're also here to " +"listen to any feedback you want to share." +msgstr "" + +#: cms/templates/widgets/tabs-aggregator.html +msgid "name" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete this unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to sort" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to reorder unit" +msgstr "" + +# empty +msgid "This is a key string." +msgstr "" + +#: wiki/admin.py wiki/models/article.py +msgid "created" +msgstr "" + +#: wiki/forms.py +msgid "Only localhost... muahahaha" +msgstr "" + +#: wiki/forms.py +msgid "Initial title of the article. May be overridden with revision titles." +msgstr "" + +#: wiki/forms.py +msgid "Type in some contents" +msgstr "" + +#: wiki/forms.py +msgid "" +"This is just the initial contents of your article. After creating it, you " +"can use more complex features like adding plugins, meta data, related " +"articles etc..." +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Contents" +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Summary" +msgstr "" + +#: wiki/forms.py +msgid "" +"Give a short reason for your edit, which will be stated in the revision log." +msgstr "" + +#: wiki/forms.py +msgid "" +"While you were editing, someone else changed the revision. Your contents " +"have been automatically merged with the new contents. Please review the text" +" below." +msgstr "" + +#: wiki/forms.py +msgid "No changes made. Nothing to save." +msgstr "" + +#: wiki/forms.py +msgid "Select an option" +msgstr "" + +#: wiki/forms.py +msgid "Slug" +msgstr "" + +#: wiki/forms.py +msgid "" +"This will be the address where your article can be found. Use only " +"alphanumeric characters and - or _. Note that you cannot change the slug " +"after creating the article." +msgstr "" + +#: wiki/forms.py +msgid "Write a brief message for the article's history log." +msgstr "" + +#: wiki/forms.py +msgid "A slug may not begin with an underscore." +msgstr "" + +#: wiki/forms.py +msgid "A deleted article with slug \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "A slug named \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "Yes, I am sure" +msgstr "" + +#: wiki/forms.py +msgid "Purge" +msgstr "" + +#: wiki/forms.py +msgid "" +"Purge the article: Completely remove it (and all its contents) with no undo." +" Purging is a good idea if you want to free the slug such that users can " +"create new articles in its place." +msgstr "" + +#: wiki/forms.py wiki/plugins/attachments/forms.py +#: wiki/plugins/images/forms.py +msgid "You are not sure enough!" +msgstr "" + +#: wiki/forms.py +msgid "While you tried to delete this article, it was modified. TAKE CARE!" +msgstr "" + +#: wiki/forms.py +msgid "Lock article" +msgstr "" + +#: wiki/forms.py +msgid "Deny all users access to edit this article." +msgstr "" + +#: wiki/forms.py +msgid "Permissions" +msgstr "" + +#: wiki/forms.py +msgid "Owner" +msgstr "" + +#: wiki/forms.py +msgid "Enter the username of the owner." +msgstr "" + +#: wiki/forms.py +msgid "(none)" +msgstr "" + +#: wiki/forms.py +msgid "Inherit permissions" +msgstr "" + +#: wiki/forms.py +msgid "" +"Check here to apply the above permissions recursively to articles under this" +" one." +msgstr "" + +#: wiki/forms.py +msgid "Permission settings for the article were updated." +msgstr "" + +#: wiki/forms.py +msgid "Your permission settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/forms.py +msgid "No user with that username" +msgstr "" + +#: wiki/forms.py +msgid "Article locked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Article unlocked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Filter..." +msgstr "" + +#: wiki/core/plugins/base.py +msgid "Settings for plugin" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +#: wiki/plugins/attachments/models.py +msgid "current revision" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The revision being displayed for this article. If you need to do a roll-" +"back, simply change the value of this field." +msgstr "" + +#: wiki/models/article.py +msgid "modified" +msgstr "" + +#: wiki/models/article.py +msgid "Article properties last modified" +msgstr "" + +#: wiki/models/article.py +msgid "owner" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The owner of the article, usually the creator. The owner always has both " +"read and write access." +msgstr "" + +#: wiki/models/article.py +msgid "group" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Like in a UNIX file system, permissions can be given to a user according to " +"group membership. Groups are handled through the Django auth system." +msgstr "" + +#: wiki/models/article.py +msgid "group read access" +msgstr "" + +#: wiki/models/article.py +msgid "group write access" +msgstr "" + +#: wiki/models/article.py +msgid "others read access" +msgstr "" + +#: wiki/models/article.py +msgid "others write access" +msgstr "" + +#: wiki/models/article.py +msgid "Article without content (%(id)d)" +msgstr "" + +#: wiki/models/article.py +msgid "content type" +msgstr "" + +#: wiki/models/article.py +msgid "object ID" +msgstr "" + +#: wiki/models/article.py +msgid "Article for object" +msgstr "" + +#: wiki/models/article.py +msgid "Articles for object" +msgstr "" + +#: wiki/models/article.py +msgid "revision number" +msgstr "" + +#: wiki/models/article.py +msgid "IP address" +msgstr "" + +#: wiki/models/article.py +msgid "user" +msgstr "" + +#: wiki/models/article.py +msgid "locked" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +msgid "article" +msgstr "" + +#: wiki/models/article.py +msgid "article contents" +msgstr "" + +#: wiki/models/article.py +msgid "article title" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Each revision contains a title field that must be filled out, even if the " +"title has not changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "original article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "Permissions are inherited from this article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "A plugin was changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "" +"The revision being displayed for this plugin.If you need to do a roll-back, " +"simply change the value of this field." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Cache lookup value for articles" +msgstr "" + +#: wiki/models/urlpath.py +msgid "slug" +msgstr "" + +#: wiki/models/urlpath.py +msgid "(root)" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL path" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL paths" +msgstr "" + +#: wiki/models/urlpath.py +msgid "Sorry but you cannot have a root article with a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "A non-root note must always have a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "There is already a root node on %s" +msgstr "" + +#: wiki/models/urlpath.py +msgid "" +"Articles who lost their parents\n" +"===============================\n" +"\n" +"The children of this article have had their parents deleted. You should probably find a new home for them." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Lost and found" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "A short summary of what the file contains" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "Yes I am sure..." +msgstr "" + +#: wiki/plugins/attachments/markdown_extensions.py +msgid "Click to download file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "" +"The revision of this attachment currently in use (on all articles using the " +"attachment)" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "original filename" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachments" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revision" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revisions" +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s was successfully added." +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "Your file could not be saved: %s" +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "" +"Your file could not be saved, probably because of a permission error on the " +"web server." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s uploaded and replaces old attachment." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your new file will automatically be renamed to match the file already " +"present. Files with different extensions are not allowed." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Current revision changed for %s." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "The file %s was deleted." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "This article is no longer related to the file %s." +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was changed: %s" +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was deleted: %s" +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "" +"New image %s was successfully uploaded. You can use it by selecting it from " +"the list of available images." +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "Are you sure?" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "images" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image: %s" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Current revision not set!!" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revision" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revisions" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image Revsion: %d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been restored" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been marked as deleted" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been changed to revision #%(revision)d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been saved." +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "Images" +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "An image was added: %s" +msgstr "" + +#: wiki/plugins/links/wiki_plugin.py +msgid "Links" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Notifications" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "When this article is edited" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Also receive emails about article edits" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were updated." +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "%(user)s subscribing to %(article)s (%(type)s)" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article deleted: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article modified: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "New article created: %s" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now sign up... and now you can sign in!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are no longer logged in. Bye bye!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now logged in! Have fun!" +msgstr "" + +#: wiki/views/article.py +msgid "New article '%s' created." +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article: %s" +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article cannot be deleted because it has children or is a root article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article together with all its contents are now completely gone! Thanks!" +msgstr "" + +#: wiki/views/article.py +msgid "" +"The article \"%s\" is now marked as deleted! Thanks for keeping the site " +"free from unwanted material!" +msgstr "" + +#: wiki/views/article.py +msgid "Your changes were saved." +msgstr "" + +#: wiki/views/article.py +msgid "A new revision of the article was succesfully added." +msgstr "" + +#: wiki/views/article.py +msgid "Restoring article" +msgstr "" + +#: wiki/views/article.py +msgid "The article \"%s\" and its children are now restored." +msgstr "" + +#: wiki/views/article.py +msgid "The article %s is now set to display revision #%d" +msgstr "" + +#: wiki/views/article.py +msgid "New title" +msgstr "" + +#: wiki/views/article.py +msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" +msgstr "" + +#: wiki/views/article.py +msgid "" +"A new revision was created: Merge between Revision #%(r1)d and Revision " +"#%(r2)d" +msgstr "" diff --git a/conf/locale/bn_IN/LC_MESSAGES/djangojs.mo b/conf/locale/bn_IN/LC_MESSAGES/djangojs.mo new file mode 100644 index 0000000000..d765c360cc Binary files /dev/null and b/conf/locale/bn_IN/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/bn_IN/LC_MESSAGES/djangojs.po b/conf/locale/bn_IN/LC_MESSAGES/djangojs.po new file mode 100644 index 0000000000..a41d29eefb --- /dev/null +++ b/conf/locale/bn_IN/LC_MESSAGES/djangojs.po @@ -0,0 +1,1712 @@ +# #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Bengali (India) (http://www.transifex.com/projects/p/edx-platform/language/bn_IN/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-01-21 20:18+0000\n" +"Last-Translator: \n" +"Language-Team: Bengali (India) (http://www.transifex.com/projects/p/edx-platform/language/bn_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: cms/static/coffee/src/views/tabs.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js +#: common/static/coffee/src/discussion/utils.js +msgid "OK" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/asset.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Cancel" +msgstr "" + +#: cms/static/js/base.js lms/static/js/verify_student/photocapture.js +msgid "This link will open in a new browser window/tab" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Show Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Hide Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Expand Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Collapse Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Commentary" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Reply to Annotation" +msgstr "" + +#. Translators: %(earned)s is the number of points earned. %(total)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(earned)s/%(possible)s point)" +msgid_plural "(%(earned)s/%(possible)s points)" +msgstr[0] "" +msgstr[1] "" + +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10). There will always be at least 1 point possible.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(num_points)s point possible)" +msgid_plural "(%(num_points)s points possible)" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer:" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Hide Answer" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Show Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Reveal Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer hidden" +msgstr "" + +#. Translators: the word unanswered here is about answering a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "unanswered" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Status: unsubmitted" +msgstr "" + +#. Translators: A "rating" is a score a student gives to indicate how well +#. they feel they were graded on this problem +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "You need to pick a rating before you can submit." +msgstr "" + +#. Translators: this message appears when transitioning between openended +#. grading +#. types (i.e. self assesment to peer assessment). Sometimes, if a student +#. did not perform well at one step, they cannot move on to the next one. +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Your score did not meet the criteria to move to the next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Submit" +msgstr "" + +#. Translators: one clicks this button after one has finished filling out the +#. grading +#. form for an openended assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: this button is clicked to submit a student's rating of +#. an evaluator's assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit post-assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Answer saved, but not yet submitted." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Please confirm that you wish to submit your work. You will not be able to " +"make any changes after submitting." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"You are trying to upload a file that is too large for our system. Please " +"choose a file under 2MB or paste a link to it into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Are you sure you want to remove your previous response to this question?" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Moved to next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"File uploads are required for this question, but are not supported in your " +"browser. Try the newest version of Google Chrome. Alternatively, if you have" +" uploaded the image to another website, you can paste a link to it into the " +"answer box." +msgstr "" + +#. Translators: "Show Question" is some text that, when clicked, shows a +#. question's +#. content that had been hidden +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Show Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Hide Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/sequence/display.js +msgid "" +"Sequence error! Cannot navigate to tab %(tab_name)s in the current " +"SequenceModule. Please contact the course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Video slider" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Pause" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Play" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Fill browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Exit full browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD on" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD off" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video ended" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s hour" +msgid_plural "%(value)s hours" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s minute" +msgid_plural "%(value)s minutes" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s second" +msgid_plural "%(value)s seconds" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Volume" +msgstr "" + +#. Translators: Volume level equals 0%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Muted" +msgstr "" + +#. Translators: Volume level in range (0,20]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very low" +msgstr "" + +#. Translators: Volume level in range (20,40]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Low" +msgstr "" + +#. Translators: Volume level in range (40,60]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Average" +msgstr "" + +#. Translators: Volume level in range (60,80]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Loud" +msgstr "" + +#. Translators: Volume level in range (80,100)% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very loud" +msgstr "" + +#. Translators: Volume level equals 100%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Maximum" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Caption will be displayed when " +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on captions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn off captions" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Hide Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Show Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Sorry" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "We had some trouble loading the discussion. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "" +"We had some trouble loading the threads you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "Loading content" +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "" +"We had some trouble processing your request. Please ensure you have copied " +"any unsaved work and then reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "We had some trouble processing your request. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +msgid "…" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Close" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Open" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "remove vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Load more" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading more threads" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "We had some trouble loading more threads. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "%(unread_count)s new comment" +msgid_plural "%(unread_count)s new comments" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading thread list" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to remove report" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported%(start_sr_span)s, click to remove report%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Report Misuse" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned%(start_sr_span)s, click to unpin%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to unpin" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pin Thread" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading responses. Please reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading more responses. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "%(numResponses)s response" +msgid_plural "%(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing first response" +msgid_plural "Showing first %(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load next %(numResponses)s responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Are you sure you want to delete this post?" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +msgid "anonymous" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "staff" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Community TA" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported, click to remove report" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Are you sure you want to delete this comment?" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "We had some trouble deleting this comment. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/thread_response_view.js +msgid "Are you sure you want to delete this response?" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s ago" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s from now" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "less than a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about an hour" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about %d hour" +msgid_plural "about %d hours" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "a day" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a month" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a year" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Available %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of available %s. You may choose some by selecting them in " +"the box below and then clicking the \"Choose\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Type into this box to filter down the list of available %s." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Filter" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to choose all %s at once." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Chosen %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of chosen %s. You may remove some by selecting them in the " +"box below and then clicking the \"Remove\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to remove all chosen %s at once." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "%(sel)s of %(cnt)s selected" +msgid_plural "%(sel)s of %(cnt)s selected" +msgstr[0] "" +msgstr[1] "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have unsaved changes on individual editable fields. If you run an " +"action, your unsaved changes will be lost." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, but you haven't saved your changes to " +"individual fields yet. Please click OK to save. You'll need to re-run the " +"action." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, and you haven't made any changes on individual " +"fields. You're probably looking for the Go button rather than the Save " +"button." +msgstr "" + +#. Translators: the names of months, keep the pipe (|) separators. +#: lms/static/admin/js/calendar.js lms/static/admin/js/dateparse.js +msgid "" +"January|February|March|April|May|June|July|August|September|October|November|December" +msgstr "" + +#. Translators: abbreviations for days of the week, keep the pipe (|) +#. separators. +#: lms/static/admin/js/calendar.js +msgid "S|M|T|W|T|F|S" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.js.c +#: lms/static/admin/js/collapse.min.js +msgid "Show" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.min.js +msgid "Hide" +msgstr "" + +#. Translators: the names of days, keep the pipe (|) separators. +#: lms/static/admin/js/dateparse.js +msgid "Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Now" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Clock" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Choose a time" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Midnight" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "6 a.m." +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Noon" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Today" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Calendar" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Yesterday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Tomorrow" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Open Calculator" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Close Calculator" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Preview" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Post body" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching distribution." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Unavailable metric display." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching grade distributions." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Last Updated: <%= timestamp %>" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "<%= num_students %> students scored." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Loading..." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error getting student list." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error retrieving grading configuration." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error generating grades. Please try again." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "File Name" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "" +"Links are generated on demand and expire within 5 minutes due to the " +"sensitive nature of student information." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Username" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Revoke access" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Enter username or email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Please enter a username or email." +msgstr "" + +#. Translators: A rolename appears this sentence.; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error fetching list for role" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +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 "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully removed as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not removed as beta testers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Users must create and activate their account before they can be promoted to " +"beta tester." +msgstr "" + +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Could not find users associated with the following identifiers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error enrolling/unenrolling users." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following email addresses and/or usernames are invalid:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled and sent email to the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Emails successfully sent. The following users are no longer enrolled in the " +"course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following users are no longer enrolled in the course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"These users were not affiliated with the course so could not be unenrolled:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message must have a subject." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message cannot be blank." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to yourself. Is this " +"OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to everyone who is " +"staff or instructor on this course. Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to ALL (everyone who " +"is enrolled in this course as student, staff, or instructor). Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Error sending email." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There is no email history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There was an error obtaining email task history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a student email address or username." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting student progress url for '<%= student_id %>'. Check that the " +"student identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a problem urlname." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Success! Problem attempts reset for problem '<%= problem_id %>' and student " +"'<%= student_id %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error resetting problem attempts for problem '<%= problem_id %>' and student" +" '<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Delete student '<%= student_id %>'s state on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id" +" %>'. Check that the problem and student identifiers are spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Module state successfully deleted." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Started rescore problem task for problem '<%= problem_id %>' and student " +"'<%= student_id %>'. Click the 'Show Background Task History for Student' " +"button to see the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>' for student " +"'<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting task history for problem '<%= problem_id %>' and student '<%= " +"student_id %>'. Check that the problem and student identifiers are spelled " +"correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Reset attempts for all students on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to reset attempts for problem '<%= problem_id %>'." +" Click the 'Show Background Task History for Problem' button to see the " +"status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to reset attempts for all students on problem '<%= " +"problem_id %>'. Check that the problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Rescore problem '<%= problem_id %>' for all students?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to rescore problem '<%= problem_id %>' for all " +"students. Click the 'Show Background Task History for Problem' button to see" +" the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>'. Check that the" +" problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Error listing task history for this student and problem." +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Type" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task inputs" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task ID" +msgstr "" + +#. Translators: a "Requester" is a username that requested a task such as +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Requester" +msgstr "" + +#. Translators: A timestamp of when a task (eg, sending email) was submitted +#. appears after this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Submitted" +msgstr "" + +#. Translators: The length of a task (eg, sending email) in seconds appears +#. this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Duration (sec)" +msgstr "" + +#. Translators: The state (eg, "In progress") of a task (eg, sending email) +#. appears after this. +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "State" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Status" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Grades saved. Fetching the next submission to grade." +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Problem Name" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Graded" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Available to Grade" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Required" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Back to problem list" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Try loading again" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> available " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> graded " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> more needed to start ML" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Re-check for submissions" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state: <%= state %>" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state for submission: " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Hide)" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Show)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Image (upload file or type url)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Markdown Editing Help" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bold (Ctrl+B)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Italic (Ctrl+I)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Hyperlink (Ctrl+L)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote (Ctrl+Q)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Code Sample (Ctrl+K)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Image (Ctrl+G)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Numbered List (Ctrl+O)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bulleted List (Ctrl+U)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading (Ctrl+H)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Horizontal Rule (Ctrl+R)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Undo (Ctrl+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Y)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Shift+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "strong text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "emphasized text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter image description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter link description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote" +msgstr "" + +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +msgid "enter code here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "List item" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading" +msgstr "" + +#: lms/templates/class_dashboard/all_section_metrics.js +#: lms/templates/class_dashboard/all_section_metrics.js +msgid "Unable to retrieve data, please try again later." +msgstr "" + +#: lms/templates/class_dashboard/d3_stacked_bar_graph.js +msgid "Number of Students" +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "" +"This may be happening because of an error with our server or your internet " +"connection. Try refreshing the page or making sure you are online." +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "Studio's having trouble saving your work" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/xblock/cms.runtime.v1.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js +#: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js +#: cms/static/js/views/xblock_editor.js +msgid "Saving…" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "Delete Component Confirmation" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "" +"Are you sure you want to delete this component? This action cannot be " +"undone." +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js +msgid "Deleting…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js +msgid "Adding…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Duplicating…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Delete this component?" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Deleting this component is permanent and cannot be undone." +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Yes, delete this component" +msgstr "" + +#: cms/static/js/base.js +msgid "This link will open in a modal window" +msgstr "" + +#: cms/static/js/base.js +msgid "Delete this " +msgstr "" + +#: cms/static/js/base.js +msgid "Deleting this " +msgstr "" + +#: cms/static/js/base.js +msgid "Yes, delete this " +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces or special characters in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "" +"The combined length of the organization, course number, and course run " +"fields cannot be more than 65 characters." +msgstr "" + +#: cms/static/js/index.js +msgid "Required field." +msgstr "" + +#: cms/static/js/sock.js +msgid "Hide Studio Help" +msgstr "" + +#: cms/static/js/sock.js +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/static/js/models/course.js cms/static/js/models/section.js +msgid "You must specify a name" +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "" +"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " +"<%= fileExtensions %> to upload." +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "or" +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course must have an assigned start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course end date cannot be before the course start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course start date cannot be before the enrollment start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment start date cannot be after the enrollment end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment end date cannot be after the course end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "Key should only contain letters, numbers, _, or -" +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "There's already another assignment type with this name." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer between 0 and 100." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer greater than 0." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter non-negative integer." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Cannot drop more <% attrs.types %> than will assigned." +msgstr "" + +#: cms/static/js/models/settings/course_grading_policy.js +msgid "Grace period must be specified in HH:MM format." +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Delete File Confirmation" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "" +"Are you sure you wish to delete this item. It cannot be reversed!\n" +"\n" +"Also any content that links/refers to this item will no longer work (e.g. broken images and/or links)" +msgstr "" + +#: cms/static/js/views/asset.js cms/static/js/views/show_textbook.js +msgid "Delete" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Your file has been deleted." +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Name" +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Date Added" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "Are you sure you want to delete this update?" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "This action cannot be undone." +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Upload a new PDF to “<%= name %>”" +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + +#: cms/static/js/views/edit_textbook.js +#: cms/static/js/views/overview_assignment_grader.js +msgid "Saving" +msgstr "" + +#: cms/static/js/views/import.js +msgid "There was an error with the upload" +msgstr "" + +#: cms/static/js/views/import.js +msgid "" +"File format not supported. Please upload a file with a tar.gz " +"extension." +msgstr "" + +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Collapse All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Expand All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Release date:" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "{month}/{day}/{year} at {hour}:{minute} UTC" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Edit section release date" +msgstr "" + +#: cms/static/js/views/overview_assignment_grader.js +msgid "Not Graded" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "ascending" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "descending" +msgstr "" + +#: cms/static/js/views/paging_header.js +msgid "" +"Showing %(current_span)s%(start)s-%(end)s%(end_span)s out of " +"%(total_span)s%(total)s total%(end_span)s, sorted by " +"%(order_span)s%(sort_order)s%(end_span)s %(sort_direction)s" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Your change could not be saved" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Return and resolve this issue" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Delete “<%= name %>”?" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "" +"Deleting a textbook cannot be undone and once deleted any reference to it in" +" your courseware's navigation will also be removed." +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Deleting" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "We're sorry, there was an error" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes will not take effect until you save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes, but there are some errors" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "" +"Please address the errors on this page first, and then save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Save Changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes have been saved." +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Your changes will not take effect until you save your progress. Take care " +"with key and value formatting, as validation is not implemented." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Please note that validation of your policy key and value pairs is not " +"currently in place yet. If you are having difficulties, please review your " +"policy pairs." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Upload your course image." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Files must be in JPEG or PNG format." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/bs/LC_MESSAGES/django.mo b/conf/locale/bs/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..562303bdb0 Binary files /dev/null and b/conf/locale/bs/LC_MESSAGES/django.mo differ diff --git a/conf/locale/bs/LC_MESSAGES/django.po b/conf/locale/bs/LC_MESSAGES/django.po new file mode 100644 index 0000000000..d61cdd8aae --- /dev/null +++ b/conf/locale/bs/LC_MESSAGES/django.po @@ -0,0 +1,12585 @@ +# #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Bosnian (http://www.transifex.com/projects/p/edx-platform/language/bs/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Bosnian (http://www.transifex.com/projects/p/edx-platform/language/bs/) +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# messages.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2013 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# Kenan Dervišević, 2014 +# #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-07 13:46+0000\n" +"Last-Translator: sarina \n" +"Language-Team: Bosnian (http://www.transifex.com/projects/p/edx-platform/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 1.3\n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Translators: "Open Ended Panel" appears on a tab that, when clicked, opens +#. up a panel that +#. displays information about open-ended problems that a user has submitted or +#. needs to grade +#: cms/djangoapps/contentstore/utils.py common/lib/xmodule/xmodule/tabs.py +msgid "Open Ended Panel" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "Honor Code Certificate" +msgstr "" + +#: common/djangoapps/course_modes/views.py common/djangoapps/student/views.py +msgid "Enrollment is closed" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment mode not supported" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Invalid amount selected." +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "No selected price or selected price is too low." +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Community TA" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "" +"Your account has been disabled. If you believe this was done in error, " +"please contact us at {link_start}{support_email}{link_end}" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "Disabled Account" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Male" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Female" +msgstr "" + +#. Translators: 'Other' refers to the student's gender +#. Translators: 'Other' refers to the student's level of education +#: common/djangoapps/student/models.py common/djangoapps/student/models.py +msgid "Other" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Doctorate" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Master's or professional degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Bachelor's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Associate's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Secondary/high school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Junior secondary/junior high/middle school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Elementary/primary school" +msgstr "" + +#. Translators: 'None' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "None" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id not specified" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id is invalid" +msgstr "" + +#: common/djangoapps/student/views.py +#: lms/templates/courseware/course_about.html +msgid "Course is full" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You are not enrolled in this course" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Enrollment action is invalid" +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "There was an error receiving your login information. Please email us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has been temporarily locked due to excessive login failures. " +"Try again later." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Too many failed login attempts. Try again later." +msgstr "" + +#: common/djangoapps/student/views.py lms/templates/provider_login.html +msgid "Email or password is incorrect." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has not been activated. We have sent another activation " +"message. Please check your e-mail for the activation instructions." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please enter a username" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please choose an option" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "User with username {} does not exist" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully disabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully reenabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unexpected account status" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Public Username '{username}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Email '{email}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Error (401 {field}). E-mail us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Accepting Terms of Service is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Agreeing to the Honor Code is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Email cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail is required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Could not send activation e-mail." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unknown error. Please e-mail us to let us know how it happened." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "No inactive user with this e-mail exists" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unable to send reactivation email" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Invalid password" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail address required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with this e-mail already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Old email is the same as the new email." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Name required" +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Invalid ID" +msgstr "" + +#. Translators: the translation for "LONG_DATE_FORMAT" must be a format +#. string for formatting dates in a long form. For example, the +#. American English form is "%A, %B %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "LONG_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "DATE_TIME_FORMAT" must be a format +#. string for formatting dates with times. For example, the American +#. English form is "%b %d, %Y at %H:%M". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "DATE_TIME_FORMAT" +msgstr "" + +#. Translators: the translation for "SHORT_DATE_FORMAT" must be a +#. format string for formatting dates in a brief form. For example, +#. the American English form is "%b %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "SHORT_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "TIME_FORMAT" must be a format +#. string for formatting times. For example, the American English +#. form is "%H:%M:%S". See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "TIME_FORMAT" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "AM" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "PM" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Monday Februrary 10, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Monday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Tuesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Wednesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Thursday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Friday Februrary 14, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Friday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Saturday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Sunday" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jan 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Feb 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Mar 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Apr 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "May 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "May" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jun 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jul 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Aug 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Sep 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Oct 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Nov 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Dec 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "January 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "January" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "February 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "February" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "March 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "March" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "April 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "April" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "May 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "May" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "June 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "June" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "July 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "July" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "August 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "August" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "September 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "September" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "October 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "October" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "November 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "November" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "December 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "December" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Invalid Length ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or more" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or less" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Must be more complex ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more uppercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more lowercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more digits" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more punctuation characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more non ascii characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more unique words" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Too similar to a restricted dictionary word." +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +msgid "Cannot rescore problems with possible file submissions" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "correct" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incorrect" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incomplete" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +msgid "unanswered" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "processing" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your file(s) have been submitted. As soon as your submission is graded, this" +" message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your answer has been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Submitted. As soon as a response is returned, this message will be replaced " +"by that feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Error {err} in evaluating hint function {hintfn}." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "(Source code line unavailable)" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "See XML source line {sourcenum}." +msgstr "" + +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +msgid "There was a problem with the staff answer to this problem." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{student_answer}' as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use variables ({bad_variables}) in numerical problems." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "factorial function evaluated outside its domain:'{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid math syntax: '{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use complex numbers in range tolerance problems" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: complex boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: empty boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "CustomResponse: check function returned an invalid dictionary!" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"Unable to deliver your submission to grader (Reason: {error_msg}). Please " +"try again later." +msgstr "" + +#. Translators: 'grader' refers to the edX automatic code grader. +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/capa/capa/responsetypes.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Invalid grader reply. Please contact the course staff." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: {bad_input} not permitted in answer." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"factorial function not permitted in answer for this problem. Provided answer" +" was: {bad_input}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula" +msgstr "" + +#. Translators: 'SchematicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "The Staff answer could not be interpreted as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{given_answer}' as a number." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Final Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Warning: The problem has been reset to its initial state!" +msgstr "" + +#. Translators: Following this message, there will be a bulleted list of +#. items. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"The problem's state was corrupted by an invalid submission. The submission " +"consisted of:" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "If this error persists, please contact the course staff." +msgstr "" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem is closed." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be reset before it can be checked again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You must wait at least {wait} seconds between submissions." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + +#. Translators: {msg} will be replaced with a problem's error message. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Error: {msg}" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + +#. Translators: 'rescoring' refers to the act of re-submitting a student's +#. solution so it can get a new score. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem's definition does not support rescoring." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be answered before it can be graded again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem needs to be reset prior to save." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Your answers have been saved." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Your answers have been saved but not graded. Click 'Check' to grade them." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Refresh the page and make an attempt before resetting." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"We're sorry, there was an error with processing your request. Please try " +"reloading your page and trying again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"The state of this problem has changed since you loaded this page. Please " +"refresh your page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "General" +msgstr "" + +#. Translators: TBD stands for 'To Be Determined' and is used when a course +#. does not yet have an announced start date. +#: common/lib/xmodule/xmodule/course_module.py +msgid "TBD" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: 'Courseware' refers to the tab in the courseware that leads to +#. the content of a course +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/courseware/courseware-error.html +msgid "Courseware" +msgstr "" + +#. Translators: "Course Info" is the name of the course's information and +#. updates page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Course Info" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Progress" is the name of the student's course progress page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/peer_grading/peer_grading.html +msgid "Progress" +msgstr "" + +#. Translators: "Wiki" is the name of the course's wiki page +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/course_wiki/views.py +#: lms/templates/wiki/base.html +msgid "Wiki" +msgstr "" + +#. Translators: "Discussion" is the title of the course forum page +#. Translators: 'Discussion' refers to the tab in the courseware that leads to +#. the discussion forums +#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +msgid "Discussion" +msgstr "" + +#: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Textbooks" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Staff grading" appears on a tab that allows +#. staff to view open-ended problems that require staff grading +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/instructor/staff_grading.html +msgid "Staff grading" +msgstr "" + +#. Translators: "Peer grading" appears on a tab that allows +#. students to view open-ended problems that require grading +#: common/lib/xmodule/xmodule/tabs.py +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 +msgid "Syllabus" +msgstr "" + +#. Translators: 'Instructor' appears on the tab that leads to the instructor +#. dashboard, which is +#. a portal where an instructor can get data and perform various actions on +#. their course +#: common/lib/xmodule/xmodule/tabs.py +msgid "Instructor" +msgstr "" + +#. Translators: "Self" is used to denote an openended response that is self- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Self" +msgstr "" + +#. Translators: "AI" is used to denote an openended response that is machine- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "AI" +msgstr "" + +#. Translators: "Peer" is used to denote an openended response that is peer- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Peer" +msgstr "" + +#. Translators: "Not started" is used to communicate to a student that their +#. response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Not started." +msgstr "" + +#. Translators: "Being scored." is used to communicate to a student that their +#. response +#. are in the process of being scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Being scored." +msgstr "" + +#. Translators: "Scoring finished" is used to communicate to a student that +#. their response +#. have been scored, but the full scoring process is not yet complete +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scoring finished." +msgstr "" + +#. Translators: "Complete" is used to communicate to a student that their +#. openended response has been fully scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Complete." +msgstr "" + +#. Translators: "Scored rubric" appears to a user as part of a longer +#. string that looks something like: "Scored rubric from grader 1". +#. "Scored" is an adjective that modifies the noun "rubric". +#. That longer string appears when a user is viewing a graded rubric +#. returned from one of the graders of their openended response problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scored rubric" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "" +"You have attempted this question {number_of_student_attempts} times. You are" +" only allowed to attempt it {max_number_of_attempts} times." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "The problem state got out-of-sync. Please try reloading the page." +msgstr "" + +#. Translators: "Self-Assessment" refers to the self-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Self-Assessment" +msgstr "" + +#. Translators: "Peer-Assessment" refers to the peer-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Peer-Assessment" +msgstr "" + +#. Translators: "Instructor-Assessment" refers to the instructor-assessed mode +#. of openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Instructor-Assessment" +msgstr "" + +#. Translators: "AI-Assessment" refers to the machine-graded mode of openended +#. evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "AI-Assessment" +msgstr "" + +#. Translators: 'tag' is one of 'feedback', 'submission_id', +#. 'grader_id', or 'score'. They are categories that a student +#. responds to when filling out a post-assessment survey +#. of his or her grade from an openended problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Could not find needed tag {tag_name} in the survey responses. Please try " +"submitting again." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "There was an error saving your feedback. Please contact course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Couldn't submit feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Unable to save your feedback. Please try again later." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your submission." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Unable to submit your submission to the grader. Please try again later." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error getting feedback from grader." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "No feedback available from grader." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error handling action. Please try again." +msgstr "" + +#. Translators: this string appears once an openended response +#. is submitted but before it has been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: "Not started" communicates to a student that their response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Not started" +msgstr "" + +#. Translators: "In progress" communicates to a student that their response +#. is currently in the grading process +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "In progress" +msgstr "" + +#. Translators: "Done" communicates to a student that their response +#. has been fully graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Done" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We could not find a file in your submission. Please try choosing a file or " +"pasting a URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We are having trouble saving your file. Please try another file or paste a " +"URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/self_assessment_module.py +msgid "Error saving your score. Please notify course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Can't receive transcripts from Youtube for {youtube_id}. Status code: " +"{status_code}." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Can't find any transcripts on the Youtube service." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "We support only SubRip (*.srt) transcripts format." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Something wrong with SubRip transcripts file during parsing. Inner message " +"is {error_message}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Something wrong with SubRip transcripts file during parsing." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "A YouTube URL or a link to a file hosted anywhere on the web." +msgstr "" + +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Navigation" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "About these documents" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Index" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Search" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/copyright.html +msgid "Copyright" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: " +"{grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "students" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "questions" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{num_students} student(s) opened Subsection {subsection_num}: " +"{subsection_name}" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{problem_info_x} {problem_info_n} - {count_grade} {students} " +"({percent:.0f}%: {grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#. Translators: this string includes wiki markup. Leave the ** and the _ +#. alone. +#: lms/djangoapps/course_wiki/views.py +msgid "This is the wiki for **{organization}**'s _{course_name}_." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Course page automatically created." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Welcome to the edX Wiki" +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Visit a course wiki to add an article." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} does not exist." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} has never accessed problem {location}" +msgstr "" + +#: lms/djangoapps/courseware/features/video.py lms/templates/video.html +msgid "ERROR: No playable video sources found!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Path {0} doesn't exist, please create it, or configure a different path with" +" GIT_REPO_DIR" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Non usable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to get git log" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "git clone or pull failed!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to run import command." +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "The underlying module store does not support import." +msgstr "" + +#. Translators: This is an error message when they ask for a +#. particular version of a git repository and that version isn't +#. available from the remote source they specified +#: lms/djangoapps/dashboard/git_import.py +msgid "The specified remote branch is not available." +msgstr "" + +#. Translators: Error message shown when they have asked for a git +#. repository branch, a specific version within a repository, that +#. doesn't exist, or there is a problem changing to it. +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to switch to specified branch. Please check your branch name." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}, error {1}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "fixed password" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "All ok!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide full name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email must end in" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed - email {0} already exists as external_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Password must be supplied if not using certificates" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email address required (not username)" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Oops, failed to create user {0}, IntegrityError" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "User {0} created successfully!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with email address {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with username {0} - {1}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted user {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Statistic" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Value" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Site statistics" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Total number of users" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Courses loaded in the modulestore" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/templates/tracking_log.html +msgid "username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "email" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Repair Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Create User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Delete User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "The git repo location should end with '.git', and be a valid url" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Added Course" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Refusing to import. GIT_IMPORT_WITH_XMLMODULESTORE is not turned on, and it " +"is generally not safe to import into an XMLModuleStore with multithreaded. " +"We recommend you enable the MongoDB based module store instead, unless this " +"is a development environment." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "" +"The course {0} already exists in the data directory! (reloading anyway)" +msgstr "" + +#. Translators: unable to download the course content from +#. the source git repository. Clone occurs if this is brand +#. new, and pull is when it is being updated from the +#. source. +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Unable to clone or pull repository. Please check your url. Output was: {0!r}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed to clone repository to {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Successfully switched to branch: {branch_name}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Loaded course {0} {1}
Errors:" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: cms/templates/index.html cms/templates/settings.html +msgid "Course Name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Directory/ID" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Git Commit" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Change" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Editor" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Information about all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Error - cannot get course with ID {0}
{1}
" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "course_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# enrolled" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# staff" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "instructors" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Enrollment information for all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "role" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "full_name" +msgstr "" + +#: lms/djangoapps/dashboard/management/commands/git_add_course.py +msgid "" +"Import the specified git repository and optional branch into the modulestore" +" and optionally specified directory." +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with email address" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with username" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Failed in authenticating" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Unable to clone or pull repository" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Error - cannot get course with ID" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Re-open thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Close thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Title can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Body can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Comment level too deep" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "allowed file types are '%(file_types)s'" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "maximum upload file size is %(file_size)sK" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "" +"Error uploading file. Please contact the site administrator. Thank you." +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Good" +msgstr "" + +#: lms/djangoapps/django_comment_client/forum/views.py +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "All Groups" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "User does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Task is already running." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Username" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Name" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Email" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Language" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Location" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Birth Year" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "Gender" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Level of Education" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +msgid "Mailing Address" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Goals" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Complete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Incomplete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Your grade report is being generated! You can view the status of the " +"generation task in the 'Pending Instructor Tasks' section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"A grade report generation task is already in progress. Check the 'Pending " +"Instructor Tasks' table for the status of the task. When completed, the " +"report will be available for download in the table below." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully changed due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully reset due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Membership" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Student Admin" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Extensions" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Data Download" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/courseware/instructor_dashboard.html +msgid "Analytics" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Course Statistics At A Glance" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found a single student. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find student with that email or username." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Summary Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Raw Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for resetting \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found module. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname: {url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Deleted student module state for {state}!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to delete module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Module state successfully reset!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't reset module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{key}\" for student {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{key}\": {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Progress page for username: {username} with email address: {email}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Assignment Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Please enter an assignment name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Invalid assignment name '{name}'" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "External email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades for assignment \"{name}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Staff" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Instructors" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student profile data for course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found {num} records to dump." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student state for problem {problem}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Beta Testers" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades from {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook defined in course metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook url defined in settings.FEATURES" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No gradebook name defined in course remote_gradebook metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to communicate with gradebook server at {url}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: {err}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Remote gradebook response for {action}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Full name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Roles" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Forum {name}s in course {id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown rolename \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown username \"{username}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" does not have rolename \"{rolename}\", cannot " +"remove" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Removed \"{username}\" from \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: user \"{username}\" already has rolename \"{rolename}\", cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" should first be added as staff before adding as a" +" forum administrator, cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Added \"{username}\" to \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "{title} in course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "ID" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py cms/templates/register.html +#: lms/templates/dashboard.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "Full Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "edX email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Un-enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\", module " +"\"{problem}\" and student \"{student}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\" and module " +"\"{problem}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unable to parse date: " +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Couldn't find module for url: {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor/views/tools.py +msgid "Extended Due Date" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Users with due date extensions for {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unit" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Due date extensions for {0} {1} ({2})" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "rescored" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "reset" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/templates/wiki/plugins/attachments/index.html wiki/models/article.py +msgid "deleted" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "emailed" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks.py +msgid "graded" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#: lms/djangoapps/instructor_task/views.py +msgid "No status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No task_output information found for instructor_task {0}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No message provided" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "Invalid task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No progress status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_input information found for instructor_task {0}: {1}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} and {succeeded} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Progress: {action} {succeeded} of {attempted} so far" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find submission to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any students with submissions to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for any of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem {action} for {succeeded} of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any recipients to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message failed to be {action} for any of {attempted} recipients " +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message successfully {action} for {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Message {action} for {succeeded} of {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Status: {action} {succeeded} of {attempted}" +msgstr "" + +#. Translators: {skipped} is a count. This message is appended to task +#. progress status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (skipping {skipped})" +msgstr "" + +#. Translators: {total} is a count. This message is appended to task progress +#. status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (out of {total})" +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +"\n" +" Dear %(student_name)s,\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +" \n" +" Congratulations on earning your certificate in %(course_name)s!\n" +" Since you have an account on LinkedIn, you can display your hard earned\n" +" credential for your colleagues to see. Click the button below to add the\n" +" certificate to your profile.\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "Add to profile" +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Could not contact the external grading server. Please contact the " +"development team at {email}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Cannot find any open response problems in this course. Have you submitted " +"answers to any open response assessment questions? If not, please do so and " +"return to this page." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "AI Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Peer Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Not yet available" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Automatic Checker" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Instructor Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify course " +"staff." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify your edX" +" point of contact." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "for course {0} and student {1}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View all problems that require peer assessment in this particular course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View ungraded submissions submitted by students for the open ended problems " +"in the course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View open ended problems that you have previously submitted for grading." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "View submissions that have been flagged by students as inappropriate." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +#: lms/djangoapps/open_ended_grading/views.py +msgid "New submissions to grade" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "New grades have been returned" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "Submissions have been flagged for review" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"\n" +" Error with initializing peer grading.\n" +" There has not been a peer grading module created in the courseware that would allow you to grade others.\n" +" Please check back later for this.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Order Payment Confirmation" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Trying to add a different currency into the cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Please visit your dashboard to see your new" +" enrollments." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "[Refund] User-Requested Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Mode {mode} does not exist for {course_id}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Certificate of Achievement, {mode_name} for course {course}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Note - you have up to 2 weeks into the course to unenroll from the Verified " +"Certificate option and receive a full refund. To receive your refund, " +"contact {billing_email}. Please include your order number in your e-mail. " +"Please do NOT include your credit card information." +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order Number" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Customer Name" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Original Transaction" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Amount of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "Service Fees (if any)" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Purchase Time" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order ID" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Status" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +msgid "Quantity" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Unit Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Currency" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: wiki/plugins/attachments/forms.py +msgid "Description" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Comments" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "University" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html +#: cms/templates/widgets/header.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Course" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Announce Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html +msgid "Course Start Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Close Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Period" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Enrolled" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Audit Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Honor Code Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Verified Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue over the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Verified Students Contributing More than the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Dollars Refunded" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Transactions" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Payments Collected" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Successful Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Amount of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You must be logged-in to add to a shopping cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course you requested does not exist." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course {0} is already in your cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "You are already registered in course {0}." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Course added to cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You do not have permission to view this page." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor did not return a required parameter: {0}" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor returned a badly-typed value {0} for param {1}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The payment processor accepted an order whose number is not in our system." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The amount charged by the processor {0} {1} is different than the total cost" +" of the order {2} {3}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor did not accept your payment.\n" +" The decision they returned was {decision},\n" +" and the reason was {reason_code}:{reason_msg}.\n" +" You were not charged. Please try a different form of payment.\n" +" Contact us with payment-related questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a payment confirmation that had inconsistent data!\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" The specific error message is: {msg}.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Due to an error your purchase was charged for a different amount than the order total!\n" +" The specific error message is: {msg}.\n" +" Your credit card has probably been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a corrupted message regarding your charge, so we are\n" +" unable to validate that the message actually came from the payment processor.\n" +" The specific error message is: {msg}.\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Successful transaction." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request is missing one or more required fields." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "One or more fields in the request contains invalid data." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The merchantReferenceCode sent with this authorization request matches the\n" +" merchantReferenceCode of another authorization request that you sent in the last 15 minutes.\n" +" Possible fix: retry the payment after 15 minutes.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Error: General system failure. Possible fix: retry the payment after a few " +"minutes." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received but there was a server timeout.\n" +" This error does not include timeouts between the client and the server.\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but a service did not finish running in time\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The issuing bank has questions about the request. Possible fix: retry with " +"another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Expired card. You might also receive this if the expiration date you\n" +" provided does not match the date the issuing bank has on file.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" General decline of the card. No other information provided by the issuing bank.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Insufficient funds in the account. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Unknown reason" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Issuing bank unavailable. Possible fix: retry again after a few minutes" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Inactive card or card not authorized for card-not-present transactions.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The card has reached the credit limit. Possible fix: retry with another form" +" of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid card verification number. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid account number. Possible fix: retry with another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type is not accepted by the payment processor.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"General decline by the processor. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" There is a problem with our CyberSource merchant configuration. Please let us know at {0}\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The requested amount exceeds the originally authorized amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Processor Failure. Possible fix: retry the payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The authorization has already been captured" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The requested transaction amount must match the previous transaction amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type sent is invalid or does not correlate with the credit card number.\n" +" Possible fix: retry with the same card or another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request ID is invalid." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" You requested a capture through the API, but there is no corresponding, unused authorization record.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The transaction has already been settled or reversed." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The capture or credit is not voidable because the capture or credit information has already been\n" +" submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "You requested a credit for a capture that was previously voided" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but there was a timeout at the payment processor.\n" +" Possible fix: retry the payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource.'\n" +" Possible fix: retry with a different form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Reports" +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "" +"There was an error in your date input. It should be formatted as YYYY-MM-DD" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "No photo ID was provided." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "We couldn't read your name from your photo ID image." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "" +"The name associated with your account and the name on your ID do not match." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "The image of your face was not clear." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "Your face was not visible in your self-photo" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "There was an error verifying your ID photos." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Selected price is not valid number." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "This course doesn't support verified certificates" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "No selected price or selected price is below minimum." +msgstr "" + +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html +msgid "Skip to this view's content" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +#: lms/templates/registration/password_reset_complete.html +msgid "Your Password Reset is Complete" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +msgid "" +"\n" +" Your password has been set. You may go ahead and %(link_start)slog in%(link_end)s now.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Form" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" We're sorry, %(platform_name)s enrollment is not available in your region\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The following errors occurred while processing your registration: " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "You must complete all fields." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The two password fields didn't match." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"We're sorry, our systems seem to be having trouble processing your password " +"reset" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Someone has been made aware of this issue. Please try again shortly. Please %(start_link)scontact us%(end_link)s about any concerns you have.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"Please enter your new password twice so we can verify you typed it in " +"correctly.
Required fields are noted by bold text and an asterisk (*)." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: lms/templates/forgot_password_modal.html lms/templates/login.html +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Required Information" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password Again" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Change My Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your Password Reset Was Unsuccessful" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" The password reset link was invalid, possibly because the link has already been used. Please return to the %(start_link)slogin page%(end_link)s and start the password reset process again.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Help" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: cms/templates/login.html lms/templates/login-sidebar.html +#: lms/templates/register-sidebar.html +msgid "Need Help?" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" View our %(start_link)shelp section for contact information and answers to commonly asked questions%(end_link)s\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"You're receiving this e-mail because you requested a password reset for your" +" user account at edx.org." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet reset your password." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Thanks for using our site!" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "The edX Team" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "Last modified:" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "See all children" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "This article was last modified:" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/create.html.py +msgid "Add new article" +msgstr "" + +#: lms/templates/wiki/create.html +msgid "Create article" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/delete.html +#: lms/templates/wiki/delete.html.py +msgid "Go back" +msgstr "" + +#: lms/templates/wiki/delete.html lms/templates/wiki/delete.html.py +#: lms/templates/wiki/edit.html +msgid "Delete article" +msgstr "" + +#: lms/templates/wiki/delete.html +#: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Delete" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You cannot delete a root article." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You cannot delete this article because you do not have permission to delete " +"articles with children. Try to remove the children manually one-by-one." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You are deleting an article. This means that its children will be deleted as" +" well. If you choose to purge, children will also be purged!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "Articles that will be deleted" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "...and more!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You are deleting an article. Please confirm." +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/wiki/includes/article_menu.html +msgid "Edit" +msgstr "" + +#: lms/templates/wiki/edit.html lms/templates/wiki/edit.html.py +msgid "Save changes" +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/unit.html +msgid "Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this is a control to allow users to exit out of this modal +#. interface (a menu or piece of UI that takes the full focus of the screen) +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/modal/_modal-settings-language.html +#: lms/templates/modal/accessible_confirm.html +msgid "Close" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Wiki Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html +#: lms/templates/modal/_modal-settings-language.html +msgid "window open" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Back to editor" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "History" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"Click each revision to see a list of edited lines. Click the Preview button " +"to see how the article looked at this stage. At the bottom of this page, you" +" can change to a particular revision or merge an old revision with the " +"current one." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "(no log message)" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Preview this revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Auto log:" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Change" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Merge selected with current..." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Switch to selected version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Wiki Revision Preview" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Back to history view" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Switch to this version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge Revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge with current" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"When you merge a revision with the current, all data will be retained from " +"both versions and merged at its approximate location from each revision." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "After this, it's important to do a manual review." +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Create new merged version" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing revision:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing a merge between two revisions:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "This revision has been deleted." +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Restoring to this revision will mark the article as deleted." +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "" +"\n" +" You need to log in or sign up to use this function.\n" +" " +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in or sign up to use this function." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Cheatsheet" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Syntax Help" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"This wiki uses Markdown for styling. There are several " +"useful guides online. See any of the links below for in-depth details:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Markdown: Basics" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quick Markdown Syntax Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Miniature Markdown Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"To create a new wiki article, create a link to it. Clicking the link gives " +"you the creation page." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "[Article Name](wiki:ArticleName)" +msgstr "" + +#. Translators: Do not translate "edX" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Additions:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Math Expression" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Useful examples:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wikipedia" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Wiki" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Huge Header" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Smaller Header" +msgstr "" + +#. Translators: Leave the punctuation, but translate "emphasis" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "*emphasis* or _emphasis_" +msgstr "" + +#. Translators: Leave the punctuation, but translate "strong" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "**strong** or __strong__" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Unordered List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 1" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 2" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Ordered" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quotes" +msgstr "" + +#: lms/templates/wiki/includes/editor_widget.html +msgid "" +"\n" +" Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for help.\n" +" " +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/wiki_plugin.py +msgid "Attachments" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload new file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search and add file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload File" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search files and articles" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"You can reuse files from other articles. These files are subject to updates " +"on other articles which may or may not be a good thing." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"The following files are available for this article. Copy the markdown tag to" +" directly refer to a file from the article text." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Markdown tag" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Uploaded by" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Size" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File History" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Detach" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Replace" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Restore" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "anonymous (IP logged)" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File history" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "revisions" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "There are no attachments for this article." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Invalid course update id." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Course update not found." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " +"configure a different path with GIT_REPO_EXPORT_DIR" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Non writable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"If using http urls, you must provide the username and password in the url. " +"Similar to https://user:pass@github.com/user/course." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to determine branch, repo in detached HEAD mode" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to update or clone git repository." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to export course to xml." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to configure git username and password" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to commit changes. This is usually because there are no changes to be" +" committed" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to push changes. This is usually because the remote repository " +"cannot be contacted" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Bad course location provided" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Missing branch on fresh clone" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command was: {0!r}. Working directory was: {1!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command output was: {0!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Directory already exists, doing a git reset and pull instead of git clone." +msgstr "" + +#: cms/djangoapps/contentstore/utils.py lms/templates/notes.html +msgid "My Notes" +msgstr "" + +#: cms/djangoapps/contentstore/management/commands/git_export.py +msgid "" +"Take the specified course and attempt to export it to a git repository\n" +". Course directory must already be a git repository. Usage: git_export " +msgstr "" + +#: cms/djangoapps/contentstore/views/assets.py +msgid "Upload completed" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Special characters not allowed in organization, course number, and course " +"run." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Unable to create course '{name}'.\n" +"\n" +"{err}" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization, course number," +" and course run. Please change either organization or course number to be " +"unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Please change either the organization or course number so that it is unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization and course " +"number. Please change at least one field to be unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/export_git.py +msgid "Course successfully exported to git repository" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "We only support uploading a .tar.gz file." +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "File upload corrupted. Please try again" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "Could not find the course.xml file in the package." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of {0}" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of '{0}'" +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Incoming video data is empty." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Can't find item by locator." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Transcripts are supported only for \"video\" modules." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Insufficient permissions" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Could not find user by email address '{email}'." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "User {email} has registered but has not yet activated his/her account." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "`role` is required" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Only instructors may create other instructors" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "You may not remove the last instructor from a course" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "unrequested" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "pending" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "granted" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "denied" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Studio user" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "The date when state was last updated" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Current course creator state" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "" +"Optional notes about this user (for example, why course creation access was " +"denied)" +msgstr "" + +#: cms/templates/404.html cms/templates/error.html +#: lms/templates/static_templates/404.html +msgid "Page Not Found" +msgstr "" + +#: cms/templates/404.html lms/templates/static_templates/404.html +msgid "Page not found" +msgstr "" + +#: cms/templates/asset_index.html lms/templates/courseware/courseware.html +#: lms/templates/verify_student/_modal_editname.html +msgid "close" +msgstr "" + +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." +msgstr "" + +#. Translators: this is a verb describing the action of viewing more details +#: cms/templates/container_xblock_component.html +#: lms/templates/wiki/includes/article_menu.html +msgid "View" +msgstr "" + +#: cms/templates/html_error.html lms/templates/module-error.html +msgid "Error:" +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +#: lms/templates/courseware/course_about.html +msgid "Course Number" +msgstr "" + +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Organization:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Number:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Pending" +msgstr "" + +#: cms/templates/login.html lms/templates/login.html +#: lms/templates/university_profile/edge.html +msgid "Forgot password?" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/login.html lms/templates/provider_login.html +#: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Password" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + +#: cms/templates/manage_users.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Admin" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + +#: cms/templates/register.html cms/templates/widgets/header.html +#: lms/templates/index.html +msgid "Sign Up" +msgstr "" + +#: cms/templates/register.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "Public Username" +msgstr "" + +#: cms/templates/register.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "Preferred Language" +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Thanks for activating your account." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "This account has already been activated." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Visit your {link_start}dashboard{link_end} to see your courses." +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html +#: lms/templates/static_templates/tos.html +msgid "Terms of Service" +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/footer.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/privacy.html +msgid "Privacy Policy" +msgstr "" + +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py +msgid "Help" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Register for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sorry, there was an error when trying to register you" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your track:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Certificate of Achievement (ID Verified)" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your contribution for this course (min. $" +msgstr "" + +#: common/templates/course_modes/choose.html +#: lms/templates/verify_student/photo_verification.html +msgid "):" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay? What if I don't meet all the requirements?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"As a not-for-profit, edX uses your contribution to support our mission to " +"provide quality education to everyone around the world, and to improve " +"learning through research. While we have established a minimum fee, we ask " +"that you contribute as much as you can." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"I'd like to pay more than the minimum. Is my contribution tax deductible?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please check with your tax advisor to determine whether your contribution is" +" tax deductible." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What if I can't afford it or don't have the necessary equipment?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"If you can't afford the minimum fee or don't meet the requirements, you can " +"audit the course or elect to pursue an honor code certificate at no cost. If" +" you would like to pursue the honor code certificate, please check the honor" +" code certificate box, tell us why you can't pursue the verified certificate" +" below, and then click the 'Select Certificate' button to complete your " +"registration." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Honor Code Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Explain your situation: " +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please write a few sentences about why you'd like to opt out of the paid " +"verified certificate to pursue the honor code certificate:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Verified Registration Requirements" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To upgrade your registration and work towards a Verified Certificate of " +"Achievement, you will need a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To register for a Verified Certificate of Achievement option, you will need " +"a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What is an ID Verified Certificate?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"An ID Verified Certificate requires proof of your identity through your " +"photo and ID and is checked throughout the course to verify that it is you " +"who earned the passing grade." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "or" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Audit This Course" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up to audit this course for free and track your own progress." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Audit" +msgstr "" + +#: lms/templates/admin_dashboard.html +msgid "{platform_name}-wide Summary" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/open_ended_problems/combined_notifications.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Instructions" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "Collapse Instructions" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Guided Discussion" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Hide Annotations" +msgstr "" + +#: lms/templates/contact.html lms/templates/static_templates/about.html +#: lms/templates/static_templates/about.html +msgid "Vision" +msgstr "" + +#: lms/templates/contact.html +msgid "Faq" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +msgid "Press" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/contact.html +msgid "Contact" +msgstr "" + +#: lms/templates/contact.html +msgid "Class Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"We are always seeking feedback to improve our courses. If you are an " +"enrolled student and have any questions, feedback, suggestions, or any other" +" issues specific to a particular class, please post on the discussion forums" +" of that class." +msgstr "" + +#: lms/templates/contact.html +msgid "General Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." +msgstr "" + +#: lms/templates/contact.html +msgid "Technical Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have suggestions/feedback about the overall {platform_name} platform," +" or are facing general technical issues with the platform (e.g., issues with" +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Media" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"Please visit our {link_start}media/press page{link_end} for more " +"information. For any media or press inquiries, please email {email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Universities" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you are a university wishing to collaborate with or if you have questions" +" about {platform_name}, please email {email}." +msgstr "" + +#: lms/templates/course.html +msgid "New" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Dashboard" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/courseware/course_about.html +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "An error occurred. Please try again later." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please verify your new email" +msgstr "" + +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "edit" +msgstr "" + +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Reset Password" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Current Courses" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't registered for any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Find courses now!" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't been enrolled in any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Course-loading errors" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Email Settings for {course_number}" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Receive course emails" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Save Settings" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Password Reset Email Sent" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"An email has been sent to {email}. Follow the link in the email to change " +"your password." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Change Email" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please enter your new email address:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please confirm your password:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"We will send a confirmation to both {email} and your new email as part of " +"the process." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change your name" +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"To uphold the credibility of your {platform} {cert_name_short}, all name " +"changes will be logged and recorded." +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"Enter your desired full name, as it will appear on your {platform} " +"{cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/verify_student/_modal_editname.html +msgid "Reason for name change:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change My Name" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +" {course_number}? " +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Unregister" +msgstr "" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +msgid "E-mail change failed" +msgstr "" + +#: lms/templates/email_change_failed.html +msgid "We were unable to send a confirmation email to {email}" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +#: lms/templates/invalid_email_key.html +msgid "Go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "E-mail change successful!" +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "You should see your new email in your {link_start}dashboard{link_end}." +msgstr "" + +#: lms/templates/email_exists.html +msgid "An account with the new e-mail address already exists." +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Student Enrollment Form" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Course: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Add new students" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Existing students:" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "New students added: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Students rejected: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Debug: " +msgstr "" + +#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +msgid "External Authentication failed" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Due:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Status:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have successfully gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have not yet gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Completed puzzles" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Level" +msgstr "" + +#: lms/templates/folditbasic.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Submitted" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Puzzle Leaderboard" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "User" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Score" +msgstr "" + +#: lms/templates/footer.html +msgid "About" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/jobs.html +msgid "Jobs" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/faq.html +#: lms/templates/static_templates/faq.html +msgid "FAQ" +msgstr "" + +#: lms/templates/footer.html +msgid "{platform_name} Logo" +msgstr "" + +#: lms/templates/footer.html +msgid "" +"{platform_name} is a non-profit created by founding partners {Harvard} and " +"{MIT} whose mission is to bring the best of higher education to students of " +"all ages anywhere in the world, wherever there is Internet access. " +"{platform_name}'s free online MOOCs are interactive and subjects include " +"computer science, public health, and artificial intelligence." +msgstr "" + +#: lms/templates/footer.html +msgid "© 2014 {platform_name}, some rights reserved." +msgstr "" + +#: lms/templates/footer.html +msgid "Terms of Service and Honor Code" +msgstr "" + +#: lms/templates/forgot_password_modal.html +#: lms/templates/forgot_password_modal.html +msgid "Password Reset" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "" +"Please enter your e-mail address below, and we will e-mail instructions for " +"setting a new password." +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Your E-mail Address" +msgstr "" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +msgid "This is the e-mail address you used to register with {platform}" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Reset My Password" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Email is incorrect." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +msgid "{platform_name} Help" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"For questions on course lectures, homework, tools, or materials for " +"this course, post in the {link_start}course discussion " +"forum{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have general questions about {platform_name}? You can find " +"lots of helpful information in the {platform_name} " +"{link_start}FAQ{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have a question about something specific? You can contact " +"the {platform_name} general support team directly:" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Please note: The {platform_name} support team is English speaking. While we " +"will do our best to address your inquiry in any language, our responses will" +" be in English." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/login.html +#: lms/templates/provider_login.html lms/templates/provider_login.html +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "E-mail" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Briefly describe your issue" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Tell us the details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +#: lms/templates/instructor/staff_grading.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Submit" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Thank You!" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Thank you for your inquiry or feedback. We typically respond to a request " +"within one business day (Monday to Friday, {open_time} UTC to {close_time} " +"UTC.) In the meantime, please review our {link_start}detailed FAQs{link_end}" +" where most questions have already been answered." +msgstr "" + +#: lms/templates/help_modal.html +msgid "problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a Problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of the problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Details of the problem you are encountering" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc." +msgstr "" + +#: lms/templates/help_modal.html +msgid "suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a Suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of your suggestion" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/module-error.html +msgid "Details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a Question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief summary of your question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "An error has occurred." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please {link_start}send us e-mail{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please try again later." +msgstr "" + +#: lms/templates/index.html +msgid "Free courses from {university_name}" +msgstr "" + +#: lms/templates/index.html +msgid "The Future of Online Education" +msgstr "" + +#: lms/templates/index.html +msgid "For anyone, anywhere, anytime" +msgstr "" + +#: lms/templates/index.html +msgid "Stay up to date with all {platform_name} has to offer!" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Invalid email change key" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "This e-mail key is not valid. Please check:" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "" +"Was this key already used? Check whether the e-mail change has already " +"happened." +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Did your e-mail client break the URL into two lines?" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "The keys are valid for a limited amount of time. Has the key expired?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Helpful Information" +msgstr "" + +#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +msgid "Login via OpenID" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "" +"You can now start learning with {platform_name} by logging in with your OpenID account." +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Not Enrolled?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Sign up for {platform_name} today!" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Looking for help in logging in or with your {platform_name} account?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "View our help section for answers to commonly asked questions." +msgstr "" + +#: lms/templates/login.html +msgid "Log into your {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Log into My {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Access My Courses" +msgstr "" + +#: lms/templates/login.html lms/templates/register.html +msgid "Processing your account information…" +msgstr "" + +#: lms/templates/login.html +msgid "Please log in" +msgstr "" + +#: lms/templates/login.html +msgid "to access your account and courses" +msgstr "" + +#: lms/templates/login.html +msgid "We're Sorry, {platform_name} accounts are unavailable currently" +msgstr "" + +#: lms/templates/login.html +msgid "The following errors occurred while logging you in:" +msgstr "" + +#: lms/templates/login.html +msgid "Your email or password is incorrect" +msgstr "" + +#: lms/templates/login.html +msgid "" +"Please provide the following information to log into your {platform_name} " +"account. Required fields are noted by bold text " +"and an asterisk (*)." +msgstr "" + +#: lms/templates/login.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +msgid "example: username@domain.com" +msgstr "" + +#: lms/templates/login.html +msgid "Account Preferences" +msgstr "" + +#: lms/templates/login.html +msgid "Remember me" +msgstr "" + +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS +#: lms/templates/lti.html +msgid "External resource" +msgstr "" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + +#: lms/templates/lti.html +msgid "View resource in a new window" +msgstr "" + +#: lms/templates/lti.html +msgid "" +"Please provide launch_url. Click \"Edit\", and fill in the required fields." +msgstr "" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable or Reenable student accounts" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Username:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Reenable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Students whose accounts have been disabled" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "(reload your page to refresh)" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "working..." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"This page features MathJax technology to render mathematical formulae. To " +"make math accessibile, we suggest using the MathPlayer plugin. Please visit " +"the {link_start}MathPlayer Download Page{link_end} to download the plugin " +"for your browser." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"Your browser does not support the MathPlayer plugin. To use MathPlayer, " +"please use Internet Explorer 6 through 9." +msgstr "" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" +msgstr "" + +#: lms/templates/module-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/module-error.html +msgid "Raw data:" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Accepted" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Error" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Rejected" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Pending name changes" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/modal/accessible_confirm.html +msgid "Confirm" +msgstr "" + +#: lms/templates/name_changes.html +msgid "[Reject]" +msgstr "" + +#: lms/templates/navigation.html +msgid "Global Navigation" +msgstr "" + +#: lms/templates/navigation.html +msgid "Find Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Dashboard for:" +msgstr "" + +#: lms/templates/navigation.html +msgid "More options dropdown" +msgstr "" + +#: lms/templates/navigation.html +msgid "Log Out" +msgstr "" + +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + +#: lms/templates/navigation.html +msgid "How it Works" +msgstr "" + +#: lms/templates/navigation.html lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/courseware/courses.html +msgid "Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Schools" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Register Now" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Log in" +msgstr "" + +#: lms/templates/navigation.html +msgid "" +"Warning: Your browser is not fully supported. We strongly " +"recommend using {chrome_link_start}Chrome{chrome_link_end} or " +"{ff_link_start}Firefox{ff_link_end}." +msgstr "" + +#: lms/templates/notes.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "You do not have any notes." +msgstr "" + +#: lms/templates/problem.html +msgid "Reset" +msgstr "" + +#: lms/templates/problem.html +msgid "Show Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "Reveal Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "You have used {num_used} of {num_total} submissions" +msgstr "" + +#: lms/templates/provider_login.html +#: lms/templates/university_profile/edge.html +msgid "Log In" +msgstr "" + +#: lms/templates/provider_login.html +msgid "" +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." +msgstr "" + +#: lms/templates/provider_login.html +msgid "Return To %s" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Preferences for {platform_name}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update my {platform_name} Account" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Processing your account information …" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Welcome {username}! Please set your preferences below" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"We're sorry, {platform_name} enrollment is not available in your region" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "The following errors occurred while processing your registration:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"Required fields are noted by bold text and an " +"asterisk (*)." +msgstr "" + +#: lms/templates/register-shib.html lms/templates/signup_modal.html +msgid "Enter a public username:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "example: JaneDoe" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "Will be shown in any discussions or forums you participate in" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Account Acknowledgements" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Terms of Service{link_end}" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Honor Code{link_end}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update My Account" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Registration Help" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Already registered?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Click here to log in." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Registering with {platform_name} gives you access to all of our current and " +"future free courses. Not ready to take a course just yet? Registering puts " +"you on our mailing list - we will update you as courses are added." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Next Steps" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"You will receive an activation email. You must click on the activation link" +" to complete the process. Don't see the email? Check your spam folder and " +"mark emails from class.stanford.edu as 'not spam', since you'll want to be " +"able to receive email from your courses." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"As part of joining {platform_name}, you will receive an activation email. " +"You must click on the activation link to complete the process. Don't see " +"the email? Check your spam folder and mark {platform_name} emails as 'not " +"spam'. At {platform_name}, we communicate mostly through email." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Need help in registering with {platform_name}?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "View our FAQs for answers to commonly asked questions." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Once registered, most questions can be answered in the course specific " +"discussion forums or through the FAQs." +msgstr "" + +#: lms/templates/register.html +msgid "Register for {platform_name}" +msgstr "" + +#: lms/templates/register.html +msgid "Create My {platform_name} Account" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome!" +msgstr "" + +#: lms/templates/register.html +msgid "Register below to create your {platform_name} account" +msgstr "" + +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + +#: lms/templates/register.html +msgid "Please complete the following fields to register for an account. " +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "cannot be changed later" +msgstr "" + +#: lms/templates/register.html lms/templates/verify_student/face_upload.html +msgid "example: Jane Doe" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Needed for any certificates you may earn" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome {username}" +msgstr "" + +#: lms/templates/register.html +msgid "Enter a Public Display Name:" +msgstr "" + +#: lms/templates/register.html +msgid "Public Display Name" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Extra Personal Information" +msgstr "" + +#: lms/templates/register.html +msgid "City" +msgstr "" + +#: lms/templates/register.html +msgid "example: New York" +msgstr "" + +#: lms/templates/register.html +msgid "Country" +msgstr "" + +#: lms/templates/register.html +msgid "Highest Level of Education Completed" +msgstr "" + +#: lms/templates/register.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Year of Birth" +msgstr "" + +#: lms/templates/register.html +msgid "Please share with us your reasons for registering with {platform_name}" +msgstr "" + +#: lms/templates/register.html lms/templates/university_profile/edge.html +msgid "Register" +msgstr "" + +#: lms/templates/register.html lms/templates/signup_modal.html +msgid "Create My Account" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "Re-subscribe Successful!" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "" +"You have re-enabled forum notification emails from {platform_name}. Click " +"{dashboard_link_start}here{link_end} to return to your dashboard. " +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Previous" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +msgid "Section Navigation" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Next" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Sign Up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname@domain.com" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname (shown on forums)" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. Your Name (for certificates)" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Welcome {name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Ed. Completed" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Year of birth" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Mailing address" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Goals in signing up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Already have an account?" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Login." +msgstr "" + +#. Translators: The 'Group' here refers to the group of users that has been +#. sorted into group_id +#: lms/templates/split_test_staff_view.html +msgid "Group {group_id}" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug Info" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission history" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "{platform_name} Content Quality Assessment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Optional tag (eg \"done\" or \"broken\"):" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Add comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug" +msgstr "" + +#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +msgid "Module Fields" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "XML attributes" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission History Viewer" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "User:" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "View History" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "{course_number} Textbook" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "Textbook Navigation" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Previous page" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Next page" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Sysadmin Dashboard" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Users" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Staffing and Enrollment" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Logs" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "User Management" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Email or username" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Create user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download list of all users (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Check and repair external authentication map" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "" +"Go to each individual course's Instructor dashboard to manage course " +"enrollment." +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Manage course staff and instructors" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download staff and instructor list (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Administer Courses" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Location" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware and branch is a specific version within that repository +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Branch (optional)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Load new course from github" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Course ID or dir" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete course from site" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Django PID" +msgstr "" + +#. Translators: A version number appears after this string +#: lms/templates/sysadmin_dashboard.html +msgid "Platform Version" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Date" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Course ID" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Action" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Recent git load activity for" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "git action" +msgstr "" + +#: lms/templates/textannotation.html +msgid "Source:" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "Tracking Log" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "datetime" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "ipaddr" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "source" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "type" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "Unsubscribe Successful!" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "" +"You will no longer receive forum notification emails from {platform_name}. " +"Click {dashboard_link_start}here{link_end} to return to your dashboard. If " +"you did not mean to do this, click {undo_link_start}here{link_end} to re-" +"subscribe." +msgstr "" + +#: lms/templates/using.html +msgid "Using the system" +msgstr "" + +#: lms/templates/using.html +msgid "" +"During video playback, use the subtitles and the scroll bar to navigate. " +"Clicking the subtitles is a fast way to skip forwards and backwards by small" +" amounts." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you are on a low-resolution display, the left navigation bar can be " +"hidden by clicking on the set of three left arrows next to it." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you need bigger or smaller fonts, use your browsers settings to scale " +"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" +" ctrl-minus at the same time." +msgstr "" + +#: lms/templates/video.html +msgid "Skip to a navigable version of this video's transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Loading video player" +msgstr "" + +#: lms/templates/video.html +msgid "Play video" +msgstr "" + +#: lms/templates/video.html +msgid "Video position" +msgstr "" + +#: lms/templates/video.html +msgid "Play" +msgstr "" + +#: lms/templates/video.html +msgid "Speeds" +msgstr "" + +#: lms/templates/video.html +msgid "Speed" +msgstr "" + +#: lms/templates/video.html +msgid "Volume" +msgstr "" + +#: lms/templates/video.html +msgid "Fill browser" +msgstr "" + +#: lms/templates/video.html +msgid "HD off" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Turn off captions" +msgstr "" + +#: lms/templates/video.html +msgid "Skip to end of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "" +"Activating an item in this group will spool the video to the corresponding " +"time point. To skip transcript, go to previous item." +msgstr "" + +#: lms/templates/video.html +msgid "Go back to start of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Download video" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Download transcript" +msgstr "" + +#: lms/templates/video.html +msgid "Download Handout" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Your words:" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Total number of words:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Open Response" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Assessments:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Hide Question" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "New Submission" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Next Step" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "" +"Staff Warning: Please note that if you submit a duplicate of text that has " +"already been submitted for grading, it will not show up in the staff grading" +" view. It will be given the same grade that the original received " +"automatically, and will be returned within 30 minutes if the original is " +"already graded, or when the original is graded if not." +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_legend.html +msgid "Legend" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Submitted Rubric" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Toggle Full Rubric" +msgstr "" + +#. Translators: an example of what this string will look +#. like is: "Scored rubric from grader 1", where +#. "Scored rubric" replaces {result_of_task} and +#. "1" replaces {number}. +#. This string appears when a user is viewing one of +#. their graded rubrics for an openended response problem. +#. the number distinguishes between the different +#. graded rubrics the user might have received +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "{result_of_task} from grader {number}" +msgstr "" + +#. Translators: "See full feedback" is the text of +#. a link that allows a user to see more detailed +#. feedback from a self, peer, or instructor +#. graded openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +msgid "See full feedback" +msgstr "" + +#. Translators: this text forms a link that, when +#. clicked, allows a user to respond to the feedback +#. the user received on his or her openended problem +#. Translators: when "Respond to Feedback" is clicked, a survey +#. appears on which a user can respond to the feedback the user +#. received on an openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Respond to Feedback" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "How accurate do you find this feedback?" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "No Opinion" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Additional comments:" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Submit Feedback" +msgstr "" + +#. Translators: "Response" labels an area that contains the user's +#. Response to an openended problem. It is a noun. +#. Translators: "Response" labels a text area into which a user enters +#. his or her response to a prompt from an openended problem. +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Response" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Unanswered" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Skip Post-Assessment" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_combined_rubric.html +msgid "{num} point: {explanatory_text}" +msgid_plural "{num} points: {explanatory_text}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lms/templates/combinedopenended/openended/open_ended_error.html +msgid "There was an error with your submission. Please contact course staff." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "Rubric" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "" +"Select the criteria you feel best represents this submission in each " +"category." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "{num} point: {text}" +msgid_plural "{num} points: {text}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lms/templates/combinedopenended/selfassessment/self_assessment_hint.html +msgid "Please enter a hint below:" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohort groups" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Show cohorts" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohorts in the course" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add users by username or email. One per line or comma-separated." +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort members" +msgstr "" + +#: lms/templates/courseware/accordion.html +msgid "{chapter}, current chapter" +msgstr "" + +#: lms/templates/courseware/accordion.html +#: lms/templates/courseware/progress.html +msgid "due {date}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"The currently logged-in user account does not have permission to enroll in " +"this course. You may need to {start_logout_tag}log out{end_tag} then try the" +" register button again. Please visit the {start_help_tag}help page{end_tag} " +"for a possible solution." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "About {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "You are registered for this course" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View Courseware" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "This course is in your cart." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"Add {course.display_number_with_default} to Cart ({currency_symbol}{cost})" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Register for {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Overview" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Share with friends and family!" +msgstr "" + +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes Start" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes End" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Estimated Effort" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Prerequisites" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Additional Resources" +msgstr "" + +#. Translators: 'needs attention' is an alternative string for the +#. notification image that indicates the tab "needs attention". +#: lms/templates/courseware/course_navigation.html +msgid "needs attention" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/course_navigation.html +msgid "Staff view" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +msgid "Student view" +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from leading universities." +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from {university_name}." +msgstr "" + +#: lms/templates/courseware/courseware-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "{course_number} Courseware" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Return to Exam" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Course Navigation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Open Calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Input Field" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "" +"Use the arrow keys to navigate the tips or use the tab key to return to the " +"calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Hints" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Integers" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Decimals" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Scientific notation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Appending SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Supported SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Operators" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "parallel resistors function" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Functions" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Constants" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Euler's number" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "ratio of a circle's circumference to it's diameter" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Boltzmann constant" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "speed of light" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "freezing point of water in degrees Kelvin" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "fundamental charge" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculate" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Output Field" +msgstr "" + +#: lms/templates/courseware/error-message.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {link_to_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/grade_summary.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade summary" +msgstr "" + +#: lms/templates/courseware/grade_summary.html +msgid "Not implemented yet" +msgstr "" + +#: lms/templates/courseware/gradebook.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "Search students" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "{course_number} Course Info" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + +#: lms/templates/courseware/info.html lms/templates/courseware/info.html +msgid "Course Updates & News" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Handout Navigation" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Course Handouts" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Instructor Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Try New Beta Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Psychometrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Forum Admin" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "DataDump" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Manage Groups" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Metrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade Downloads" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Note: some of these buttons are known to time out for larger courses. We " +"have temporarily disabled those features for courses with more than " +"{max_enrollment} students. We are urgently working on fixing this issue. " +"Thank you for your patience as we continue working to improve the platform!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Export grades to remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"The assignments defined for this course should match the ones stored in the " +"gradebook, for this to work properly!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Assignment name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Course-specific grade adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Specify a particular problem in the course here by its url:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is " +"i4x://university/course/problem/problemname, then just provide the " +"problemname. If the location is " +"i4x://university/course/notaproblem/someothername, then provide " +"notaproblem/someothername.)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Then select an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"These actions run in the background, and status for active tasks will appear" +" in a table below. To see status for all tasks submitted for this problem, " +"click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student-specific grade inspection and adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Specify the {platform_name} email address or username of a student here:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Click this, and a link to student's progress page will appear below:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may also delete the entire state of a student for the specified module:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" a table below. To see status for all tasks submitted for this problem and " +"student, click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Select a problem and an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"User requires forum administrator privileges to perform administration " +"tasks. See instructor." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Explanation of Roles:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Moderators: can edit or delete any post, remove misuse flags, close " +"and re-open threads, endorse responses, and see posts from all cohorts (if " +"the course is cohorted). Moderators' posts are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Admins: have moderator privileges, as well as the ability to edit the " +"list of forum moderators (e.g. to appoint a new moderator). Admins' posts " +"are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Community TAs: have forum moderator privileges, and their posts are labelled" +" 'Community TA'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment Data" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Pull enrollment from remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Section:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enroll or un-enroll one or many students: enter emails, separated by new " +"lines or commas;" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Notify students by email" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Auto-enroll students when they activate" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Problem urlname:" +msgstr "" + +#. Translators: days_early_for_beta should not be translated +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enter usernames or emails for students who should be beta-testers, one per " +"line, or separated by commas. They will get to see course materials early, " +"as configured via the days_early_for_beta option in the course " +"policy." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send to:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Myself" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Staff and instructors" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "All (students, staff and instructors)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Subject: " +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Max 128 characters)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Please try not to email students more than once per week. Important things " +"to consider before sending:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you read over the email to make sure it says everything you want to " +"say?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you sent the email to yourself first to make sure you're happy with how" +" it's displayed, and that embedded links and images work properly?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "CAUTION!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Once the 'Send Email' button is clicked, your email will be queued for " +"sending." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "A queued email CANNOT be cancelled." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "No Analytics are available at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Students enrolled (historical count, includes those who have since " +"unenrolled):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students active in the last week:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student activity day by day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Score distribution for problems" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Max" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Points Earned (Num Students)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There is no data available to display at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"Loading the latest graphs for you; depending on your class size, this may " +"take a few minutes." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Count of Students that Opened a Subsection" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution per Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There are no problems in this section." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students answering correctly" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Number of students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Student distribution per country, all courses, Sep-12 to Oct-17, 1 server " +"(shown here as an example):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Pending Instructor Tasks" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Type" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task inputs" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Id" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Requester" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task State" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Duration (sec)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Progress" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "unknown" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Course errors" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "About {course_id}" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "Coming Soon" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "About {course_number}" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Access Courseware" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "You Are Registered" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Register for" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Registration Is Closed" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "News - MITx 6.002x" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "Updates to Discussion Posts You Follow" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{course_number} Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress for Student '{username}' ({email})" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{earned:.3n} of {total:.3n} possible points" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Problem Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Practice Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "No problem scores in this section" +msgstr "" + +#: lms/templates/courseware/syllabus.html +msgid "{course.display_number_with_default} Course Info" +msgstr "" + +#: lms/templates/courseware/welcome-back.html +msgid "" +"You were most recently in {section_link}. If you're done with that, choose " +"another section on the left." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Final course details are being wrapped up at this time. Your final standing " +"will be available shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final grade:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required for a {cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your verified {cert_name_long} is being held pending confirmation that the " +"issuance of your {cert_name_short} is in compliance with strict U.S. " +"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " +"mistakenly identified you as being connected with one of those countries, " +"please let us know by contacting {email}. If you would like a refund on your" +" {cert_name_long}, please contact our billing address {billing_email}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your {cert_name_long} is being held pending confirmation that the issuance " +"of your {cert_name_short} is in compliance with strict U.S. embargoes on " +"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " +"identified you as being connected with one of those countries, please let us" +" know by contacting {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your {cert_name_short} is Generating" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open/download a PDF document" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"This link will open/download a PDF document of your verified " +"{cert_name_long}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your ID Verified {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Complete our course feedback survey" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Cover Image" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Enrolled as: " +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +msgid "ID Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Completed - {end_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Started - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course has not yet started" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Starts - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Document your accomplishment!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Challenge Yourself!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Take this course as an ID-verified student." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can still sign up for an ID verified {cert_name_long} for this course. " +"If you plan to complete the whole course, it is a great way to recognize " +"your achievement. {link_start}Learn more about the verified " +"{cert_name_long}{link_end}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Upgrade to Verified Track" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Archived Course" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Course" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Are you sure you want to unregister from" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Are you sure you want to unregister from the verified {cert_name_long} track" +" of" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Email Settings" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "You need to re-verify to continue" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in the following courses, you need to " +"re-verify your identity:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "{course_name}: Re-verify by {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Notification Actions" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course_name}, you need to re-verify" +" your identity by {date}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Your re-verification failed" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"Your re-verification for {course_name} failed and you are no longer eligible" +" for a Verified Certificate. If you think this is in error, please contact " +"us at {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Dismiss" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verification now open for:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verify now:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Pending:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Denied:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Approved:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "ID-Verification Status" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Reviewed and Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Your verification status is good for one year after submission." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification photos have been submitted and will be reviewed shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Re-verify Yourself" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"If you fail to pass a verification attempt before your course ends, you will" +" not receive a verified certificate." +msgstr "" + +#: lms/templates/debug/run_python_form.html +msgid "Results:" +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "" +"Sorry! We can't find anything matching your search. Please try another " +"search." +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "There are no posts here yet. Be the first one to post!" +msgstr "" + +#: lms/templates/discussion/_discussion_course_navigation.html +#: lms/templates/discussion/_discussion_module.html +msgid "New Post" +msgstr "" + +#: lms/templates/discussion/_discussion_module.html +msgid "Show Discussion" +msgstr "" + +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Filter Topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "filter topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Show All Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Show Flagged Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Posts I'm Following" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "follow this post" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously to classmates" +msgstr "" + +#. Translators: This labels the selector for which group of students can view +#. a +#. post +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Make visible to:" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +msgid "My Cohort" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "new post title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: wiki/forms.py wiki/forms.py wiki/forms.py +msgid "Title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Enter your question or comment…" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Add post" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Create new post about:" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter List" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter discussion areas" +msgstr "" + +#: lms/templates/discussion/_recent_active_posts.html +msgid "Following" +msgstr "" + +#: lms/templates/discussion/_search_bar.html +msgid "Search posts" +msgstr "" + +#: lms/templates/discussion/_similar_posts.html +msgid "Hide" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Home" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Topics" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion topics; current selection is: " +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Search all discussions" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Sort by:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "date" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "votes" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "comments" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Show:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View All" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View as {name}" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Add A Response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Post a response:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "anonymous" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "• This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "follow" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow this post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Pin Thread" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Pinned" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "(this post is about %(courseware_title_linked)s)" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Edit post title" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment..." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "endorse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Delete Comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "-posted %(time_ago)s by" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"%(comments_count)s %(span_sr_open)scomments (%(unread_comments_count)s " +"unread comments)%(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(comments_count)s %(span_sr_open)scomments %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(votes_up_count)s%(span_sr_open)s votes %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "DISCUSSION HOME:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "HOW TO USE EDX DISCUSSIONS" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Find discussions" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Focus in on specific topics" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Search for specific posts " +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Sort by date, vote, or comments" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Engage with posts" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Upvote posts and good responses" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Forum Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow posts for updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Receive updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Toggle Notifications Setting" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"Check this box to receive an email digest once a day notifying you about " +"new, unread activity from posts you are following." +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid ", " +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s discussion started" +msgid_plural "%s discussions started" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lms/templates/discussion/index.html +#: lms/templates/discussion/user_profile.html +msgid "Discussion - {course_number}" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "We're sorry" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "" +"The forums are currently undergoing maintenance. We'll have them back up " +"shortly!" +msgstr "" + +#: lms/templates/discussion/user_profile.html +msgid "User Profile" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Collapse discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "This thread has been pinned by course staff." +msgstr "" + +#: lms/templates/discussion/mustache/_pagination.mustache +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "…" +msgstr "" + +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + +#: lms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for {platform_name}! To activate your account, " +"please copy and paste this address into your web browser's address bar:" +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the about section of the {platform_name} Courses web site." +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the {platform_name} web site." +msgstr "" + +#: lms/templates/emails/activation_email_subject.txt +msgid "Your account for {platform_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Dear {full_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "" +"You have been invited to be a beta tester for {course_name} at {site_name} " +"by a member of the course staff." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {course_about_url} to join the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_allowedmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "This email was automatically sent from {site_name} to {email_address}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_subject.txt +msgid "You have been invited to a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us at" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us immediately. Contact information is listed at:" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "" + +#: lms/templates/emails/email_change.txt +msgid "" +"We received a request to change the e-mail associated with your " +"{platform_name} account from {old_email} to {new_email}. If this is correct," +" please confirm your new e-mail address by visiting:" +msgstr "" + +#: lms/templates/emails/email_change_subject.txt +msgid "Request to change {platform_name} account e-mail" +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "Dear student," +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"You have been invited to join {course_name} at {site_name} by a member of " +"the course staff." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "To access the course visit {course_url} and login." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To access the course visit {course_about_url} and register for the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To finish your registration, please visit {registration_url} and fill out " +"the registration form making sure to use {email_address} in the E-mail " +"field." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, you will see " +"{course_name} listed on your dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, visit " +"{course_about_url} to join the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedsubject.txt +msgid "You have been invited to register for {course_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "" +"You have been enrolled in {course_name} at {site_name} by a member of the " +"course staff. The course should now appear on your {site_name} dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "This email was automatically sent from {site_name} to {full_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledsubject.txt +msgid "You have been enrolled in {course_name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Hi {name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"Your payment was successful. You will see the charge below on your next " +"credit or debit card statement." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"The charge will show up on your statement under the company name " +"{merchant_name}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"If you have billing questions, please read the FAQ ({faq_url}) or contact " +"{billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "If you have billing questions, please contact {billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "-The {platform_name} Team" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Your order number is: {order_number}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "The items in your order are:" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Quantity - Description - Price" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/shoppingcart/receipt.html +msgid "#:" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the tech support at" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the course staff at ta@edx.org." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +msgid "" +"You have been removed as a beta tester for {course_name} at {site_name} by a" +" member of the course staff. The course will remain on your dashboard, but " +"you will no longer be part of the beta testing group." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Your other courses have not been affected." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_subject.txt +msgid "You have been removed from a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "Dear Student," +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "" +"You have been un-enrolled from course {course_name} by a member of the " +"course staff. Please disregard the invitation previously sent." +msgstr "" + +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "" +"You have been un-enrolled in {course_name} at {site_name} by a member of the" +" course staff. The course will no longer appear on your {site_name} " +"dashboard." +msgstr "" + +#: lms/templates/emails/unenroll_email_subject.txt +msgid "You have been un-enrolled from {course_name}" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "{course_number} Staff Grading" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"This is the list of problems that currently need to be graded in order to " +"train AI grading and create calibration essays for peer grading. Each " +"problem needs to be treated separately, and we have indicated the number of " +"student submissions that need to be graded. You can grade more than the " +"minimum required number of submissions--this will improve the accuracy of AI" +" grading, though with diminishing returns. You can see the current accuracy " +"of AI grading in the problem view." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Problem List" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"Please note that when you see a submission here, it has been temporarily " +"removed from the grading pool. The submission will return to the grading " +"pool after 30 minutes without any grade being submitted. Hitting the back " +"button will result in a 30 minute wait to be able to grade this submission " +"again." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Prompt" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "(Hide)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Student Response" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Written Feedback" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Feedback for student (optional)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Flag as inappropriate content for later review" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Skip" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Score Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"The chart below displays the score distribution for each standard problem in" +" your class, specified by the problem's url name." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"Scores are shown without weighting applied, so if your problem contains 2 " +"questions, it will display as having a total of 2 points." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Loading problem list..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Gender Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Enrollment Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Total number of enrollees (instructors, staff members, and students)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Basic Course Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Display Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course started?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Yes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course ended?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Grade Cutoffs:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "The status for any active tasks appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Warnings" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 +msgid "" +"For large courses, generating this report may take several hours. Please be " +"patient and do not click the button multiple times. Clicking the button " +"multiple times will significantly slow the grade generation process." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The report is generated in the background, meaning it is OK to navigate away" +" from this page while your report is generating." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Grade Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports Available for Download" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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. +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Note: To keep student data secure, you cannot save or email these " +"links for direct access. Copies of links expire within 5 minutes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Individual due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"In this section, you have the ability to grant extensions on specific units " +"to individual students. Please note that the latest date is always taken; " +"you cannot use this tool to make an assignment due earlier for a particular " +"student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Choose the graded unit:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the extension due date and time (in UTC; please specify MM/DD/YYYY " +"HH:MM)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Change due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Viewing granted extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Here you can see what extensions have been granted on particular units or " +"for a particular student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Choose a graded unit and click the button to obtain a list of all students " +"who have extensions for the given unit." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List all students with due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Specify a specific student to see all of that student's extensions." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List date extensions for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Resetting extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Resetting a problem's due date rescinds a due date extension for a student " +"on a particular unit. This will revert the due date for the student back to " +"the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reset due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Back to Standard Dashboard" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "section_display_name" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"You will not get notification for emails that bounce, so please double-check" +" spelling." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Email Addresses/Usernames" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Auto Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not yet registered for " +"{platform_name} will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is left unchecked, users who have not yet registered" +" for {platform_name} will not be enrolled, but will be allowed to enroll " +"once they make an account." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Notify users by email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users will receive an email " +"notification." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Unenroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Beta Tester Addition" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Note: Users must have an activated {platform_name} account before they can " +"be enrolled as a beta tester." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add beta testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Remove beta testers" +msgstr "" + +#. Translators: an "Administration List" is a list, such as Course Staff, that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Administration List Management" +msgstr "" + +#. Translators: an "Administrator Group" is a group, such as Course Staff, +#. that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Select an Administrator Group:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Getting available lists..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Staff cannot modify staff or beta tester lists. To modify these lists, " +"contact your instructor and ask them to add you as an instructor for staff " +"and beta lists, or a discussion admin for discussion management." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Course Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course staff can help you manage limited aspects of your course. Staff can " +"enroll and unenroll students, as well as modify their grades and see all " +"course data. Course staff are not automatically given access to Studio and " +"will not be able to edit your course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Instructors" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Instructors are the core administration of your course. Instructors can add " +"and remove course staff, as well as administer discussion access." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Instructor" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Beta Testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Beta testers can see course content before the rest of the students. They " +"can make sure that the content works, but have no additional privileges." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Beta Tester" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Admins" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion admins can edit or delete any post, clear misuse flags, close and" +" re-open threads, endorse responses, and see posts from all cohorts. They " +"CAN add/delete other moderators and their posts are marked as 'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Discussion Admin" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Moderators" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion moderators can edit or delete any post, clear misuse flags, close" +" and re-open threads, endorse responses, and see posts from all cohorts. " +"They CANNOT add/delete other moderators and their posts are marked as " +"'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Moderator" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Community TAs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Community TA's are members of the community whom you deem particularly " +"helpful on the discussion boards. They can edit or delete any post, clear " +"misuse flags, close and re-open threads, endorse responses, and see posts " +"from all cohorts. Their posts are marked 'Community TA'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Community TA" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Reload Graphs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Count of Students Opened a Subsection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send Email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Message:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Please try not to email students more than once per week. Before sending " +"your email, consider:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Email actions run in the background. The status for any active tasks - " +"including email tasks - appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"To see the status for all bulk email tasks ever submitted for this course, " +"click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade inspection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Email or Username" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Click this link to view the student's progress page:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Progress Page" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade adjustment" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem urlname" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is {location1}, then just provide the " +"{urlname1}. If the location is {location2}, then provide {urlname2}.)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Next, select an action to perform for the given user and problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset Student Attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Student Submission" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may also delete the entire state of a student for the specified problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Delete Student State for Problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" the 'Pending Instructor Tasks' table. To see status for all tasks submitted" +" for this problem and student, click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Then select an action" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset ALL students' attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore ALL students' problem submissions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"The above actions run in the background, and status for active tasks will " +"appear in a table on the Course Info tab. To see status for all tasks " +"submitted for this problem, click on this button" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Problem" +msgstr "" + +#: lms/templates/licenses/serial_numbers.html +msgid "None Available" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Change Preferred Language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Please choose your preferred language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Save Language Settings" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "" +"Don't see your preferred language? {link_start}Volunteer to become a " +"translator!{link_end}" +msgstr "" + +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/modal/accessible_confirm.html +msgid "modal open" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "{course_number} Combined Notifications" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Open Ended Console" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Here are items that could potentially need your attention." +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "No items require attention at the moment." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "{course_number} Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "" +"Here are a list of open ended problems for this course that have been " +"flagged by students as potentially inappropriate." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "No flagged problems exist." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Unflag" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Ban" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "{course_number} Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Here is a list of open ended problems for this course." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "You have not attempted any open ended problems yet." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Problem Name" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Grader Type" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"\n" +"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" +"{ul_tag}\n" +"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" +"{li_tag}The instructor needs to score the essays that are used to help you better understand the grading\n" +"criteria.{end_li_tag}\n" +"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"Here are a list of problems that need to be peer graded for this course." +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Graded" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Available" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Required" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "No due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "" +"The due date has passed, and peer grading for this problem is closed at this" +" time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "The due date has passed, and peer grading is closed at this time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to Grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Please include some written feedback as well." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"This submission has explicit, offensive, or (I suspect) plagiarized content." +" " +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "How did I do?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Continue" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Ready to grade!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You have finished learning to grade, which means that you are now ready to " +"start grading." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start Grading!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "You have not yet finished learning to grade this problem." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You will now be shown a series of instructor-scored essays, and will be " +"asked to score them yourself." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"Once you can score the essays similarly to an instructor, you will be ready " +"to grade your peers." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Are you sure that you want to flag this submission?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You are about to flag a submission. You should only flag a submission that " +"contains explicit, offensive, or (suspected) plagiarized content. If the " +"submission is not addressed to the question or is incorrect, you should give" +" it a score of zero and accompanying feedback instead of flagging it." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Remove Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Keep Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Go Back" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "Thanks For Registering!" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "" +"Your account is not active yet. An activation link has been sent to {email}," +" along with instructions for activating your account." +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Activation Complete!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Account already active!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "You can now {link_start}log in{link_end}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Activation Invalid" +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "" +"Something went wrong. Check to make sure the URL you went to was correct -- " +"e-mail programs will sometimes split it into two lines. If you still have " +"issues, e-mail us to let us know what happened at {email}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Or you can go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "Password reset successful" +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "" +"We've e-mailed you instructions for setting your password to the e-mail " +"address you submitted. You should be receiving it shortly." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Data" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "These reports are delimited by start and end dates." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"These reports are delimited alphabetically by university name. i.e., " +"generating a report with 'Start Letter' A and 'End Letter' C will generate " +"reports for all universities starting with A, B, and C." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Letter: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Letter: " +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "Payment Error" +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "There was an error processing your order!" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your Shopping Cart" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your selected items:" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Unit Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Total Amount" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "You have selected no items for purchase." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Register for [Course Name] | Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid " () Electronic Receipt" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Order #" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Date:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Items ordered:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Qty" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Note: items with strikethough like " +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid " have been refunded." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Billed To:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are now registered for: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Registered as: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Your Progress" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Current Step: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Intro" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take ID Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Review" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Make Payment" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Confirmation" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Congratulations! You are now verified on " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"You are now registered as a verified student! Your registration details are " +"below." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are registered for:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "A list of courses you have just registered for as a verified student" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Options" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Starts: {start_date}" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to Course" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to your Dashboard" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Verified Status" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"We have received your identification details to verify your identity. If " +"there is a problem with any of the items, we will contact you to resubmit. " +"You can now register for any of the verified certificate courses this " +"semester without having to re-verify." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"The professor will ask you to periodically submit a new photo to verify your" +" work during the course (usually at exam times)." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Payment Details" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"Please print this page for your records; it serves as your receipt. You will" +" also receive an email with the same information." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Order No." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Total" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "this" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Billed To" +msgstr "" + +#: lms/templates/static_templates/404.html +msgid "" +"The page that you were looking for was not found. Go back to the " +"{link_start}homepage{link_end} or let us know about any pages that may have " +"been moved at {email}." +msgstr "" + +#: lms/templates/static_templates/about.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/faq.html +#: lms/templates/static_templates/help.html +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/tos.html +msgid "" +"This page left intentionally blank. It is not used by edx.org but is left " +"here for possible use by installations of Open edX." +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "This Course Unavailable In Your Country" +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "" +"Our system indicates that you are trying to access an edX course from an IP " +"address associated with a country currently subjected to U.S. economic and " +"trade sanctions. Unfortunately, at this time edX must comply with export " +"controls, and we cannot allow you to access this particular course. Feel " +"free to browse our catalogue to find other courses you may be interested in " +"taking." +msgstr "" + +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/honor.html +msgid "Honor Code" +msgstr "" + +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/media-kit.html +msgid "Media Kit" +msgstr "" + +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/press.html +msgid "In the Press" +msgstr "" + +#: lms/templates/static_templates/server-down.html +msgid "Currently the {platform_name} servers are down" +msgstr "" + +#: lms/templates/static_templates/server-down.html +#: lms/templates/static_templates/server-overloaded.html +msgid "" +"Our staff is currently working to get the site back up as soon as possible. " +"Please email us at {tech_support_email} to report any problems or downtime." +msgstr "" + +#: lms/templates/static_templates/server-error.html +msgid "There has been a 500 error on the {platform_name} servers" +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}." +msgstr "" + +#: lms/templates/static_templates/server-overloaded.html +msgid "Currently the {platform_name} servers are overloaded" +msgstr "" + +#: lms/templates/university_profile/edge.html +#: lms/templates/university_profile/edge.html +msgid "edX edge" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Log in to your courses" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Register for classes" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Take free online courses from today's leading universities." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Edit Your Name" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "The following error occurred while editing your name:" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "" +"To uphold the credibility of {platform} certificates, all name changes will " +"be logged and recorded." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Change my name" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Why Do I Need to Re-Verify?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity. We will send the new photo to be matched up with the photo of the " +"original ID you submitted when you signed up for the course." +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Having Technical Trouble?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Have questions?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please read {a_start}our FAQs to view common questions about our " +"certificates{a_end}." +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are upgrading your registration for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are re-verifying for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are registering for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Upgrading to:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Re-verifying for:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Registering as: " +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Change your mind?" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "You can always continue to audit the course without verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You can always {a_start} audit the course for free {a_end} without " +"verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "Technical Requirements" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)." +msgstr "" + +#: lms/templates/verify_student/face_upload.html +msgid "Edit Your Full Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Re-Verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Webcam Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Flash Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have Flash installed. {a_start} Get Flash {a_end} to " +"continue your registration." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Error submitting your images" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Oops! Something went wrong. Please confirm your details and try again." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with your " +"original verification." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Don't see your picture? Make sure to allow your browser to use your camera " +"when it asks for permission." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Take photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Looks good" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Tips on taking a successful photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your face is well-lit" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be sure your entire face is inside the frame" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Can we match the photo you took with the one on your ID?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once in position, use the camera button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your picture" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Use the checkmark button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "once you are happy with the photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Common Questions" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need my photo?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"As part of the verification process, we need your photo to confirm that you " +"are you." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "What do you do with this picture?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "We only use it to verify your identity. It is not displayed anywhere." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches the ID " +"you originally submitted. We will also use this as the name on your " +"certificate." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Edit your name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Once you verify your photo looks good and your name is correct, you can " +"finish your re-verification and return to your course. Note: You " +"will not have another chance to re-verify." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Yes! You can confirm my identity with this information." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Submit photos & re-verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Verification Submission Confirmation" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Your Credentials Have Been Updated" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"We have received your re-verification details and submitted them for review." +" Your dashboard will show the notification status once the review is " +"complete." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"Please note: The professor may ask you to re-verify again at other key " +"points in the course." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "Complete your other re-verifications" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Return to where you left off" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Reverification Status" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You are in the ID Verified track" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following courses:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Re-verify by {date}" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following course:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You have no re-verifications at present." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "The status of your submitted re-verifications:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Failed" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Don't want to re-verify right now?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Why do I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity by submitting a new photo of your face. We will send the new photo " +"to be matched up with the photo of the original ID you submitted when you " +"signed up for the course. If you are taking multiple courses, you may need " +"to re-verify multiple times, once for every important point in each course " +"you are taking as a verified student." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What will I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because you are just confirming that you are still you, the only thing you " +"will need to do to re-verify is to submit a new photo of your face with " +"your webcam. The process is quick and you will be brought back to where " +"you left off so you can keep on learning." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"If you changed your name during the semester and it no longer matches the " +"original ID you submitted, you will need to re-edit your name to match as " +"well." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What if I have trouble with my re-verification?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because of the short time that re-verification is open, you will not" +" be able to correct a failed verification. If you think there was " +"an error in the review, please contact us at {email}" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Verification" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Please Resubmit Your Verification Information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"There was an error with your previous verification. In order proceed in the " +"verified certificate of achievement track of your current courses, please " +"complete the following steps." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with the " +"picture on your ID." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your photo looks good, you can move on to step 2." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Go to Step 2: Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show Us Your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your ID so we can match it with your " +"photo and the name on your account." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your ID is well-lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Acceptable IDs include drivers licenses, passports, or other goverment-" +"issued IDs that include your name and photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check that there isn't any glare" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Ensure that you can see your photo and read your name" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Try to keep your fingers at the edge to avoid covering important information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need a photo of my ID?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We need to match your ID with your photo and name to confirm that you are " +"you." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We encrypt it and send it to our secure authorization service for review. We" +" use the highest levels of security and do not save the photo or information" +" anywhere once the match has been completed." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your ID photo looks good, you can move on to step 3." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 3: Review Your Info" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Verify Your Submission" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure we can verify your identity with the photos and information below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Review the Photos You've Re-Taken" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Please review the photos and verify that they meet the requirements listed " +"below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo above needs to meet the following requirements:" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be well lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show your whole face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo on your ID must match the photo of your face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be readable (not too far away, no glare)" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The name on your ID must match the name on your account below" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Photos don't meet the requirements?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake Your Photos" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches your ID. " +"We will also use this as the name on your certificate." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"Once you verify your details match the requirements, you can move onto to " +"confirm your re-verification submisssion." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Yes! My details all match." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Upgrade Your Registration for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/verified.html +msgid "Register for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue registering, or select to {a_start} audit " +"the course for free {a_end} without verifying." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Error processing your order" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Oops! Something went wrong. Please confirm your details again and click the " +"button to move on to payment. If you are still having trouble, please try " +"again later." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "What if my camera isn't working?" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 2: Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Review the Photos You've Taken" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Contribution Level" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Please confirm your contribution for this course (min. $" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Once you verify your details match the requirements, you can move on to step" +" 4, payment on our secure server." +msgstr "" + +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course}, you need to re-verify your" +" identity by {date}. Go to URL." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +msgid "" +"We've captured your re-submitted information and will review it to verify " +"your identity shortly. You should receive an update to your veriication " +"status within 1-2 days. In the meantime, you still have access to all of " +"your course content." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Return to Your Dashboard" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Re-Verification Failed" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "" +"Your re-verification was submitted after the re-verification deadline, and " +"you can no longer be re-verified." +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Please contact support if you believe this message to be in error." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Upgrade Your Registration for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Register for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "You need to activate your edX account before proceeding" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please check your email for further instructions on activating your new " +"account." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Upgrade" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to upgrade to being an ID verified " +"student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Register" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to register as an ID verified student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Activate Your Account" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Check your email" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"you need an active edX account before registering - check your email for " +"instructions" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Identification" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A photo identification document" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"a drivers license, passport, or other goverment or school-issued ID with " +"your name and picture on it" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Webcam" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A webcam and a modern browser" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " +"{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please make sure your browser is updated to the most recent version possible" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Credit or Debit Card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A major credit or debit card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Visa, Master Card, American Express, Discover, Diners Club, JCB with " +"Discover logo" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always continue to audit this course instead." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always {a_start}audit this course instead{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Go to Step 1: Take my Photo" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "ID Verification" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You've Been Verified Previously" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "" +"We've already verified your identity (through the photos of you and your ID " +"you provided earlier). You can proceed to make your secure payment and " +"complete registration." +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You have decided to pay $ " +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}(active){span_end}" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "Changes" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}active{span_end}" +msgstr "" + +#: lms/templates/wiki/includes/breadcrumbs.html +msgid "Add article" +msgstr "" + +#: cms/templates/404.html +msgid "The page that you were looking for was not found." +msgstr "" + +#: cms/templates/404.html +msgid "" +"Go back to the {homepage} or let us know about any pages that may have been " +"moved at {email}." +msgstr "" + +#: cms/templates/500.html +msgid "Studio Server Error" +msgstr "" + +#: cms/templates/500.html +msgid "The Studio servers encountered an error" +msgstr "" + +#: cms/templates/500.html +msgid "" +"An error occurred in Studio and the page could not be loaded. Please try " +"again in a few moments." +msgstr "" + +#: cms/templates/500.html +msgid "" +"We've logged the error and our staff is currently working to resolve this " +"error as soon as possible." +msgstr "" + +#: cms/templates/500.html +msgid "If the problem persists, please email us at {email_link}." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +#: cms/templates/activation_invalid.html +msgid "Studio Account Activation" +msgstr "" + +#: cms/templates/activation_active.html +msgid "Your account is already active" +msgstr "" + +#: cms/templates/activation_active.html +msgid "" +"This account, set up using {0}, has already been activated. Please sign in " +"to start working within edX Studio." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +msgid "Sign into Studio" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "Your account activation is complete!" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "" +"Thank you for activating your account. You may now sign in and start using " +"edX Studio to author courses." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Your account activation is invalid" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"We're sorry. Something went wrong with your activation. Check to make sure " +"the URL you went to was correct — e-mail programs will sometimes split" +" it into two lines." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"If you still have issues, contact edX Support. In the meatime, you can also " +"return to" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Contact edX Support" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/widgets/header.html +msgid "Files & Uploads" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Uploading…" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +msgid "Choose File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/asset_index.html +msgid "Upload New File" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Load Another File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/course_info.html +#: cms/templates/edit-tabs.html cms/templates/overview.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Content" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/course_info.html cms/templates/edit-tabs.html +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/textbooks.html +msgid "Page Actions" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + +#: cms/templates/asset_index.html +msgid "What files are listed here?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"In addition to the files you upload on this page, any files that you add to " +"the course appear in this list. These files include your course image, " +"textbook chapters, and files that appear on your Course Handouts sidebar." +msgstr "" + +#: cms/templates/asset_index.html +msgid "File URLs" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the Embed URL value to link to the file or image from a component, a" +" course update, or a course handout." +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the External URL value to reference the file or image from outside " +"of your course. Do not use the External URL as a link value within your " +"course." +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/overview.html cms/templates/settings_graders.html +msgid "What can I do on this page?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You can upload new files or view, download, or delete existing files. You " +"can lock a file so that people who are not enrolled in your course cannot " +"access that file." +msgstr "" + +#: cms/templates/asset_index.html +msgid "Your file has been deleted." +msgstr "" + +#: cms/templates/asset_index.html +msgid "close alert" +msgstr "" + +#: cms/templates/checklists.html cms/templates/export.html +#: cms/templates/export_git.html cms/templates/import.html +#: cms/templates/widgets/header.html +msgid "Tools" +msgstr "" + +#: cms/templates/checklists.html +msgid "Course Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "Current Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "What are course checklists?" +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Course checklists are tools to help you understand and keep track of all the" +" steps necessary to get your course ready for students." +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Any changes you make to these checklists are saved automatically and are " +"immediately visible to other course team members." +msgstr "" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +msgid "Duplicate" +msgstr "" + +#: cms/templates/component.html +msgid "Duplicate this component" +msgstr "" + +#: cms/templates/component.html +msgid "Delete this component" +msgstr "" + +#: cms/templates/component.html cms/templates/container_xblock_component.html +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/overview.html cms/templates/overview.html +msgid "Drag to reorder" +msgstr "" + +#: cms/templates/container.html +msgid "Container" +msgstr "" + +#: cms/templates/container.html +msgid "This page has no content yet." +msgstr "" + +#: cms/templates/container.html cms/templates/container.html +msgid "Publishing Status" +msgstr "" + +#: cms/templates/container.html +msgid "Published" +msgstr "" + +#: cms/templates/container.html +msgid "" +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." +msgstr "" + +#: cms/templates/course_info.html cms/templates/course_info.html +msgid "Course Updates" +msgstr "" + +#: cms/templates/course_info.html +msgid "New Update" +msgstr "" + +#: cms/templates/course_info.html +msgid "" +"Use course updates to notify students of important dates or exams, highlight" +" particular discussions in the forums, announce schedule changes, and " +"respond to student questions. You add or edit updates in HTML." +msgstr "" + +#. Translators: Pages refer to the tabs that appear in the top navigation of +#. each course. +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/export.html cms/templates/widgets/header.html +msgid "Pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "New Page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit_subsection.html +#: cms/templates/index.html cms/templates/overview.html +#: cms/templates/unit.html +msgid "View Live" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Show this page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "Show/hide page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "This page cannot be reordered" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "You can add additional custom pages to your course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Add a New Page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "What are pages?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages are listed horizontally at the top of your course. Default pages " +"(Courseware, Course info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages that you create." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Custom pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"You can create and edit custom pages to provide students with additional " +"course content. For example, you can create pages for the grading policy, " +"course slides, and a course calendar. " +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "How do pages look to students in my course?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Students see the default and custom pages at the top of your course and use " +"these links to navigate." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "See an example" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Pages in Your Course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Preview of Pages in your course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages appear in your course's top navigation bar. The default pages " +"(Courseware, Course Info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages." +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/howitworks.html +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "close modal" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "CMS Subsection" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/unit.html +msgid "Display Name:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Units:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Subsection Settings" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Day" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Time" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/edit_subsection.html +#: cms/templates/overview.html +msgid "Coordinated Universal Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "UTC" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "" +"The date above differs from the release date of {name}, which is unset." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "The date above differs from the release date of {name} - {start_time}" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Sync to {name}." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Graded as:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Set a due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Day" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Remove due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Preview Drafts" +msgstr "" + +#: cms/templates/error.html +msgid "Internal Server Error" +msgstr "" + +#: cms/templates/error.html +msgid "The Page You Requested Page Cannot be Found" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. We couldn't find the Studio page you're looking for. You may " +"want to return to the Studio Dashboard and try again. If you are still " +"having problems accessing things, please feel free to {link_start}contact " +"Studio support{link_end} for further help." +msgstr "" + +#: cms/templates/error.html cms/templates/error.html +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Use our feedback tool, Tender, to share your feedback" +msgstr "" + +#: cms/templates/error.html +msgid "The Server Encountered an Error" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. There was a problem with the server while trying to process " +"your last request. You may want to return to the Studio Dashboard or try " +"this request again. If you are still having problems accessing things, " +"please feel free to {link_start}contact Studio support{link_end} for further" +" help." +msgstr "" + +#: cms/templates/error.html +msgid "Back to dashboard" +msgstr "" + +#: cms/templates/export.html cms/templates/export.html +msgid "Course Export" +msgstr "" + +#: cms/templates/export.html +msgid "About Exporting Courses" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export courses and edit them outside of Studio. The exported file is" +" a .tar.gz file (that is, a .tar file compressed with GNU Zip) that contains" +" the course structure and content. You can also re-import courses that " +"you've exported." +msgstr "" + +#: cms/templates/export.html +msgid "Export My Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Export Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}exported with{em_end} your course:" +msgstr "" + +#: cms/templates/export.html +msgid "Course Content (all Sections, Sub-sections, and Units)" +msgstr "" + +#: cms/templates/export.html +msgid "Course Structure" +msgstr "" + +#: cms/templates/export.html +msgid "Individual Problems" +msgstr "" + +#: cms/templates/export.html +msgid "Course Assets" +msgstr "" + +#: cms/templates/export.html +msgid "Course Settings" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}not exported{em_end} with your course:" +msgstr "" + +#: cms/templates/export.html +msgid "User Data" +msgstr "" + +#: cms/templates/export.html +msgid "Course Team Data" +msgstr "" + +#: cms/templates/export.html +msgid "Forum/discussion Data" +msgstr "" + +#: cms/templates/export.html +msgid "Certificates" +msgstr "" + +#: cms/templates/export.html +msgid "Why export a course?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your course directly, outside of Studio. You" +" may want to create a backup copy of your course. Or, you may want to create" +" a copy of your course that you can later import into another course " +"instance and customize." +msgstr "" + +#: cms/templates/export.html +msgid "What content is exported?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are exported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, is not exported." +msgstr "" + +#: cms/templates/export.html +msgid "Opening the downloaded file" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the course.xml file, as well as subfolders that contain course" +" content." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git" +msgstr "" + +#: cms/templates/export_git.html cms/templates/export_git.html +#: cms/templates/widgets/header.html +msgid "Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "About Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "Use this to export your course to its git repository." +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"This will then trigger an automatic update of the main LMS site and update " +"the contents of your course visible there to students if automatic git " +"imports are configured." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git:" +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"giturl must be defined in your course settings before you can export to git." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Failed" +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Succeeded" +msgstr "" + +#: cms/templates/export_git.html +msgid "Your course:" +msgstr "" + +#: cms/templates/export_git.html +msgid "Course git url:" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome to" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio helps manage your courses online, so you can focus on teaching them" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Studio's Many Features" +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "Studio Helps You Keep Your Courses Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Keeping Your Course Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"The backbone of your course is how it is organized. Studio offers an " +"Outline editor, providing a simple hierarchy and easy drag " +"and drop to help you and your students stay organized." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple Organization For Content" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio uses a simple hierarchy of sections and " +"subsections to organize your content." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Change Your Mind Anytime" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Draft your outline and build content anywhere. Simple drag and drop tools " +"let your reorganize quickly." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Go A Week Or A Semester At A Time" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Build and release sections to your students incrementally. " +"You don't have to have it all done at once." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html +msgid "Learning is More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio lets you weave your content together in a way that reinforces " +"learning — short video lectures interleaved with exercises and more. " +"Insert videos and author a wide variety of exercise types with just a few " +"clicks." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Create Learning Pathways" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Help your students understand a small interactive piece at a time with " +"multimedia, HTML, and exercises." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work Visually, Organize Quickly" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Work visually and see exactly what your students will see. Reorganize all " +"your content with drag and drop." +msgstr "" + +#: cms/templates/howitworks.html +msgid "A Broad Library of Problem Types" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"It's more than just multiple choice. Studio has nearly a dozen types of " +"problems to challenge your learners." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "" +"Studio Gives You Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio works like web applications you already know, yet understands how you" +" build curriculum. Instant publishing to the web when you want it, " +"incremental release when it makes sense. And with co-authors, you can have a" +" whole team building a course, together." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Instant Changes" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Caught a bug? No problem. When you want, your changes to live when you hit " +"Save." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Release-On Date Publishing" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"When you've finished a section, pick when you want it to go" +" live and Studio takes care of the rest. Build your course incrementally." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work in Teams" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Co-authors have full access to all the same authoring tools. Make your " +"course better through a team effort." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up for Studio Today!" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up & Start Making an edX Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Already have a Studio Account? Sign In" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Outlining Your Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simple two-level outline to organize your couse. Drag and drop, and see your" +" course at a glance." +msgstr "" + +#: cms/templates/howitworks.html +msgid "More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Quickly create videos, text snippets, inline discussions, and a variety of " +"problem types." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Publishing on Date" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simply set the date of a section or subsection, and Studio will publish it " +"to your students for you." +msgstr "" + +#: cms/templates/html_error.html +msgid "We're having trouble rendering your component" +msgstr "" + +#: cms/templates/html_error.html +msgid "" +"Students will not be able to access this component. Re-edit your component " +"to fix the error." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Course Import" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a course before continuing. Content of the " +"imported course replaces all the content of this course. {em_start}You " +"cannot undo a course import{em_end}. We recommend that you first export the " +"current course, so you have a backup copy of it." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "" +"The course that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " +"It may also contain other files." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your course until the import operation has completed." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Course Content" +msgstr "" + +#: cms/templates/import.html +msgid "Choose a File to Import" +msgstr "" + +#: cms/templates/import.html +msgid "File Chosen:" +msgstr "" + +#: cms/templates/import.html +msgid "Replace my course with the one above" +msgstr "" + +#: cms/templates/import.html +msgid "Course Import Status" +msgstr "" + +#: cms/templates/import.html +msgid "Uploading" +msgstr "" + +#: cms/templates/import.html +msgid "Transferring your file to our servers" +msgstr "" + +#: cms/templates/import.html +msgid "Unpacking" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Expanding and preparing folder/file structure (You can now leave this page " +"safely, but avoid making drastic changes to content until this import is " +"complete)" +msgstr "" + +#: cms/templates/import.html +msgid "Verifying" +msgstr "" + +#: cms/templates/import.html +msgid "Reviewing semantics, syntax, and required data" +msgstr "" + +#: cms/templates/import.html +msgid "Updating Course" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this course. This may take a while " +"with larger courses." +msgstr "" + +#: cms/templates/import.html +msgid "Success" +msgstr "" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this course" +msgstr "" + +#: cms/templates/import.html +msgid "View Updated Outline" +msgstr "" + +#: cms/templates/import.html +msgid "Why import a course?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"You may want to run a new version of an existing course, or replace an " +"existing course altogether. Or, you may have developed a course outside " +"Studio." +msgstr "" + +#: cms/templates/import.html +msgid "What content is imported?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are imported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, remains the same as it was in the existing course." +msgstr "" + +#: cms/templates/import.html +msgid "Warning: Importing while a course is running" +msgstr "" + +#: cms/templates/import.html +msgid "" +"If you perform an import while your course is running, and you change the " +"URL names (or url_name nodes) of any Problem components, the student data " +"associated with those Problem components may be lost. This data includes " +"students' problem scores." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error during the upload process." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while unpacking the file." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while verifying the file you submitted." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while importing the new course to our database." +msgstr "" + +#: cms/templates/import.html +msgid "Your import has failed." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Choose new file" +msgstr "" + +#: cms/templates/import.html +msgid "Your import is in progress; navigating away will abort it." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +#: cms/templates/widgets/header.html +msgid "My Courses" +msgstr "" + +#: cms/templates/index.html +msgid "New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Email staff to create course" +msgstr "" + +#: cms/templates/index.html +msgid "Welcome, {0}!" +msgstr "" + +#: cms/templates/index.html +msgid "Here are all of the courses you currently have access to in Studio:" +msgstr "" + +#: cms/templates/index.html +msgid "You currently aren't associated with any Studio Courses." +msgstr "" + +#: cms/templates/index.html +msgid "Please correct the highlighted fields below." +msgstr "" + +#: cms/templates/index.html +msgid "Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Required Information to Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. Introduction to Computer Science" +msgstr "" + +#: cms/templates/index.html +msgid "The public display name for your course." +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +msgid "Organization" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. UniversityX or OrganizationX" +msgstr "" + +#: cms/templates/index.html +msgid "The name of the organization sponsoring the course." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed." +msgstr "" + +#: cms/templates/index.html +msgid "" +"This cannot be changed, but you can set a different display name in Advanced" +" Settings later." +msgstr "" + +#: cms/templates/index.html +msgid "e.g. CS101" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The unique number that identifies your course within your organization." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed and it cannot be changed." +msgstr "" + +#: cms/templates/index.html +msgid "Course Run" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. 2014_T1" +msgstr "" + +#: cms/templates/index.html +msgid "The term in which your course will run." +msgstr "" + +#: cms/templates/index.html +msgid "Create" +msgstr "" + +#: cms/templates/index.html +msgid "Course Run:" +msgstr "" + +#: cms/templates/index.html +msgid "Are you staff on an existing Studio course?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"You will need to be added to the course in Studio by the course creator. " +"Please get in touch with the course creator or administrator for the " +"specific course you are helping to author." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Create Your First Course" +msgstr "" + +#: cms/templates/index.html +msgid "Your new course is just a click away!" +msgstr "" + +#: cms/templates/index.html +msgid "Becoming a Course Creator in Studio" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team will " +"evaluate your request and provide you feedback within 24 hours during the " +"work week." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status:" +msgstr "" + +#: cms/templates/index.html +msgid "Request the Ability to Create Courses" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is has " +"completed evaluating your request." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator request is:" +msgstr "" + +#: cms/templates/index.html +msgid "Denied" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request did not meet the criteria/guidelines specified by edX Staff." +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is " +"currently evaluating your request." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request is currently being reviewed by edX staff and should be updated " +"shortly." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Need help?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"If you are new to Studio and having trouble getting started, there are a few" +" things that may be of help:" +msgstr "" + +#: cms/templates/index.html +msgid "Get started by reading Studio's Documentation" +msgstr "" + +#: cms/templates/index.html +msgid "Request help with Studio" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Can I create courses in Studio?" +msgstr "" + +#: cms/templates/index.html +msgid "In order to create courses in Studio, you must" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX staff to help you create a course" +msgstr "" + +#: cms/templates/index.html +msgid "" +"In order to create courses in Studio, you must have course creator " +"privileges to create your own course." +msgstr "" + +#: cms/templates/index.html +msgid "Your request to author courses in studio has been denied. Please" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX Staff with further questions" +msgstr "" + +#: cms/templates/index.html +msgid "Thanks for signing up, %(name)s!" +msgstr "" + +#: cms/templates/index.html +msgid "We need to verify your email address" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Almost there! In order to complete your sign up we need you to verify your " +"email address (%(email)s). An activation message and next steps should be " +"waiting for you there." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Please check your Junk or Spam folders in case our email isn't in your " +"INBOX. Still can't find the verification email? Request help via the link " +"below." +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/header.html +msgid "Sign In" +msgstr "" + +#: cms/templates/login.html cms/templates/login.html +msgid "Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html +msgid "Don't have a Studio Account? Sign up!" +msgstr "" + +#: cms/templates/login.html +msgid "Required Information to Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +msgid "Email Address" +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/sock.html +msgid "Studio Support" +msgstr "" + +#: cms/templates/login.html +msgid "" +"Having trouble with your account? Use {link_start}our support " +"center{link_end} to look over self help steps, find solutions others have " +"found to the same problem, or let us know of your issue." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Settings" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Course Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a User to Your Course's Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member Information" +msgstr "" + +#: cms/templates/manage_users.html +msgid "User's Email Address" +msgstr "" + +#: cms/templates/manage_users.html +msgid "e.g. jane.doe@gmail.com" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Please provide the email address of the course staff member you'd like to " +"add" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add User" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "Current Role:" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "You!" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Staff" +msgstr "" + +#: cms/templates/manage_users.html +msgid "send an email message to {email}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Promote another member to Admin to remove your admin rights" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Remove Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Delete the user, {username}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Team Members to This Course" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Adding team members makes course authoring collaborative. Users must be " +"signed up for Studio and have an active account. " +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Roles" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Course team members, or staff, are course co-authors. They have full writing" +" and editing privileges on all course content." +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Admins are course team members who can add and remove other course team " +"members." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Transferring Ownership" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Every course must have an Admin. If you're the Admin and you want transfer " +"ownership of the course, click Add admin access to make another user the " +"Admin, then ask that user to remove you from the Course Team list." +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Course Outline" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html +msgid "Expand/collapse this section" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Section Name" +msgstr "" + +#: cms/templates/overview.html +msgid "Add a new section name" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Delete this section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to re-order" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Subsection" +msgstr "" + +#: cms/templates/overview.html cms/templates/widgets/units.html +msgid "New Unit" +msgstr "" + +#: cms/templates/overview.html +msgid "You haven't added any sections to your course outline yet." +msgstr "" + +#: cms/templates/overview.html +msgid "Add your first section" +msgstr "" + +#: cms/templates/overview.html +msgid "Collapse All Sections" +msgstr "" + +#: cms/templates/overview.html +msgid "New Section" +msgstr "" + +#: cms/templates/overview.html +msgid "This section is not scheduled for release" +msgstr "" + +#: cms/templates/overview.html +msgid "Schedule" +msgstr "" + +#: cms/templates/overview.html +msgid "Release date:" +msgstr "" + +#: cms/templates/overview.html +msgid "Edit section release date" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to reorder section" +msgstr "" + +#: cms/templates/overview.html +msgid "Expand/collapse this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"You can create new sections and subsections, set the release date for " +"sections, and create new units in existing subsections. You can set the " +"assignment type for subsections that are to be graded, and you can open a " +"subsection for further editing." +msgstr "" + +#: cms/templates/overview.html +msgid "" +"In addition, you can drag and drop sections, subsections, and units to " +"reorganize your course." +msgstr "" + +#: cms/templates/overview.html +msgid "Section Release Date" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"On the date set below, this section - {name} - will be released to students." +" Any units marked private will only be visible to admins." +msgstr "" + +#: cms/templates/overview.html +msgid "Form Actions" +msgstr "" + +#: cms/templates/register.html +msgid "Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "Already have a Studio Account? Sign in" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Ready to start creating online courses? Sign up below and start creating " +"your first edX course today." +msgstr "" + +#: cms/templates/register.html +msgid "Required Information to Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "" +"This will be used in public discussions with your courses and in our edX101 " +"support forums" +msgstr "" + +#: cms/templates/register.html +msgid "Your Location" +msgstr "" + +#: cms/templates/register.html +msgid "I agree to the {a_start} Terms of Service {a_end}" +msgstr "" + +#: cms/templates/register.html +msgid "Create My Account & Start Authoring Courses" +msgstr "" + +#: cms/templates/register.html +msgid "Common Studio Questions" +msgstr "" + +#: cms/templates/register.html +msgid "Who is Studio for?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is for anyone that wants to create online courses that leverage the " +"global edX platform. Our users are often faculty members, teaching " +"assistants and course staff, and members of instructional technology groups." +msgstr "" + +#: cms/templates/register.html +msgid "How technically savvy do I need to be to create courses in Studio?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is designed to be easy to use by almost anyone familiar with common " +"web-based authoring environments (Wordpress, Moodle, etc.). No programming " +"knowledge is required, but for some of the more advanced features, a " +"technical background would be helpful. As always, we are here to help, so " +"don't hesitate to dive right in." +msgstr "" + +#: cms/templates/register.html +msgid "I've never authored a course online before. Is there help?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Absolutely. We have created an online course, edX101, that describes some " +"best practices: from filming video, creating exercises, to the basics of " +"running an online course. Additionally, we're always here to help, just drop" +" us a note." +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details Settings" +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/settings.html +msgid "Basic Information" +msgstr "" + +#: cms/templates/settings.html +msgid "The nuts and bolts of your course" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "This field is disabled: this information cannot be changed." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Summary Page" +msgstr "" + +#: cms/templates/settings.html +msgid "(for student enrollment and access)" +msgstr "" + +#: cms/templates/settings.html +msgid "Send a note to students via email" +msgstr "" + +#: cms/templates/settings.html +msgid "Invite your students" +msgstr "" + +#: cms/templates/settings.html +msgid "Promoting Your Course with edX" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course summary page will not be viewable until your course has been " +"announced. To provide content for the page and preview it, follow the " +"instructions provided by your PM." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Schedule" +msgstr "" + +#: cms/templates/settings.html +msgid "Dates that control when your course can be viewed" +msgstr "" + +#: cms/templates/settings.html +msgid "First day the course begins" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day your course is active" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Date" +msgstr "" + +#: cms/templates/settings.html +msgid "First day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "These Dates Are Not Used When Promoting Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"These dates impact when your courseware can be viewed, but " +"they are not the dates shown on your course summary page. " +"To provide the course start and registration dates as shown on your course " +"summary page, follow the instructions provided by your PM or Conrad Warre (conrad@edx.org)." +msgstr "" + +#: cms/templates/settings.html +msgid "Introducing Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "Information for prospective students" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Short Description" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Appears on the course catalog page when students roll over the course name. " +"Limit to ~150 characters" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Overview" +msgstr "" + +#: cms/templates/settings.html +msgid "your course summary page" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"You can manage this image along with all of your other files " +"& uploads" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 375px wide by 200px tall)" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your course image (Note: only JPEG " +"or PNG format supported)" +msgstr "" + +#: cms/templates/settings.html +msgid "Upload Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Introduction Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Delete Current Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Enter your YouTube video's ID (along with any restriction parameters)" +msgstr "" + +#: cms/templates/settings.html +msgid "Requirements" +msgstr "" + +#: cms/templates/settings.html +msgid "Expectations of the students taking this course" +msgstr "" + +#: cms/templates/settings.html +msgid "Hours of Effort per Week" +msgstr "" + +#: cms/templates/settings.html +msgid "Time spent on all course work" +msgstr "" + +#: cms/templates/settings.html +msgid "How are these settings used?" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course's schedule determines when students can enroll in and begin a " +"course." +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Other information from this page appears on the About page for your course. " +"This information includes the course overview, course image, introduction " +"video, and estimated time requirements. Students use About pages to choose " +"new courses to take." +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html +msgid "Other Course Settings" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +msgid "Grading" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Advanced Settings" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "There was an error saving your information. Please see below." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Manual Policy Definition" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Warning: Do not modify these policies unless you are " +"familiar with their purpose." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "What do advanced settings do?" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Advanced settings control specific course functionality. On this page, you " +"can edit manual policies, which are JSON-based key and value pairs that " +"control specific course settings." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Any policies you modify here override all other information you've defined " +"elsewhere in Studio. Do not edit policies unless you are familiar with both " +"their purpose and syntax." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" +" you use double quotation marks (") around the string. Do not use " +"single quotation marks (')." +msgstr "" + +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +msgid "Details & Schedule" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Settings" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Overall Grade Range" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Your overall grading scale for student final grades" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Rules & Policies" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Deadlines, requirements, and logistics around grading student work" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grace Period on Deadline:" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Leeway on due dates" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Assignment Types" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Categories and labels for any exercises that are gradable" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "New Assignment Type" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can use the slider under Overall Grade Range to specify whether your " +"course is pass/fail or graded by letter, and to establish the thresholds for" +" each grade." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can specify whether your course offers students a grace period for late " +"assignments." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can also create assignment types, such as homework, labs, quizzes, and " +"exams, and specify how much of a student's grade each assignment type is " +"worth." +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +#: cms/templates/studio_vertical_wrapper.html +msgid "Expand or Collapse" +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + +#: cms/templates/textbooks.html +msgid "You have unsaved changes. Do you really want to leave this page?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "New Textbook" +msgstr "" + +#: cms/templates/textbooks.html +msgid "Why should I break my textbook into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"Breaking your textbook into multiple chapters reduces loading times for " +"students, especially those with slow Internet connections. Breaking up " +"textbooks into chapters can also help students more easily find topic-based " +"information." +msgstr "" + +#: cms/templates/textbooks.html +msgid "What if my book isn't divided into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"If your textbook doesn't have individual chapters, you can upload the entire" +" text as a single chapter and enter a name of your choice in the Chapter " +"Name field." +msgstr "" + +#: cms/templates/unit.html cms/templates/ux/reference/unit.html +msgid "Individual Unit" +msgstr "" + +#: cms/templates/unit.html +msgid "You are editing a draft." +msgstr "" + +#: cms/templates/unit.html +msgid "This unit was originally published on {date}." +msgstr "" + +#: cms/templates/unit.html +msgid "View the Live Version" +msgstr "" + +#: cms/templates/unit.html +msgid "Add New Component" +msgstr "" + +#: cms/templates/unit.html +msgid "Common Problem Types" +msgstr "" + +#: cms/templates/unit.html +msgid "Advanced" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Settings" +msgstr "" + +#: cms/templates/unit.html +msgid "Visibility:" +msgstr "" + +#: cms/templates/unit.html +msgid "Public" +msgstr "" + +#: cms/templates/unit.html +msgid "Private" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit has been published. To make changes, you must {link_start}edit a " +"draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This is a draft of the published unit. To update the live version, you must " +"{link_start}replace it with this draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "Delete Draft" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Location" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Identifier:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for edX Studio! To activate your account, please " +"copy and paste this address into your web browser's address bar:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the edX web site." +msgstr "" + +#: cms/templates/emails/activation_email_subject.txt +msgid "Your account for edX Studio" +msgstr "" + +#: cms/templates/emails/course_creator_admin_subject.txt +msgid "{email} has requested Studio course creator privileges on edge" +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "" +"User '{user}' with e-mail {email} has requested Studio course creator " +"privileges on edge." +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "To grant or deny this request, use the course creator admin table." +msgstr "" + +#: cms/templates/emails/course_creator_denied.txt +msgid "" +"Your request for course creation rights to edX Studio have been denied. If " +"you believe this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_granted.txt +msgid "" +"Your request for course creation rights to edX Studio have been granted. To " +"create your first course, visit:" +msgstr "" + +#: cms/templates/emails/course_creator_revoked.txt +msgid "" +"Your course creation rights to edX Studio have been revoked. If you believe " +"this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_subject.txt +msgid "Your course creator status for edX Studio" +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "You can now {link_start}login{link_end}." +msgstr "" + +#: cms/templates/registration/reg_complete.html +msgid "" +"An activation link has been sent to {email}, along with instructions for " +"activating your account." +msgstr "" + +#: cms/templates/widgets/footer.html +msgid "All rights reserved." +msgstr "" + +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Contact Us" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Current Course:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "{course_name}'s Navigation:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Outline" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Updates" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Checklists" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Import" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Export" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Help & Account Navigation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +msgid "This is a PDF Document" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Documentation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html +msgid "Studio Help Center" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Currently signed in as:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Sign Out" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "You're not currently signed in" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "How Studio Works" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Help" +msgstr "" + +#: cms/templates/widgets/metadata-edit.html +msgid "Launch Latex Source Compiler" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Heading 1" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Multiple Choice" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Checkboxes" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Text Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Numerical Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Dropdown" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Explanation" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Advanced Editor" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Toggle Cheatsheet" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Label" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "edX Studio Help" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Need help with Studio? Creating a course is complex, so we're here to help. " +"Take advantage of our documentation, help center, as well as our edX101 " +"introduction course for course authors." +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Download Studio Documentation" +msgstr "" + +#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +msgid "How to use Studio to build your course" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Enroll in edX101" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Contact us about Studio" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Have problems, questions, or suggestions about Studio? We're also here to " +"listen to any feedback you want to share." +msgstr "" + +#: cms/templates/widgets/tabs-aggregator.html +msgid "name" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete this unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to sort" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to reorder unit" +msgstr "" + +# empty +msgid "This is a key string." +msgstr "Ovaj ključ je string." + +#: wiki/admin.py wiki/models/article.py +msgid "created" +msgstr "" + +#: wiki/forms.py +msgid "Only localhost... muahahaha" +msgstr "" + +#: wiki/forms.py +msgid "Initial title of the article. May be overridden with revision titles." +msgstr "" + +#: wiki/forms.py +msgid "Type in some contents" +msgstr "" + +#: wiki/forms.py +msgid "" +"This is just the initial contents of your article. After creating it, you " +"can use more complex features like adding plugins, meta data, related " +"articles etc..." +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Contents" +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Summary" +msgstr "" + +#: wiki/forms.py +msgid "" +"Give a short reason for your edit, which will be stated in the revision log." +msgstr "" + +#: wiki/forms.py +msgid "" +"While you were editing, someone else changed the revision. Your contents " +"have been automatically merged with the new contents. Please review the text" +" below." +msgstr "" + +#: wiki/forms.py +msgid "No changes made. Nothing to save." +msgstr "" + +#: wiki/forms.py +msgid "Select an option" +msgstr "" + +#: wiki/forms.py +msgid "Slug" +msgstr "" + +#: wiki/forms.py +msgid "" +"This will be the address where your article can be found. Use only " +"alphanumeric characters and - or _. Note that you cannot change the slug " +"after creating the article." +msgstr "" + +#: wiki/forms.py +msgid "Write a brief message for the article's history log." +msgstr "" + +#: wiki/forms.py +msgid "A slug may not begin with an underscore." +msgstr "" + +#: wiki/forms.py +msgid "A deleted article with slug \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "A slug named \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "Yes, I am sure" +msgstr "" + +#: wiki/forms.py +msgid "Purge" +msgstr "" + +#: wiki/forms.py +msgid "" +"Purge the article: Completely remove it (and all its contents) with no undo." +" Purging is a good idea if you want to free the slug such that users can " +"create new articles in its place." +msgstr "" + +#: wiki/forms.py wiki/plugins/attachments/forms.py +#: wiki/plugins/images/forms.py +msgid "You are not sure enough!" +msgstr "" + +#: wiki/forms.py +msgid "While you tried to delete this article, it was modified. TAKE CARE!" +msgstr "" + +#: wiki/forms.py +msgid "Lock article" +msgstr "" + +#: wiki/forms.py +msgid "Deny all users access to edit this article." +msgstr "" + +#: wiki/forms.py +msgid "Permissions" +msgstr "" + +#: wiki/forms.py +msgid "Owner" +msgstr "" + +#: wiki/forms.py +msgid "Enter the username of the owner." +msgstr "" + +#: wiki/forms.py +msgid "(none)" +msgstr "" + +#: wiki/forms.py +msgid "Inherit permissions" +msgstr "" + +#: wiki/forms.py +msgid "" +"Check here to apply the above permissions recursively to articles under this" +" one." +msgstr "" + +#: wiki/forms.py +msgid "Permission settings for the article were updated." +msgstr "" + +#: wiki/forms.py +msgid "Your permission settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/forms.py +msgid "No user with that username" +msgstr "" + +#: wiki/forms.py +msgid "Article locked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Article unlocked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Filter..." +msgstr "" + +#: wiki/core/plugins/base.py +msgid "Settings for plugin" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +#: wiki/plugins/attachments/models.py +msgid "current revision" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The revision being displayed for this article. If you need to do a roll-" +"back, simply change the value of this field." +msgstr "" + +#: wiki/models/article.py +msgid "modified" +msgstr "" + +#: wiki/models/article.py +msgid "Article properties last modified" +msgstr "" + +#: wiki/models/article.py +msgid "owner" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The owner of the article, usually the creator. The owner always has both " +"read and write access." +msgstr "" + +#: wiki/models/article.py +msgid "group" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Like in a UNIX file system, permissions can be given to a user according to " +"group membership. Groups are handled through the Django auth system." +msgstr "" + +#: wiki/models/article.py +msgid "group read access" +msgstr "" + +#: wiki/models/article.py +msgid "group write access" +msgstr "" + +#: wiki/models/article.py +msgid "others read access" +msgstr "" + +#: wiki/models/article.py +msgid "others write access" +msgstr "" + +#: wiki/models/article.py +msgid "Article without content (%(id)d)" +msgstr "" + +#: wiki/models/article.py +msgid "content type" +msgstr "" + +#: wiki/models/article.py +msgid "object ID" +msgstr "" + +#: wiki/models/article.py +msgid "Article for object" +msgstr "" + +#: wiki/models/article.py +msgid "Articles for object" +msgstr "" + +#: wiki/models/article.py +msgid "revision number" +msgstr "" + +#: wiki/models/article.py +msgid "IP address" +msgstr "" + +#: wiki/models/article.py +msgid "user" +msgstr "" + +#: wiki/models/article.py +msgid "locked" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +msgid "article" +msgstr "" + +#: wiki/models/article.py +msgid "article contents" +msgstr "" + +#: wiki/models/article.py +msgid "article title" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Each revision contains a title field that must be filled out, even if the " +"title has not changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "original article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "Permissions are inherited from this article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "A plugin was changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "" +"The revision being displayed for this plugin.If you need to do a roll-back, " +"simply change the value of this field." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Cache lookup value for articles" +msgstr "" + +#: wiki/models/urlpath.py +msgid "slug" +msgstr "" + +#: wiki/models/urlpath.py +msgid "(root)" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL path" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL paths" +msgstr "" + +#: wiki/models/urlpath.py +msgid "Sorry but you cannot have a root article with a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "A non-root note must always have a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "There is already a root node on %s" +msgstr "" + +#: wiki/models/urlpath.py +msgid "" +"Articles who lost their parents\n" +"===============================\n" +"\n" +"The children of this article have had their parents deleted. You should probably find a new home for them." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Lost and found" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "A short summary of what the file contains" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "Yes I am sure..." +msgstr "" + +#: wiki/plugins/attachments/markdown_extensions.py +msgid "Click to download file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "" +"The revision of this attachment currently in use (on all articles using the " +"attachment)" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "original filename" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachments" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revision" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revisions" +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s was successfully added." +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "Your file could not be saved: %s" +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "" +"Your file could not be saved, probably because of a permission error on the " +"web server." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s uploaded and replaces old attachment." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your new file will automatically be renamed to match the file already " +"present. Files with different extensions are not allowed." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Current revision changed for %s." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "The file %s was deleted." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "This article is no longer related to the file %s." +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was changed: %s" +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was deleted: %s" +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "" +"New image %s was successfully uploaded. You can use it by selecting it from " +"the list of available images." +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "Are you sure?" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "images" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image: %s" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Current revision not set!!" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revision" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revisions" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image Revsion: %d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been restored" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been marked as deleted" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been changed to revision #%(revision)d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been saved." +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "Images" +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "An image was added: %s" +msgstr "" + +#: wiki/plugins/links/wiki_plugin.py +msgid "Links" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Notifications" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "When this article is edited" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Also receive emails about article edits" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were updated." +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "%(user)s subscribing to %(article)s (%(type)s)" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article deleted: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article modified: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "New article created: %s" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now sign up... and now you can sign in!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are no longer logged in. Bye bye!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now logged in! Have fun!" +msgstr "" + +#: wiki/views/article.py +msgid "New article '%s' created." +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article: %s" +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article cannot be deleted because it has children or is a root article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article together with all its contents are now completely gone! Thanks!" +msgstr "" + +#: wiki/views/article.py +msgid "" +"The article \"%s\" is now marked as deleted! Thanks for keeping the site " +"free from unwanted material!" +msgstr "" + +#: wiki/views/article.py +msgid "Your changes were saved." +msgstr "" + +#: wiki/views/article.py +msgid "A new revision of the article was succesfully added." +msgstr "" + +#: wiki/views/article.py +msgid "Restoring article" +msgstr "" + +#: wiki/views/article.py +msgid "The article \"%s\" and its children are now restored." +msgstr "" + +#: wiki/views/article.py +msgid "The article %s is now set to display revision #%d" +msgstr "" + +#: wiki/views/article.py +msgid "New title" +msgstr "" + +#: wiki/views/article.py +msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" +msgstr "" + +#: wiki/views/article.py +msgid "" +"A new revision was created: Merge between Revision #%(r1)d and Revision " +"#%(r2)d" +msgstr "" diff --git a/conf/locale/bs/LC_MESSAGES/djangojs.mo b/conf/locale/bs/LC_MESSAGES/djangojs.mo new file mode 100644 index 0000000000..c5052db11c Binary files /dev/null and b/conf/locale/bs/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/bs/LC_MESSAGES/djangojs.po b/conf/locale/bs/LC_MESSAGES/djangojs.po new file mode 100644 index 0000000000..b9f115392d --- /dev/null +++ b/conf/locale/bs/LC_MESSAGES/djangojs.po @@ -0,0 +1,1728 @@ +# #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Bosnian (http://www.transifex.com/projects/p/edx-platform/language/bs/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" +"Last-Translator: sarina \n" +"Language-Team: Bosnian (http://www.transifex.com/projects/p/edx-platform/language/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: cms/static/coffee/src/views/tabs.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js +#: common/static/coffee/src/discussion/utils.js +msgid "OK" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/asset.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Cancel" +msgstr "" + +#: cms/static/js/base.js lms/static/js/verify_student/photocapture.js +msgid "This link will open in a new browser window/tab" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Show Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Hide Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Expand Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Collapse Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Commentary" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Reply to Annotation" +msgstr "" + +#. Translators: %(earned)s is the number of points earned. %(total)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(earned)s/%(possible)s point)" +msgid_plural "(%(earned)s/%(possible)s points)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10). There will always be at least 1 point possible.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(num_points)s point possible)" +msgid_plural "(%(num_points)s points possible)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer:" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Hide Answer" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Show Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Reveal Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer hidden" +msgstr "" + +#. Translators: the word unanswered here is about answering a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "unanswered" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Status: unsubmitted" +msgstr "" + +#. Translators: A "rating" is a score a student gives to indicate how well +#. they feel they were graded on this problem +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "You need to pick a rating before you can submit." +msgstr "" + +#. Translators: this message appears when transitioning between openended +#. grading +#. types (i.e. self assesment to peer assessment). Sometimes, if a student +#. did not perform well at one step, they cannot move on to the next one. +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Your score did not meet the criteria to move to the next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Submit" +msgstr "" + +#. Translators: one clicks this button after one has finished filling out the +#. grading +#. form for an openended assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: this button is clicked to submit a student's rating of +#. an evaluator's assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit post-assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Answer saved, but not yet submitted." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Please confirm that you wish to submit your work. You will not be able to " +"make any changes after submitting." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"You are trying to upload a file that is too large for our system. Please " +"choose a file under 2MB or paste a link to it into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Are you sure you want to remove your previous response to this question?" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Moved to next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"File uploads are required for this question, but are not supported in your " +"browser. Try the newest version of Google Chrome. Alternatively, if you have" +" uploaded the image to another website, you can paste a link to it into the " +"answer box." +msgstr "" + +#. Translators: "Show Question" is some text that, when clicked, shows a +#. question's +#. content that had been hidden +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Show Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Hide Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/sequence/display.js +msgid "" +"Sequence error! Cannot navigate to tab %(tab_name)s in the current " +"SequenceModule. Please contact the course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Video slider" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Pause" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Play" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Fill browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Exit full browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD on" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD off" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video ended" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s hour" +msgid_plural "%(value)s hours" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s minute" +msgid_plural "%(value)s minutes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s second" +msgid_plural "%(value)s seconds" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Volume" +msgstr "" + +#. Translators: Volume level equals 0%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Muted" +msgstr "" + +#. Translators: Volume level in range (0,20]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very low" +msgstr "" + +#. Translators: Volume level in range (20,40]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Low" +msgstr "" + +#. Translators: Volume level in range (40,60]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Average" +msgstr "" + +#. Translators: Volume level in range (60,80]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Loud" +msgstr "" + +#. Translators: Volume level in range (80,100)% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very loud" +msgstr "" + +#. Translators: Volume level equals 100%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Maximum" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Caption will be displayed when " +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on captions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn off captions" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Hide Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Show Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Sorry" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "We had some trouble loading the discussion. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "" +"We had some trouble loading the threads you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "Loading content" +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "" +"We had some trouble processing your request. Please ensure you have copied " +"any unsaved work and then reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "We had some trouble processing your request. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +msgid "…" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Close" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Open" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "remove vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Load more" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading more threads" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "We had some trouble loading more threads. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "%(unread_count)s new comment" +msgid_plural "%(unread_count)s new comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading thread list" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to remove report" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported%(start_sr_span)s, click to remove report%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Report Misuse" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned%(start_sr_span)s, click to unpin%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to unpin" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pin Thread" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading responses. Please reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading more responses. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "%(numResponses)s response" +msgid_plural "%(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing first response" +msgid_plural "Showing first %(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load next %(numResponses)s responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Are you sure you want to delete this post?" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +msgid "anonymous" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "staff" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Community TA" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported, click to remove report" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Are you sure you want to delete this comment?" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "We had some trouble deleting this comment. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/thread_response_view.js +msgid "Are you sure you want to delete this response?" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s ago" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s from now" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "less than a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about an hour" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about %d hour" +msgid_plural "about %d hours" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "a day" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a month" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a year" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Available %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of available %s. You may choose some by selecting them in " +"the box below and then clicking the \"Choose\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Type into this box to filter down the list of available %s." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Filter" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to choose all %s at once." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Chosen %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of chosen %s. You may remove some by selecting them in the " +"box below and then clicking the \"Remove\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to remove all chosen %s at once." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "%(sel)s of %(cnt)s selected" +msgid_plural "%(sel)s of %(cnt)s selected" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have unsaved changes on individual editable fields. If you run an " +"action, your unsaved changes will be lost." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, but you haven't saved your changes to " +"individual fields yet. Please click OK to save. You'll need to re-run the " +"action." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, and you haven't made any changes on individual " +"fields. You're probably looking for the Go button rather than the Save " +"button." +msgstr "" + +#. Translators: the names of months, keep the pipe (|) separators. +#: lms/static/admin/js/calendar.js lms/static/admin/js/dateparse.js +msgid "" +"January|February|March|April|May|June|July|August|September|October|November|December" +msgstr "" + +#. Translators: abbreviations for days of the week, keep the pipe (|) +#. separators. +#: lms/static/admin/js/calendar.js +msgid "S|M|T|W|T|F|S" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.js.c +#: lms/static/admin/js/collapse.min.js +msgid "Show" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.min.js +msgid "Hide" +msgstr "" + +#. Translators: the names of days, keep the pipe (|) separators. +#: lms/static/admin/js/dateparse.js +msgid "Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Now" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Clock" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Choose a time" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Midnight" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "6 a.m." +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Noon" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Today" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Calendar" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Yesterday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Tomorrow" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Open Calculator" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Close Calculator" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Preview" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Post body" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching distribution." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Unavailable metric display." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching grade distributions." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Last Updated: <%= timestamp %>" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "<%= num_students %> students scored." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Loading..." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error getting student list." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error retrieving grading configuration." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error generating grades. Please try again." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "File Name" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "" +"Links are generated on demand and expire within 5 minutes due to the " +"sensitive nature of student information." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Username" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Revoke access" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Enter username or email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Please enter a username or email." +msgstr "" + +#. Translators: A rolename appears this sentence.; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error fetching list for role" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +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 "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully removed as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not removed as beta testers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Users must create and activate their account before they can be promoted to " +"beta tester." +msgstr "" + +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Could not find users associated with the following identifiers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error enrolling/unenrolling users." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following email addresses and/or usernames are invalid:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled and sent email to the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Emails successfully sent. The following users are no longer enrolled in the " +"course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following users are no longer enrolled in the course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"These users were not affiliated with the course so could not be unenrolled:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message must have a subject." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message cannot be blank." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to yourself. Is this " +"OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to everyone who is " +"staff or instructor on this course. Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to ALL (everyone who " +"is enrolled in this course as student, staff, or instructor). Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Error sending email." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There is no email history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There was an error obtaining email task history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a student email address or username." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting student progress url for '<%= student_id %>'. Check that the " +"student identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a problem urlname." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Success! Problem attempts reset for problem '<%= problem_id %>' and student " +"'<%= student_id %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error resetting problem attempts for problem '<%= problem_id %>' and student" +" '<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Delete student '<%= student_id %>'s state on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id" +" %>'. Check that the problem and student identifiers are spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Module state successfully deleted." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Started rescore problem task for problem '<%= problem_id %>' and student " +"'<%= student_id %>'. Click the 'Show Background Task History for Student' " +"button to see the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>' for student " +"'<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting task history for problem '<%= problem_id %>' and student '<%= " +"student_id %>'. Check that the problem and student identifiers are spelled " +"correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Reset attempts for all students on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to reset attempts for problem '<%= problem_id %>'." +" Click the 'Show Background Task History for Problem' button to see the " +"status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to reset attempts for all students on problem '<%= " +"problem_id %>'. Check that the problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Rescore problem '<%= problem_id %>' for all students?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to rescore problem '<%= problem_id %>' for all " +"students. Click the 'Show Background Task History for Problem' button to see" +" the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>'. Check that the" +" problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Error listing task history for this student and problem." +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Type" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task inputs" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task ID" +msgstr "" + +#. Translators: a "Requester" is a username that requested a task such as +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Requester" +msgstr "" + +#. Translators: A timestamp of when a task (eg, sending email) was submitted +#. appears after this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Submitted" +msgstr "" + +#. Translators: The length of a task (eg, sending email) in seconds appears +#. this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Duration (sec)" +msgstr "" + +#. Translators: The state (eg, "In progress") of a task (eg, sending email) +#. appears after this. +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "State" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Status" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Grades saved. Fetching the next submission to grade." +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Problem Name" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Graded" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Available to Grade" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Required" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Back to problem list" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Try loading again" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> available " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> graded " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> more needed to start ML" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Re-check for submissions" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state: <%= state %>" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state for submission: " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Hide)" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Show)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Image (upload file or type url)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Markdown Editing Help" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bold (Ctrl+B)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Italic (Ctrl+I)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Hyperlink (Ctrl+L)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote (Ctrl+Q)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Code Sample (Ctrl+K)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Image (Ctrl+G)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Numbered List (Ctrl+O)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bulleted List (Ctrl+U)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading (Ctrl+H)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Horizontal Rule (Ctrl+R)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Undo (Ctrl+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Y)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Shift+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "strong text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "emphasized text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter image description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter link description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote" +msgstr "" + +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +msgid "enter code here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "List item" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading" +msgstr "" + +#: lms/templates/class_dashboard/all_section_metrics.js +#: lms/templates/class_dashboard/all_section_metrics.js +msgid "Unable to retrieve data, please try again later." +msgstr "" + +#: lms/templates/class_dashboard/d3_stacked_bar_graph.js +msgid "Number of Students" +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "" +"This may be happening because of an error with our server or your internet " +"connection. Try refreshing the page or making sure you are online." +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "Studio's having trouble saving your work" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/xblock/cms.runtime.v1.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js +#: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js +#: cms/static/js/views/xblock_editor.js +msgid "Saving…" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "Delete Component Confirmation" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "" +"Are you sure you want to delete this component? This action cannot be " +"undone." +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js +msgid "Deleting…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js +msgid "Adding…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Duplicating…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Delete this component?" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Deleting this component is permanent and cannot be undone." +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Yes, delete this component" +msgstr "" + +#: cms/static/js/base.js +msgid "This link will open in a modal window" +msgstr "" + +#: cms/static/js/base.js +msgid "Delete this " +msgstr "" + +#: cms/static/js/base.js +msgid "Deleting this " +msgstr "" + +#: cms/static/js/base.js +msgid "Yes, delete this " +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces or special characters in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "" +"The combined length of the organization, course number, and course run " +"fields cannot be more than 65 characters." +msgstr "" + +#: cms/static/js/index.js +msgid "Required field." +msgstr "" + +#: cms/static/js/sock.js +msgid "Hide Studio Help" +msgstr "" + +#: cms/static/js/sock.js +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/static/js/models/course.js cms/static/js/models/section.js +msgid "You must specify a name" +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "" +"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " +"<%= fileExtensions %> to upload." +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "or" +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course must have an assigned start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course end date cannot be before the course start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course start date cannot be before the enrollment start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment start date cannot be after the enrollment end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment end date cannot be after the course end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "Key should only contain letters, numbers, _, or -" +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "There's already another assignment type with this name." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer between 0 and 100." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer greater than 0." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter non-negative integer." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Cannot drop more <% attrs.types %> than will assigned." +msgstr "" + +#: cms/static/js/models/settings/course_grading_policy.js +msgid "Grace period must be specified in HH:MM format." +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Delete File Confirmation" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "" +"Are you sure you wish to delete this item. It cannot be reversed!\n" +"\n" +"Also any content that links/refers to this item will no longer work (e.g. broken images and/or links)" +msgstr "" + +#: cms/static/js/views/asset.js cms/static/js/views/show_textbook.js +msgid "Delete" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Your file has been deleted." +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Name" +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Date Added" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "Are you sure you want to delete this update?" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "This action cannot be undone." +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Upload a new PDF to “<%= name %>”" +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + +#: cms/static/js/views/edit_textbook.js +#: cms/static/js/views/overview_assignment_grader.js +msgid "Saving" +msgstr "" + +#: cms/static/js/views/import.js +msgid "There was an error with the upload" +msgstr "" + +#: cms/static/js/views/import.js +msgid "" +"File format not supported. Please upload a file with a tar.gz " +"extension." +msgstr "" + +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Collapse All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Expand All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Release date:" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "{month}/{day}/{year} at {hour}:{minute} UTC" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Edit section release date" +msgstr "" + +#: cms/static/js/views/overview_assignment_grader.js +msgid "Not Graded" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "ascending" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "descending" +msgstr "" + +#: cms/static/js/views/paging_header.js +msgid "" +"Showing %(current_span)s%(start)s-%(end)s%(end_span)s out of " +"%(total_span)s%(total)s total%(end_span)s, sorted by " +"%(order_span)s%(sort_order)s%(end_span)s %(sort_direction)s" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Your change could not be saved" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Return and resolve this issue" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Delete “<%= name %>”?" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "" +"Deleting a textbook cannot be undone and once deleted any reference to it in" +" your courseware's navigation will also be removed." +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Deleting" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "We're sorry, there was an error" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes will not take effect until you save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes, but there are some errors" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "" +"Please address the errors on this page first, and then save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Save Changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes have been saved." +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Your changes will not take effect until you save your progress. Take care " +"with key and value formatting, as validation is not implemented." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Please note that validation of your policy key and value pairs is not " +"currently in place yet. If you are having difficulties, please review your " +"policy pairs." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Upload your course image." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Files must be in JPEG or PNG format." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/ca/LC_MESSAGES/django.mo b/conf/locale/ca/LC_MESSAGES/django.mo index 74e668efe0..9ed420cd07 100644 Binary files a/conf/locale/ca/LC_MESSAGES/django.mo and b/conf/locale/ca/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ca/LC_MESSAGES/django.po b/conf/locale/ca/LC_MESSAGES/django.po index fcc30902e9..ca7f1b3167 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: +# ariadna.lawyer.23 , 2014 # claudi , 2014 # mcolomer , 2014 # sarina , 2014 @@ -48,7 +49,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-04-25 17:00+0000\n" "Last-Translator: mcolomer \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/edx-platform/language/ca/)\n" @@ -817,7 +818,7 @@ msgid "unanswered" msgstr "no respostes" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1384,6 +1385,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Navegació" @@ -4916,10 +4927,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4929,6 +4954,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5728,10 +5757,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/ca/LC_MESSAGES/djangojs.mo b/conf/locale/ca/LC_MESSAGES/djangojs.mo index b5938cdf4f..3dcfcd774f 100644 Binary files a/conf/locale/ca/LC_MESSAGES/djangojs.mo and b/conf/locale/ca/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ca/LC_MESSAGES/djangojs.po b/conf/locale/ca/LC_MESSAGES/djangojs.po index 6ce311e022..82a6e4c4a0 100644 --- a/conf/locale/ca/LC_MESSAGES/djangojs.po +++ b/conf/locale/ca/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-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-25 16:10+0000\n" "Last-Translator: mcolomer \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/edx-platform/language/ca/)\n" diff --git a/conf/locale/ca@valencia/LC_MESSAGES/django.mo b/conf/locale/ca@valencia/LC_MESSAGES/django.mo index 68cfb91504..6a9289f958 100644 Binary files a/conf/locale/ca@valencia/LC_MESSAGES/django.mo and b/conf/locale/ca@valencia/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ca@valencia/LC_MESSAGES/django.po b/conf/locale/ca@valencia/LC_MESSAGES/django.po index 8fdcb604d3..e1ef3d7d0d 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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -171,6 +171,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -181,6 +191,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -307,7 +324,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -319,6 +336,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -767,7 +800,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -788,6 +821,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -800,6 +837,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -894,6 +953,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -926,11 +989,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -980,6 +1061,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1264,10 +1357,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1695,10 +1802,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1741,6 +1852,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2028,7 +2148,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2255,37 +2375,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2385,6 +2474,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3077,6 +3170,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3143,6 +3237,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3684,35 +3779,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3730,6 +3801,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3754,23 +3838,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3811,14 +3913,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 "" @@ -4026,12 +4120,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4042,12 +4135,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4088,11 +4180,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4201,6 +4329,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4256,18 +4388,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4375,14 +4495,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4425,7 +4541,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4652,10 +4769,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4665,6 +4811,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4708,15 +4862,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4768,6 +4922,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4825,8 +4983,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4883,10 +5042,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4967,6 +5128,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5057,33 +5238,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5092,6 +5257,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5108,14 +5277,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5155,7 +5316,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5200,43 +5361,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5485,8 +5614,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5724,6 +5853,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5732,6 +5865,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5775,17 +5922,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5915,6 +6056,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5935,12 +6080,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6275,12 +6420,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6394,10 +6533,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6570,6 +6717,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6688,6 +6842,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7050,24 +7208,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7079,6 +7227,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7118,10 +7274,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7202,6 +7367,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7212,10 +7381,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7639,7 +7804,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7650,9 +7816,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7670,6 +7837,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7691,7 +7862,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7700,6 +7871,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7831,6 +8012,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8062,6 +8264,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8298,6 +8506,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8537,20 +8755,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8560,7 +8776,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8931,6 +9147,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8971,13 +9189,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9666,19 +9878,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9692,23 +9901,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9743,6 +9969,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11377,6 +11610,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11465,15 +11702,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/ca@valencia/LC_MESSAGES/djangojs.mo b/conf/locale/ca@valencia/LC_MESSAGES/djangojs.mo index 05d2af9443..d55422d232 100644 Binary files a/conf/locale/ca@valencia/LC_MESSAGES/djangojs.mo and b/conf/locale/ca@valencia/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ca@valencia/LC_MESSAGES/djangojs.po b/conf/locale/ca@valencia/LC_MESSAGES/djangojs.po index 2ebbe7dfaf..176c2629cc 100644 --- a/conf/locale/ca@valencia/LC_MESSAGES/djangojs.po +++ b/conf/locale/ca@valencia/LC_MESSAGES/djangojs.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/edx-platform/language/ca@valencia/)\n" "MIME-Version: 1.0\n" @@ -27,6 +27,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -35,6 +36,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -334,6 +337,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -390,16 +395,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -461,6 +464,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -497,6 +505,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -875,9 +887,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -885,7 +898,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1219,15 +1232,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1337,18 +1351,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1364,6 +1373,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1371,19 +1381,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1530,6 +1540,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1545,6 +1559,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1606,6 +1624,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1635,6 +1657,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1659,3 +1701,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/config.yaml b/conf/locale/config.yaml index 19ea9c77d2..6b60bd9490 100644 --- a/conf/locale/config.yaml +++ b/conf/locale/config.yaml @@ -1,66 +1,65 @@ # Configuration for i18n workflow. -# All project are listed here, but ones that do not yet have any reviewed translations -# we don't pull so are commented out. - locales: - en # English - Source Language - ar # Arabic -# - az # Azerbaijani -# - bg_BG # Bulgarian (Bulgaria) -# - bn # Bengali -# - bn_BD # Bengali (Bangladesh) -# - bs # Bosnian + - az # Azerbaijani + - bg_BG # Bulgarian (Bulgaria) + - bn_BD # Bengali (Bangladesh) + - bn_IN # Bengali (India) + - bs # Bosnian - ca # Catalan -# - ca@valencia # Catalan (Valencia) + - ca@valencia # Catalan (Valencia) - cs # Czech -# - cy # Welsh + - cy # Welsh + - da # Danish - de_DE # German (Germany) -# - el # Greek + - el # Greek - en@lolcat # LOLCAT English - en@pirate # Pirate English - es_419 # Spanish (Latin America) -# - es_AR # Spanish (Argentina) -# - es_EC # Spanish (Ecuador) + - es_AR # Spanish (Argentina) + - es_EC # Spanish (Ecuador) - es_ES # Spanish (Spain) -# - es_MX # Spanish (Mexico) -# - es_PE # Spanish (Peru) -# - es_US # Spanish (United States) -# - et_EE # Estonian (Estonia) -# - eu_ES # Basque (Spain) -# - fa # Persian -# - fa_IR # Persian (Iran) -# - fi_FI # Finnish (Finland) + - es_MX # Spanish (Mexico) + - es_PE # Spanish (Peru) + - et_EE # Estonian (Estonia) + - eu_ES # Basque (Spain) + - fa # Persian + - fa_IR # Persian (Iran) + - fi_FI # Finnish (Finland) - fr # French -# - gl # Galician -# - he # Hebrew + - gl # Galician + - he # Hebrew - hi # Hindi -# - hu # Hungarian + - hu # Hungarian - hy_AM # Armenian (Armenia) - id # Indonesian - it_IT # Italian (Italy) - ja_JP # Japanese (Japan) -# - kk_KZ # Kazakh (Kazakhstan) -# - km_KH # Khmer (Cambodia) + - kk_KZ # Kazakh (Kazakhstan) + - km_KH # Khmer (Cambodia) + - kn # Kannada - ko_KR # Korean (Korea) - lt_LT # Lithuanian (Lithuania) -# - ml # Malayalam -# - mn # Mongolian -# - ms # Malay + - ml # Malayalam + - mn # Mongolian + - ms # Malay - nb # Norwegian Bokmål -# - ne # Nepali + - ne # Nepali - nl_NL # Dutch (Netherlands) - pl # Polish - pt_BR # Portuguese (Brazil) -# - pt_PT # Portuguese (Portugal) -# - ru # Russian -# - si # Sinhala -# - sk # Slovak + - pt_PT # Portuguese (Portugal) + - ro # Romanian + - ru # Russian + - si # Sinhala + - sk # Slovak - sl # Slovenian -# - th # Thai + - th # Thai - tr_TR # Turkish (Turkey) - uk # Ukranian -# - ur # Urdu + - ur # Urdu - vi # Vietnamese - zh_CN # Chinese (China) - zh_TW # Chinese (Taiwan) diff --git a/conf/locale/cs/LC_MESSAGES/django.mo b/conf/locale/cs/LC_MESSAGES/django.mo index 69f63e9ec6..afcfd468f0 100644 Binary files a/conf/locale/cs/LC_MESSAGES/django.mo and b/conf/locale/cs/LC_MESSAGES/django.mo differ diff --git a/conf/locale/cs/LC_MESSAGES/django.po b/conf/locale/cs/LC_MESSAGES/django.po index 9bd4a33fcd..dcafa3362a 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-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -815,7 +815,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1380,6 +1380,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -4785,10 +4795,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4798,6 +4822,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5597,10 +5625,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/cs/LC_MESSAGES/djangojs.mo b/conf/locale/cs/LC_MESSAGES/djangojs.mo index 62a16ac7ec..ae8df9d0bd 100644 Binary files a/conf/locale/cs/LC_MESSAGES/djangojs.mo and b/conf/locale/cs/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/cs/LC_MESSAGES/djangojs.po b/conf/locale/cs/LC_MESSAGES/djangojs.po index f3e1ab11f5..82aafd923f 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-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Czech (http://www.transifex.com/projects/p/edx-platform/language/cs/)\n" diff --git a/conf/locale/cy/LC_MESSAGES/django.mo b/conf/locale/cy/LC_MESSAGES/django.mo index dcd9765834..f81be83b95 100644 Binary files a/conf/locale/cy/LC_MESSAGES/django.mo and b/conf/locale/cy/LC_MESSAGES/django.mo differ diff --git a/conf/locale/cy/LC_MESSAGES/django.po b/conf/locale/cy/LC_MESSAGES/django.po index 1e2b1dc668..7a40d2a211 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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -173,6 +173,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -183,6 +193,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -309,7 +326,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -321,6 +338,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -769,7 +802,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -790,6 +823,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -802,6 +839,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -896,6 +955,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -928,11 +991,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -982,6 +1063,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1266,10 +1359,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1697,10 +1804,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1743,6 +1854,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2030,7 +2150,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2257,37 +2377,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2387,6 +2476,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3079,6 +3172,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3145,6 +3239,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3686,35 +3781,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3732,6 +3803,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3756,23 +3840,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3813,14 +3915,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 "" @@ -4028,12 +4122,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4044,12 +4137,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4090,11 +4182,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4203,6 +4331,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4258,18 +4390,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4377,14 +4497,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4427,7 +4543,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4654,10 +4771,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4667,6 +4813,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4710,15 +4864,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4770,6 +4924,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4827,8 +4985,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4885,10 +5044,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4969,6 +5130,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5059,33 +5240,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5094,6 +5259,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5110,14 +5279,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5157,7 +5318,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5202,43 +5363,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5487,8 +5616,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5730,6 +5859,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5738,6 +5871,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5781,17 +5928,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5921,6 +6062,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5941,12 +6086,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6281,12 +6426,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6400,10 +6539,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6576,6 +6723,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6694,6 +6848,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7060,24 +7218,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7089,6 +7237,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7128,10 +7284,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7212,6 +7377,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7222,10 +7391,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7649,7 +7814,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7660,9 +7826,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7680,6 +7847,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7701,7 +7872,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7710,6 +7881,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7841,6 +8022,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8072,6 +8274,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8308,6 +8516,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8547,20 +8765,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8570,7 +8786,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8941,6 +9157,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8981,13 +9199,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9676,19 +9888,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9702,23 +9911,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9753,6 +9979,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11387,6 +11620,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11475,15 +11712,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/cy/LC_MESSAGES/djangojs.mo b/conf/locale/cy/LC_MESSAGES/djangojs.mo index 50d7d5f353..b8ab5819d9 100644 Binary files a/conf/locale/cy/LC_MESSAGES/djangojs.mo and b/conf/locale/cy/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/cy/LC_MESSAGES/djangojs.po b/conf/locale/cy/LC_MESSAGES/djangojs.po index c7fedf5de8..d934dd5e95 100644 --- a/conf/locale/cy/LC_MESSAGES/djangojs.po +++ b/conf/locale/cy/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-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Welsh (http://www.transifex.com/projects/p/edx-platform/language/cy/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -34,6 +35,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -343,6 +346,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -399,18 +404,16 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -476,6 +479,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -516,6 +524,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -906,9 +918,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -916,7 +929,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1250,15 +1263,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1368,18 +1382,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1395,6 +1404,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1402,19 +1412,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1561,6 +1571,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1576,6 +1590,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1637,6 +1655,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1666,6 +1688,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1690,3 +1732,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/da/LC_MESSAGES/django.mo b/conf/locale/da/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..cea8977c3c Binary files /dev/null and b/conf/locale/da/LC_MESSAGES/django.mo differ diff --git a/conf/locale/da/LC_MESSAGES/django.po b/conf/locale/da/LC_MESSAGES/django.po new file mode 100644 index 0000000000..bcd096de26 --- /dev/null +++ b/conf/locale/da/LC_MESSAGES/django.po @@ -0,0 +1,12580 @@ +# #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Danish (http://www.transifex.com/projects/p/edx-platform/language/da/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Danish (http://www.transifex.com/projects/p/edx-platform/language/da/) +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# messages.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2013 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-02-06 03:04+0000\n" +"Last-Translator: \n" +"Language-Team: Danish (http://www.transifex.com/projects/p/edx-platform/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 1.3\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Translators: "Open Ended Panel" appears on a tab that, when clicked, opens +#. up a panel that +#. displays information about open-ended problems that a user has submitted or +#. needs to grade +#: cms/djangoapps/contentstore/utils.py common/lib/xmodule/xmodule/tabs.py +msgid "Open Ended Panel" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "Honor Code Certificate" +msgstr "" + +#: common/djangoapps/course_modes/views.py common/djangoapps/student/views.py +msgid "Enrollment is closed" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment mode not supported" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Invalid amount selected." +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "No selected price or selected price is too low." +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Community TA" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "" +"Your account has been disabled. If you believe this was done in error, " +"please contact us at {link_start}{support_email}{link_end}" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "Disabled Account" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Male" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Female" +msgstr "" + +#. Translators: 'Other' refers to the student's gender +#. Translators: 'Other' refers to the student's level of education +#: common/djangoapps/student/models.py common/djangoapps/student/models.py +msgid "Other" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Doctorate" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Master's or professional degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Bachelor's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Associate's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Secondary/high school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Junior secondary/junior high/middle school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Elementary/primary school" +msgstr "" + +#. Translators: 'None' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "None" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id not specified" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id is invalid" +msgstr "" + +#: common/djangoapps/student/views.py +#: lms/templates/courseware/course_about.html +msgid "Course is full" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You are not enrolled in this course" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Enrollment action is invalid" +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "There was an error receiving your login information. Please email us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has been temporarily locked due to excessive login failures. " +"Try again later." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Too many failed login attempts. Try again later." +msgstr "" + +#: common/djangoapps/student/views.py lms/templates/provider_login.html +msgid "Email or password is incorrect." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has not been activated. We have sent another activation " +"message. Please check your e-mail for the activation instructions." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please enter a username" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please choose an option" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "User with username {} does not exist" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully disabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully reenabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unexpected account status" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Public Username '{username}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Email '{email}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Error (401 {field}). E-mail us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Accepting Terms of Service is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Agreeing to the Honor Code is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Email cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail is required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Could not send activation e-mail." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unknown error. Please e-mail us to let us know how it happened." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "No inactive user with this e-mail exists" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unable to send reactivation email" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Invalid password" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail address required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with this e-mail already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Old email is the same as the new email." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Name required" +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Invalid ID" +msgstr "" + +#. Translators: the translation for "LONG_DATE_FORMAT" must be a format +#. string for formatting dates in a long form. For example, the +#. American English form is "%A, %B %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "LONG_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "DATE_TIME_FORMAT" must be a format +#. string for formatting dates with times. For example, the American +#. English form is "%b %d, %Y at %H:%M". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "DATE_TIME_FORMAT" +msgstr "" + +#. Translators: the translation for "SHORT_DATE_FORMAT" must be a +#. format string for formatting dates in a brief form. For example, +#. the American English form is "%b %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "SHORT_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "TIME_FORMAT" must be a format +#. string for formatting times. For example, the American English +#. form is "%H:%M:%S". See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "TIME_FORMAT" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "AM" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "PM" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Monday Februrary 10, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Monday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Tuesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Wednesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Thursday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Friday Februrary 14, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Friday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Saturday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Sunday" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jan 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Feb 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Mar 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Apr 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "May 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "May" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jun 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jul 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Aug 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Sep 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Oct 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Nov 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Dec 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "January 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "January" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "February 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "February" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "March 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "March" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "April 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "April" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "May 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "May" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "June 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "June" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "July 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "July" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "August 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "August" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "September 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "September" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "October 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "October" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "November 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "November" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "December 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "December" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Invalid Length ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or more" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or less" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Must be more complex ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more uppercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more lowercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more digits" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more punctuation characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more non ascii characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more unique words" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Too similar to a restricted dictionary word." +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +msgid "Cannot rescore problems with possible file submissions" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "correct" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incorrect" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incomplete" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +msgid "unanswered" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "processing" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your file(s) have been submitted. As soon as your submission is graded, this" +" message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your answer has been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Submitted. As soon as a response is returned, this message will be replaced " +"by that feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Error {err} in evaluating hint function {hintfn}." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "(Source code line unavailable)" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "See XML source line {sourcenum}." +msgstr "" + +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +msgid "There was a problem with the staff answer to this problem." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{student_answer}' as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use variables ({bad_variables}) in numerical problems." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "factorial function evaluated outside its domain:'{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid math syntax: '{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use complex numbers in range tolerance problems" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: complex boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: empty boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "CustomResponse: check function returned an invalid dictionary!" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"Unable to deliver your submission to grader (Reason: {error_msg}). Please " +"try again later." +msgstr "" + +#. Translators: 'grader' refers to the edX automatic code grader. +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/capa/capa/responsetypes.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Invalid grader reply. Please contact the course staff." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: {bad_input} not permitted in answer." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"factorial function not permitted in answer for this problem. Provided answer" +" was: {bad_input}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula" +msgstr "" + +#. Translators: 'SchematicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "The Staff answer could not be interpreted as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{given_answer}' as a number." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Final Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Warning: The problem has been reset to its initial state!" +msgstr "" + +#. Translators: Following this message, there will be a bulleted list of +#. items. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"The problem's state was corrupted by an invalid submission. The submission " +"consisted of:" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "If this error persists, please contact the course staff." +msgstr "" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem is closed." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be reset before it can be checked again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You must wait at least {wait} seconds between submissions." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + +#. Translators: {msg} will be replaced with a problem's error message. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Error: {msg}" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + +#. Translators: 'rescoring' refers to the act of re-submitting a student's +#. solution so it can get a new score. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem's definition does not support rescoring." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be answered before it can be graded again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem needs to be reset prior to save." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Your answers have been saved." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Your answers have been saved but not graded. Click 'Check' to grade them." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Refresh the page and make an attempt before resetting." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"We're sorry, there was an error with processing your request. Please try " +"reloading your page and trying again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"The state of this problem has changed since you loaded this page. Please " +"refresh your page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "General" +msgstr "" + +#. Translators: TBD stands for 'To Be Determined' and is used when a course +#. does not yet have an announced start date. +#: common/lib/xmodule/xmodule/course_module.py +msgid "TBD" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: 'Courseware' refers to the tab in the courseware that leads to +#. the content of a course +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/courseware/courseware-error.html +msgid "Courseware" +msgstr "" + +#. Translators: "Course Info" is the name of the course's information and +#. updates page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Course Info" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Progress" is the name of the student's course progress page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/peer_grading/peer_grading.html +msgid "Progress" +msgstr "" + +#. Translators: "Wiki" is the name of the course's wiki page +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/course_wiki/views.py +#: lms/templates/wiki/base.html +msgid "Wiki" +msgstr "" + +#. Translators: "Discussion" is the title of the course forum page +#. Translators: 'Discussion' refers to the tab in the courseware that leads to +#. the discussion forums +#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +msgid "Discussion" +msgstr "" + +#: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Textbooks" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Staff grading" appears on a tab that allows +#. staff to view open-ended problems that require staff grading +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/instructor/staff_grading.html +msgid "Staff grading" +msgstr "" + +#. Translators: "Peer grading" appears on a tab that allows +#. students to view open-ended problems that require grading +#: common/lib/xmodule/xmodule/tabs.py +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 +msgid "Syllabus" +msgstr "" + +#. Translators: 'Instructor' appears on the tab that leads to the instructor +#. dashboard, which is +#. a portal where an instructor can get data and perform various actions on +#. their course +#: common/lib/xmodule/xmodule/tabs.py +msgid "Instructor" +msgstr "" + +#. Translators: "Self" is used to denote an openended response that is self- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Self" +msgstr "" + +#. Translators: "AI" is used to denote an openended response that is machine- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "AI" +msgstr "" + +#. Translators: "Peer" is used to denote an openended response that is peer- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Peer" +msgstr "" + +#. Translators: "Not started" is used to communicate to a student that their +#. response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Not started." +msgstr "" + +#. Translators: "Being scored." is used to communicate to a student that their +#. response +#. are in the process of being scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Being scored." +msgstr "" + +#. Translators: "Scoring finished" is used to communicate to a student that +#. their response +#. have been scored, but the full scoring process is not yet complete +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scoring finished." +msgstr "" + +#. Translators: "Complete" is used to communicate to a student that their +#. openended response has been fully scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Complete." +msgstr "" + +#. Translators: "Scored rubric" appears to a user as part of a longer +#. string that looks something like: "Scored rubric from grader 1". +#. "Scored" is an adjective that modifies the noun "rubric". +#. That longer string appears when a user is viewing a graded rubric +#. returned from one of the graders of their openended response problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scored rubric" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "" +"You have attempted this question {number_of_student_attempts} times. You are" +" only allowed to attempt it {max_number_of_attempts} times." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "The problem state got out-of-sync. Please try reloading the page." +msgstr "" + +#. Translators: "Self-Assessment" refers to the self-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Self-Assessment" +msgstr "" + +#. Translators: "Peer-Assessment" refers to the peer-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Peer-Assessment" +msgstr "" + +#. Translators: "Instructor-Assessment" refers to the instructor-assessed mode +#. of openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Instructor-Assessment" +msgstr "" + +#. Translators: "AI-Assessment" refers to the machine-graded mode of openended +#. evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "AI-Assessment" +msgstr "" + +#. Translators: 'tag' is one of 'feedback', 'submission_id', +#. 'grader_id', or 'score'. They are categories that a student +#. responds to when filling out a post-assessment survey +#. of his or her grade from an openended problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Could not find needed tag {tag_name} in the survey responses. Please try " +"submitting again." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "There was an error saving your feedback. Please contact course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Couldn't submit feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Unable to save your feedback. Please try again later." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your submission." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Unable to submit your submission to the grader. Please try again later." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error getting feedback from grader." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "No feedback available from grader." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error handling action. Please try again." +msgstr "" + +#. Translators: this string appears once an openended response +#. is submitted but before it has been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: "Not started" communicates to a student that their response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Not started" +msgstr "" + +#. Translators: "In progress" communicates to a student that their response +#. is currently in the grading process +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "In progress" +msgstr "" + +#. Translators: "Done" communicates to a student that their response +#. has been fully graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Done" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We could not find a file in your submission. Please try choosing a file or " +"pasting a URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We are having trouble saving your file. Please try another file or paste a " +"URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/self_assessment_module.py +msgid "Error saving your score. Please notify course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Can't receive transcripts from Youtube for {youtube_id}. Status code: " +"{status_code}." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Can't find any transcripts on the Youtube service." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "We support only SubRip (*.srt) transcripts format." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Something wrong with SubRip transcripts file during parsing. Inner message " +"is {error_message}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Something wrong with SubRip transcripts file during parsing." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "A YouTube URL or a link to a file hosted anywhere on the web." +msgstr "" + +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Navigation" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "About these documents" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Index" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Search" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/copyright.html +msgid "Copyright" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: " +"{grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "students" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "questions" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{num_students} student(s) opened Subsection {subsection_num}: " +"{subsection_name}" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{problem_info_x} {problem_info_n} - {count_grade} {students} " +"({percent:.0f}%: {grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#. Translators: this string includes wiki markup. Leave the ** and the _ +#. alone. +#: lms/djangoapps/course_wiki/views.py +msgid "This is the wiki for **{organization}**'s _{course_name}_." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Course page automatically created." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Welcome to the edX Wiki" +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Visit a course wiki to add an article." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} does not exist." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} has never accessed problem {location}" +msgstr "" + +#: lms/djangoapps/courseware/features/video.py lms/templates/video.html +msgid "ERROR: No playable video sources found!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Path {0} doesn't exist, please create it, or configure a different path with" +" GIT_REPO_DIR" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Non usable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to get git log" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "git clone or pull failed!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to run import command." +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "The underlying module store does not support import." +msgstr "" + +#. Translators: This is an error message when they ask for a +#. particular version of a git repository and that version isn't +#. available from the remote source they specified +#: lms/djangoapps/dashboard/git_import.py +msgid "The specified remote branch is not available." +msgstr "" + +#. Translators: Error message shown when they have asked for a git +#. repository branch, a specific version within a repository, that +#. doesn't exist, or there is a problem changing to it. +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to switch to specified branch. Please check your branch name." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}, error {1}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "fixed password" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "All ok!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide full name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email must end in" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed - email {0} already exists as external_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Password must be supplied if not using certificates" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email address required (not username)" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Oops, failed to create user {0}, IntegrityError" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "User {0} created successfully!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with email address {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with username {0} - {1}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted user {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Statistic" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Value" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Site statistics" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Total number of users" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Courses loaded in the modulestore" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/templates/tracking_log.html +msgid "username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "email" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Repair Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Create User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Delete User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "The git repo location should end with '.git', and be a valid url" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Added Course" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Refusing to import. GIT_IMPORT_WITH_XMLMODULESTORE is not turned on, and it " +"is generally not safe to import into an XMLModuleStore with multithreaded. " +"We recommend you enable the MongoDB based module store instead, unless this " +"is a development environment." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "" +"The course {0} already exists in the data directory! (reloading anyway)" +msgstr "" + +#. Translators: unable to download the course content from +#. the source git repository. Clone occurs if this is brand +#. new, and pull is when it is being updated from the +#. source. +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Unable to clone or pull repository. Please check your url. Output was: {0!r}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed to clone repository to {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Successfully switched to branch: {branch_name}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Loaded course {0} {1}
Errors:" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: cms/templates/index.html cms/templates/settings.html +msgid "Course Name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Directory/ID" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Git Commit" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Change" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Editor" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Information about all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Error - cannot get course with ID {0}
{1}
" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "course_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# enrolled" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# staff" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "instructors" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Enrollment information for all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "role" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "full_name" +msgstr "" + +#: lms/djangoapps/dashboard/management/commands/git_add_course.py +msgid "" +"Import the specified git repository and optional branch into the modulestore" +" and optionally specified directory." +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with email address" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with username" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Failed in authenticating" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Unable to clone or pull repository" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Error - cannot get course with ID" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Re-open thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Close thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Title can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Body can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Comment level too deep" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "allowed file types are '%(file_types)s'" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "maximum upload file size is %(file_size)sK" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "" +"Error uploading file. Please contact the site administrator. Thank you." +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Good" +msgstr "" + +#: lms/djangoapps/django_comment_client/forum/views.py +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "All Groups" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "User does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Task is already running." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Username" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Name" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Email" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Language" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Location" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Birth Year" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "Gender" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Level of Education" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +msgid "Mailing Address" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Goals" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Complete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Incomplete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Your grade report is being generated! You can view the status of the " +"generation task in the 'Pending Instructor Tasks' section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"A grade report generation task is already in progress. Check the 'Pending " +"Instructor Tasks' table for the status of the task. When completed, the " +"report will be available for download in the table below." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully changed due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully reset due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Membership" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Student Admin" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Extensions" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Data Download" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/courseware/instructor_dashboard.html +msgid "Analytics" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Course Statistics At A Glance" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found a single student. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find student with that email or username." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Summary Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Raw Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for resetting \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found module. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname: {url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Deleted student module state for {state}!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to delete module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Module state successfully reset!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't reset module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{key}\" for student {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{key}\": {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Progress page for username: {username} with email address: {email}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Assignment Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Please enter an assignment name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Invalid assignment name '{name}'" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "External email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades for assignment \"{name}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Staff" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Instructors" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student profile data for course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found {num} records to dump." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student state for problem {problem}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Beta Testers" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades from {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook defined in course metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook url defined in settings.FEATURES" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No gradebook name defined in course remote_gradebook metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to communicate with gradebook server at {url}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: {err}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Remote gradebook response for {action}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Full name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Roles" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Forum {name}s in course {id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown rolename \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown username \"{username}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" does not have rolename \"{rolename}\", cannot " +"remove" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Removed \"{username}\" from \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: user \"{username}\" already has rolename \"{rolename}\", cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" should first be added as staff before adding as a" +" forum administrator, cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Added \"{username}\" to \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "{title} in course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "ID" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py cms/templates/register.html +#: lms/templates/dashboard.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "Full Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "edX email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Un-enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\", module " +"\"{problem}\" and student \"{student}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\" and module " +"\"{problem}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unable to parse date: " +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Couldn't find module for url: {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor/views/tools.py +msgid "Extended Due Date" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Users with due date extensions for {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unit" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Due date extensions for {0} {1} ({2})" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "rescored" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "reset" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/templates/wiki/plugins/attachments/index.html wiki/models/article.py +msgid "deleted" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "emailed" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks.py +msgid "graded" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#: lms/djangoapps/instructor_task/views.py +msgid "No status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No task_output information found for instructor_task {0}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No message provided" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "Invalid task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No progress status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_input information found for instructor_task {0}: {1}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} and {succeeded} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Progress: {action} {succeeded} of {attempted} so far" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find submission to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any students with submissions to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for any of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem {action} for {succeeded} of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any recipients to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message failed to be {action} for any of {attempted} recipients " +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message successfully {action} for {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Message {action} for {succeeded} of {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Status: {action} {succeeded} of {attempted}" +msgstr "" + +#. Translators: {skipped} is a count. This message is appended to task +#. progress status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (skipping {skipped})" +msgstr "" + +#. Translators: {total} is a count. This message is appended to task progress +#. status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (out of {total})" +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +"\n" +" Dear %(student_name)s,\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +" \n" +" Congratulations on earning your certificate in %(course_name)s!\n" +" Since you have an account on LinkedIn, you can display your hard earned\n" +" credential for your colleagues to see. Click the button below to add the\n" +" certificate to your profile.\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "Add to profile" +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Could not contact the external grading server. Please contact the " +"development team at {email}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Cannot find any open response problems in this course. Have you submitted " +"answers to any open response assessment questions? If not, please do so and " +"return to this page." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "AI Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Peer Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Not yet available" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Automatic Checker" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Instructor Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify course " +"staff." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify your edX" +" point of contact." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "for course {0} and student {1}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View all problems that require peer assessment in this particular course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View ungraded submissions submitted by students for the open ended problems " +"in the course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View open ended problems that you have previously submitted for grading." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "View submissions that have been flagged by students as inappropriate." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +#: lms/djangoapps/open_ended_grading/views.py +msgid "New submissions to grade" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "New grades have been returned" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "Submissions have been flagged for review" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"\n" +" Error with initializing peer grading.\n" +" There has not been a peer grading module created in the courseware that would allow you to grade others.\n" +" Please check back later for this.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Order Payment Confirmation" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Trying to add a different currency into the cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Please visit your dashboard to see your new" +" enrollments." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "[Refund] User-Requested Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Mode {mode} does not exist for {course_id}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Certificate of Achievement, {mode_name} for course {course}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Note - you have up to 2 weeks into the course to unenroll from the Verified " +"Certificate option and receive a full refund. To receive your refund, " +"contact {billing_email}. Please include your order number in your e-mail. " +"Please do NOT include your credit card information." +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order Number" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Customer Name" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Original Transaction" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Amount of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "Service Fees (if any)" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Purchase Time" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order ID" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Status" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +msgid "Quantity" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Unit Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Currency" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: wiki/plugins/attachments/forms.py +msgid "Description" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Comments" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "University" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html +#: cms/templates/widgets/header.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Course" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Announce Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html +msgid "Course Start Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Close Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Period" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Enrolled" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Audit Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Honor Code Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Verified Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue over the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Verified Students Contributing More than the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Dollars Refunded" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Transactions" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Payments Collected" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Successful Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Amount of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You must be logged-in to add to a shopping cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course you requested does not exist." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course {0} is already in your cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "You are already registered in course {0}." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Course added to cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You do not have permission to view this page." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor did not return a required parameter: {0}" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor returned a badly-typed value {0} for param {1}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The payment processor accepted an order whose number is not in our system." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The amount charged by the processor {0} {1} is different than the total cost" +" of the order {2} {3}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor did not accept your payment.\n" +" The decision they returned was {decision},\n" +" and the reason was {reason_code}:{reason_msg}.\n" +" You were not charged. Please try a different form of payment.\n" +" Contact us with payment-related questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a payment confirmation that had inconsistent data!\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" The specific error message is: {msg}.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Due to an error your purchase was charged for a different amount than the order total!\n" +" The specific error message is: {msg}.\n" +" Your credit card has probably been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a corrupted message regarding your charge, so we are\n" +" unable to validate that the message actually came from the payment processor.\n" +" The specific error message is: {msg}.\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Successful transaction." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request is missing one or more required fields." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "One or more fields in the request contains invalid data." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The merchantReferenceCode sent with this authorization request matches the\n" +" merchantReferenceCode of another authorization request that you sent in the last 15 minutes.\n" +" Possible fix: retry the payment after 15 minutes.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Error: General system failure. Possible fix: retry the payment after a few " +"minutes." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received but there was a server timeout.\n" +" This error does not include timeouts between the client and the server.\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but a service did not finish running in time\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The issuing bank has questions about the request. Possible fix: retry with " +"another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Expired card. You might also receive this if the expiration date you\n" +" provided does not match the date the issuing bank has on file.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" General decline of the card. No other information provided by the issuing bank.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Insufficient funds in the account. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Unknown reason" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Issuing bank unavailable. Possible fix: retry again after a few minutes" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Inactive card or card not authorized for card-not-present transactions.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The card has reached the credit limit. Possible fix: retry with another form" +" of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid card verification number. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid account number. Possible fix: retry with another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type is not accepted by the payment processor.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"General decline by the processor. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" There is a problem with our CyberSource merchant configuration. Please let us know at {0}\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The requested amount exceeds the originally authorized amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Processor Failure. Possible fix: retry the payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The authorization has already been captured" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The requested transaction amount must match the previous transaction amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type sent is invalid or does not correlate with the credit card number.\n" +" Possible fix: retry with the same card or another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request ID is invalid." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" You requested a capture through the API, but there is no corresponding, unused authorization record.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The transaction has already been settled or reversed." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The capture or credit is not voidable because the capture or credit information has already been\n" +" submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "You requested a credit for a capture that was previously voided" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but there was a timeout at the payment processor.\n" +" Possible fix: retry the payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource.'\n" +" Possible fix: retry with a different form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Reports" +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "" +"There was an error in your date input. It should be formatted as YYYY-MM-DD" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "No photo ID was provided." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "We couldn't read your name from your photo ID image." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "" +"The name associated with your account and the name on your ID do not match." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "The image of your face was not clear." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "Your face was not visible in your self-photo" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "There was an error verifying your ID photos." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Selected price is not valid number." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "This course doesn't support verified certificates" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "No selected price or selected price is below minimum." +msgstr "" + +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html +msgid "Skip to this view's content" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +#: lms/templates/registration/password_reset_complete.html +msgid "Your Password Reset is Complete" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +msgid "" +"\n" +" Your password has been set. You may go ahead and %(link_start)slog in%(link_end)s now.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Form" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" We're sorry, %(platform_name)s enrollment is not available in your region\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The following errors occurred while processing your registration: " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "You must complete all fields." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The two password fields didn't match." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"We're sorry, our systems seem to be having trouble processing your password " +"reset" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Someone has been made aware of this issue. Please try again shortly. Please %(start_link)scontact us%(end_link)s about any concerns you have.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"Please enter your new password twice so we can verify you typed it in " +"correctly.
Required fields are noted by bold text and an asterisk (*)." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: lms/templates/forgot_password_modal.html lms/templates/login.html +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Required Information" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password Again" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Change My Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your Password Reset Was Unsuccessful" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" The password reset link was invalid, possibly because the link has already been used. Please return to the %(start_link)slogin page%(end_link)s and start the password reset process again.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Help" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: cms/templates/login.html lms/templates/login-sidebar.html +#: lms/templates/register-sidebar.html +msgid "Need Help?" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" View our %(start_link)shelp section for contact information and answers to commonly asked questions%(end_link)s\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"You're receiving this e-mail because you requested a password reset for your" +" user account at edx.org." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet reset your password." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Thanks for using our site!" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "The edX Team" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "Last modified:" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "See all children" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "This article was last modified:" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/create.html.py +msgid "Add new article" +msgstr "" + +#: lms/templates/wiki/create.html +msgid "Create article" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/delete.html +#: lms/templates/wiki/delete.html.py +msgid "Go back" +msgstr "" + +#: lms/templates/wiki/delete.html lms/templates/wiki/delete.html.py +#: lms/templates/wiki/edit.html +msgid "Delete article" +msgstr "" + +#: lms/templates/wiki/delete.html +#: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Delete" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You cannot delete a root article." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You cannot delete this article because you do not have permission to delete " +"articles with children. Try to remove the children manually one-by-one." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You are deleting an article. This means that its children will be deleted as" +" well. If you choose to purge, children will also be purged!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "Articles that will be deleted" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "...and more!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You are deleting an article. Please confirm." +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/wiki/includes/article_menu.html +msgid "Edit" +msgstr "" + +#: lms/templates/wiki/edit.html lms/templates/wiki/edit.html.py +msgid "Save changes" +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/unit.html +msgid "Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this is a control to allow users to exit out of this modal +#. interface (a menu or piece of UI that takes the full focus of the screen) +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/modal/_modal-settings-language.html +#: lms/templates/modal/accessible_confirm.html +msgid "Close" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Wiki Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html +#: lms/templates/modal/_modal-settings-language.html +msgid "window open" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Back to editor" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "History" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"Click each revision to see a list of edited lines. Click the Preview button " +"to see how the article looked at this stage. At the bottom of this page, you" +" can change to a particular revision or merge an old revision with the " +"current one." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "(no log message)" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Preview this revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Auto log:" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Change" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Merge selected with current..." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Switch to selected version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Wiki Revision Preview" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Back to history view" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Switch to this version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge Revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge with current" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"When you merge a revision with the current, all data will be retained from " +"both versions and merged at its approximate location from each revision." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "After this, it's important to do a manual review." +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Create new merged version" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing revision:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing a merge between two revisions:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "This revision has been deleted." +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Restoring to this revision will mark the article as deleted." +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "" +"\n" +" You need to log in or sign up to use this function.\n" +" " +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in or sign up to use this function." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Cheatsheet" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Syntax Help" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"This wiki uses Markdown for styling. There are several " +"useful guides online. See any of the links below for in-depth details:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Markdown: Basics" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quick Markdown Syntax Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Miniature Markdown Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"To create a new wiki article, create a link to it. Clicking the link gives " +"you the creation page." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "[Article Name](wiki:ArticleName)" +msgstr "" + +#. Translators: Do not translate "edX" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Additions:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Math Expression" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Useful examples:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wikipedia" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Wiki" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Huge Header" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Smaller Header" +msgstr "" + +#. Translators: Leave the punctuation, but translate "emphasis" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "*emphasis* or _emphasis_" +msgstr "" + +#. Translators: Leave the punctuation, but translate "strong" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "**strong** or __strong__" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Unordered List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 1" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 2" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Ordered" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quotes" +msgstr "" + +#: lms/templates/wiki/includes/editor_widget.html +msgid "" +"\n" +" Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for help.\n" +" " +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/wiki_plugin.py +msgid "Attachments" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload new file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search and add file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload File" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search files and articles" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"You can reuse files from other articles. These files are subject to updates " +"on other articles which may or may not be a good thing." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"The following files are available for this article. Copy the markdown tag to" +" directly refer to a file from the article text." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Markdown tag" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Uploaded by" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Size" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File History" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Detach" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Replace" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Restore" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "anonymous (IP logged)" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File history" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "revisions" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "There are no attachments for this article." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Invalid course update id." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Course update not found." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " +"configure a different path with GIT_REPO_EXPORT_DIR" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Non writable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"If using http urls, you must provide the username and password in the url. " +"Similar to https://user:pass@github.com/user/course." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to determine branch, repo in detached HEAD mode" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to update or clone git repository." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to export course to xml." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to configure git username and password" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to commit changes. This is usually because there are no changes to be" +" committed" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to push changes. This is usually because the remote repository " +"cannot be contacted" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Bad course location provided" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Missing branch on fresh clone" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command was: {0!r}. Working directory was: {1!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command output was: {0!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Directory already exists, doing a git reset and pull instead of git clone." +msgstr "" + +#: cms/djangoapps/contentstore/utils.py lms/templates/notes.html +msgid "My Notes" +msgstr "" + +#: cms/djangoapps/contentstore/management/commands/git_export.py +msgid "" +"Take the specified course and attempt to export it to a git repository\n" +". Course directory must already be a git repository. Usage: git_export " +msgstr "" + +#: cms/djangoapps/contentstore/views/assets.py +msgid "Upload completed" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Special characters not allowed in organization, course number, and course " +"run." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Unable to create course '{name}'.\n" +"\n" +"{err}" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization, course number," +" and course run. Please change either organization or course number to be " +"unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Please change either the organization or course number so that it is unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization and course " +"number. Please change at least one field to be unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/export_git.py +msgid "Course successfully exported to git repository" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "We only support uploading a .tar.gz file." +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "File upload corrupted. Please try again" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "Could not find the course.xml file in the package." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of {0}" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of '{0}'" +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Incoming video data is empty." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Can't find item by locator." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Transcripts are supported only for \"video\" modules." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Insufficient permissions" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Could not find user by email address '{email}'." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "User {email} has registered but has not yet activated his/her account." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "`role` is required" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Only instructors may create other instructors" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "You may not remove the last instructor from a course" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "unrequested" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "pending" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "granted" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "denied" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Studio user" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "The date when state was last updated" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Current course creator state" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "" +"Optional notes about this user (for example, why course creation access was " +"denied)" +msgstr "" + +#: cms/templates/404.html cms/templates/error.html +#: lms/templates/static_templates/404.html +msgid "Page Not Found" +msgstr "" + +#: cms/templates/404.html lms/templates/static_templates/404.html +msgid "Page not found" +msgstr "" + +#: cms/templates/asset_index.html lms/templates/courseware/courseware.html +#: lms/templates/verify_student/_modal_editname.html +msgid "close" +msgstr "" + +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." +msgstr "" + +#. Translators: this is a verb describing the action of viewing more details +#: cms/templates/container_xblock_component.html +#: lms/templates/wiki/includes/article_menu.html +msgid "View" +msgstr "" + +#: cms/templates/html_error.html lms/templates/module-error.html +msgid "Error:" +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +#: lms/templates/courseware/course_about.html +msgid "Course Number" +msgstr "" + +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Organization:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Number:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Pending" +msgstr "" + +#: cms/templates/login.html lms/templates/login.html +#: lms/templates/university_profile/edge.html +msgid "Forgot password?" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/login.html lms/templates/provider_login.html +#: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Password" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + +#: cms/templates/manage_users.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Admin" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + +#: cms/templates/register.html cms/templates/widgets/header.html +#: lms/templates/index.html +msgid "Sign Up" +msgstr "" + +#: cms/templates/register.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "Public Username" +msgstr "" + +#: cms/templates/register.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "Preferred Language" +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Thanks for activating your account." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "This account has already been activated." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Visit your {link_start}dashboard{link_end} to see your courses." +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html +#: lms/templates/static_templates/tos.html +msgid "Terms of Service" +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/footer.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/privacy.html +msgid "Privacy Policy" +msgstr "" + +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py +msgid "Help" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Register for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sorry, there was an error when trying to register you" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your track:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Certificate of Achievement (ID Verified)" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your contribution for this course (min. $" +msgstr "" + +#: common/templates/course_modes/choose.html +#: lms/templates/verify_student/photo_verification.html +msgid "):" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay? What if I don't meet all the requirements?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"As a not-for-profit, edX uses your contribution to support our mission to " +"provide quality education to everyone around the world, and to improve " +"learning through research. While we have established a minimum fee, we ask " +"that you contribute as much as you can." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"I'd like to pay more than the minimum. Is my contribution tax deductible?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please check with your tax advisor to determine whether your contribution is" +" tax deductible." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What if I can't afford it or don't have the necessary equipment?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"If you can't afford the minimum fee or don't meet the requirements, you can " +"audit the course or elect to pursue an honor code certificate at no cost. If" +" you would like to pursue the honor code certificate, please check the honor" +" code certificate box, tell us why you can't pursue the verified certificate" +" below, and then click the 'Select Certificate' button to complete your " +"registration." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Honor Code Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Explain your situation: " +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please write a few sentences about why you'd like to opt out of the paid " +"verified certificate to pursue the honor code certificate:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Verified Registration Requirements" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To upgrade your registration and work towards a Verified Certificate of " +"Achievement, you will need a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To register for a Verified Certificate of Achievement option, you will need " +"a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What is an ID Verified Certificate?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"An ID Verified Certificate requires proof of your identity through your " +"photo and ID and is checked throughout the course to verify that it is you " +"who earned the passing grade." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "or" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Audit This Course" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up to audit this course for free and track your own progress." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Audit" +msgstr "" + +#: lms/templates/admin_dashboard.html +msgid "{platform_name}-wide Summary" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/open_ended_problems/combined_notifications.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Instructions" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "Collapse Instructions" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Guided Discussion" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Hide Annotations" +msgstr "" + +#: lms/templates/contact.html lms/templates/static_templates/about.html +#: lms/templates/static_templates/about.html +msgid "Vision" +msgstr "" + +#: lms/templates/contact.html +msgid "Faq" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +msgid "Press" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/contact.html +msgid "Contact" +msgstr "" + +#: lms/templates/contact.html +msgid "Class Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"We are always seeking feedback to improve our courses. If you are an " +"enrolled student and have any questions, feedback, suggestions, or any other" +" issues specific to a particular class, please post on the discussion forums" +" of that class." +msgstr "" + +#: lms/templates/contact.html +msgid "General Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." +msgstr "" + +#: lms/templates/contact.html +msgid "Technical Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have suggestions/feedback about the overall {platform_name} platform," +" or are facing general technical issues with the platform (e.g., issues with" +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Media" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"Please visit our {link_start}media/press page{link_end} for more " +"information. For any media or press inquiries, please email {email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Universities" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you are a university wishing to collaborate with or if you have questions" +" about {platform_name}, please email {email}." +msgstr "" + +#: lms/templates/course.html +msgid "New" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Dashboard" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/courseware/course_about.html +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "An error occurred. Please try again later." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please verify your new email" +msgstr "" + +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "edit" +msgstr "" + +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Reset Password" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Current Courses" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't registered for any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Find courses now!" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't been enrolled in any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Course-loading errors" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Email Settings for {course_number}" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Receive course emails" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Save Settings" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Password Reset Email Sent" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"An email has been sent to {email}. Follow the link in the email to change " +"your password." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Change Email" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please enter your new email address:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please confirm your password:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"We will send a confirmation to both {email} and your new email as part of " +"the process." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change your name" +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"To uphold the credibility of your {platform} {cert_name_short}, all name " +"changes will be logged and recorded." +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"Enter your desired full name, as it will appear on your {platform} " +"{cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/verify_student/_modal_editname.html +msgid "Reason for name change:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change My Name" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +" {course_number}? " +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Unregister" +msgstr "" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +msgid "E-mail change failed" +msgstr "" + +#: lms/templates/email_change_failed.html +msgid "We were unable to send a confirmation email to {email}" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +#: lms/templates/invalid_email_key.html +msgid "Go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "E-mail change successful!" +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "You should see your new email in your {link_start}dashboard{link_end}." +msgstr "" + +#: lms/templates/email_exists.html +msgid "An account with the new e-mail address already exists." +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Student Enrollment Form" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Course: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Add new students" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Existing students:" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "New students added: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Students rejected: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Debug: " +msgstr "" + +#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +msgid "External Authentication failed" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Due:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Status:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have successfully gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have not yet gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Completed puzzles" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Level" +msgstr "" + +#: lms/templates/folditbasic.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Submitted" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Puzzle Leaderboard" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "User" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Score" +msgstr "" + +#: lms/templates/footer.html +msgid "About" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/jobs.html +msgid "Jobs" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/faq.html +#: lms/templates/static_templates/faq.html +msgid "FAQ" +msgstr "" + +#: lms/templates/footer.html +msgid "{platform_name} Logo" +msgstr "" + +#: lms/templates/footer.html +msgid "" +"{platform_name} is a non-profit created by founding partners {Harvard} and " +"{MIT} whose mission is to bring the best of higher education to students of " +"all ages anywhere in the world, wherever there is Internet access. " +"{platform_name}'s free online MOOCs are interactive and subjects include " +"computer science, public health, and artificial intelligence." +msgstr "" + +#: lms/templates/footer.html +msgid "© 2014 {platform_name}, some rights reserved." +msgstr "" + +#: lms/templates/footer.html +msgid "Terms of Service and Honor Code" +msgstr "" + +#: lms/templates/forgot_password_modal.html +#: lms/templates/forgot_password_modal.html +msgid "Password Reset" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "" +"Please enter your e-mail address below, and we will e-mail instructions for " +"setting a new password." +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Your E-mail Address" +msgstr "" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +msgid "This is the e-mail address you used to register with {platform}" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Reset My Password" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Email is incorrect." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +msgid "{platform_name} Help" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"For questions on course lectures, homework, tools, or materials for " +"this course, post in the {link_start}course discussion " +"forum{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have general questions about {platform_name}? You can find " +"lots of helpful information in the {platform_name} " +"{link_start}FAQ{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have a question about something specific? You can contact " +"the {platform_name} general support team directly:" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Please note: The {platform_name} support team is English speaking. While we " +"will do our best to address your inquiry in any language, our responses will" +" be in English." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/login.html +#: lms/templates/provider_login.html lms/templates/provider_login.html +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "E-mail" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Briefly describe your issue" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Tell us the details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +#: lms/templates/instructor/staff_grading.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Submit" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Thank You!" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Thank you for your inquiry or feedback. We typically respond to a request " +"within one business day (Monday to Friday, {open_time} UTC to {close_time} " +"UTC.) In the meantime, please review our {link_start}detailed FAQs{link_end}" +" where most questions have already been answered." +msgstr "" + +#: lms/templates/help_modal.html +msgid "problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a Problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of the problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Details of the problem you are encountering" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc." +msgstr "" + +#: lms/templates/help_modal.html +msgid "suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a Suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of your suggestion" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/module-error.html +msgid "Details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a Question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief summary of your question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "An error has occurred." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please {link_start}send us e-mail{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please try again later." +msgstr "" + +#: lms/templates/index.html +msgid "Free courses from {university_name}" +msgstr "" + +#: lms/templates/index.html +msgid "The Future of Online Education" +msgstr "" + +#: lms/templates/index.html +msgid "For anyone, anywhere, anytime" +msgstr "" + +#: lms/templates/index.html +msgid "Stay up to date with all {platform_name} has to offer!" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Invalid email change key" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "This e-mail key is not valid. Please check:" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "" +"Was this key already used? Check whether the e-mail change has already " +"happened." +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Did your e-mail client break the URL into two lines?" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "The keys are valid for a limited amount of time. Has the key expired?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Helpful Information" +msgstr "" + +#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +msgid "Login via OpenID" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "" +"You can now start learning with {platform_name} by logging in with your OpenID account." +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Not Enrolled?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Sign up for {platform_name} today!" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Looking for help in logging in or with your {platform_name} account?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "View our help section for answers to commonly asked questions." +msgstr "" + +#: lms/templates/login.html +msgid "Log into your {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Log into My {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Access My Courses" +msgstr "" + +#: lms/templates/login.html lms/templates/register.html +msgid "Processing your account information…" +msgstr "" + +#: lms/templates/login.html +msgid "Please log in" +msgstr "" + +#: lms/templates/login.html +msgid "to access your account and courses" +msgstr "" + +#: lms/templates/login.html +msgid "We're Sorry, {platform_name} accounts are unavailable currently" +msgstr "" + +#: lms/templates/login.html +msgid "The following errors occurred while logging you in:" +msgstr "" + +#: lms/templates/login.html +msgid "Your email or password is incorrect" +msgstr "" + +#: lms/templates/login.html +msgid "" +"Please provide the following information to log into your {platform_name} " +"account. Required fields are noted by bold text " +"and an asterisk (*)." +msgstr "" + +#: lms/templates/login.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +msgid "example: username@domain.com" +msgstr "" + +#: lms/templates/login.html +msgid "Account Preferences" +msgstr "" + +#: lms/templates/login.html +msgid "Remember me" +msgstr "" + +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS +#: lms/templates/lti.html +msgid "External resource" +msgstr "" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + +#: lms/templates/lti.html +msgid "View resource in a new window" +msgstr "" + +#: lms/templates/lti.html +msgid "" +"Please provide launch_url. Click \"Edit\", and fill in the required fields." +msgstr "" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable or Reenable student accounts" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Username:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Reenable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Students whose accounts have been disabled" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "(reload your page to refresh)" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "working..." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"This page features MathJax technology to render mathematical formulae. To " +"make math accessibile, we suggest using the MathPlayer plugin. Please visit " +"the {link_start}MathPlayer Download Page{link_end} to download the plugin " +"for your browser." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"Your browser does not support the MathPlayer plugin. To use MathPlayer, " +"please use Internet Explorer 6 through 9." +msgstr "" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" +msgstr "" + +#: lms/templates/module-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/module-error.html +msgid "Raw data:" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Accepted" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Error" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Rejected" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Pending name changes" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/modal/accessible_confirm.html +msgid "Confirm" +msgstr "" + +#: lms/templates/name_changes.html +msgid "[Reject]" +msgstr "" + +#: lms/templates/navigation.html +msgid "Global Navigation" +msgstr "" + +#: lms/templates/navigation.html +msgid "Find Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Dashboard for:" +msgstr "" + +#: lms/templates/navigation.html +msgid "More options dropdown" +msgstr "" + +#: lms/templates/navigation.html +msgid "Log Out" +msgstr "" + +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + +#: lms/templates/navigation.html +msgid "How it Works" +msgstr "" + +#: lms/templates/navigation.html lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/courseware/courses.html +msgid "Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Schools" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Register Now" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Log in" +msgstr "" + +#: lms/templates/navigation.html +msgid "" +"Warning: Your browser is not fully supported. We strongly " +"recommend using {chrome_link_start}Chrome{chrome_link_end} or " +"{ff_link_start}Firefox{ff_link_end}." +msgstr "" + +#: lms/templates/notes.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "You do not have any notes." +msgstr "" + +#: lms/templates/problem.html +msgid "Reset" +msgstr "" + +#: lms/templates/problem.html +msgid "Show Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "Reveal Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "You have used {num_used} of {num_total} submissions" +msgstr "" + +#: lms/templates/provider_login.html +#: lms/templates/university_profile/edge.html +msgid "Log In" +msgstr "" + +#: lms/templates/provider_login.html +msgid "" +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." +msgstr "" + +#: lms/templates/provider_login.html +msgid "Return To %s" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Preferences for {platform_name}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update my {platform_name} Account" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Processing your account information …" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Welcome {username}! Please set your preferences below" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"We're sorry, {platform_name} enrollment is not available in your region" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "The following errors occurred while processing your registration:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"Required fields are noted by bold text and an " +"asterisk (*)." +msgstr "" + +#: lms/templates/register-shib.html lms/templates/signup_modal.html +msgid "Enter a public username:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "example: JaneDoe" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "Will be shown in any discussions or forums you participate in" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Account Acknowledgements" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Terms of Service{link_end}" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Honor Code{link_end}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update My Account" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Registration Help" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Already registered?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Click here to log in." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Registering with {platform_name} gives you access to all of our current and " +"future free courses. Not ready to take a course just yet? Registering puts " +"you on our mailing list - we will update you as courses are added." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Next Steps" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"You will receive an activation email. You must click on the activation link" +" to complete the process. Don't see the email? Check your spam folder and " +"mark emails from class.stanford.edu as 'not spam', since you'll want to be " +"able to receive email from your courses." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"As part of joining {platform_name}, you will receive an activation email. " +"You must click on the activation link to complete the process. Don't see " +"the email? Check your spam folder and mark {platform_name} emails as 'not " +"spam'. At {platform_name}, we communicate mostly through email." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Need help in registering with {platform_name}?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "View our FAQs for answers to commonly asked questions." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Once registered, most questions can be answered in the course specific " +"discussion forums or through the FAQs." +msgstr "" + +#: lms/templates/register.html +msgid "Register for {platform_name}" +msgstr "" + +#: lms/templates/register.html +msgid "Create My {platform_name} Account" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome!" +msgstr "" + +#: lms/templates/register.html +msgid "Register below to create your {platform_name} account" +msgstr "" + +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + +#: lms/templates/register.html +msgid "Please complete the following fields to register for an account. " +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "cannot be changed later" +msgstr "" + +#: lms/templates/register.html lms/templates/verify_student/face_upload.html +msgid "example: Jane Doe" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Needed for any certificates you may earn" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome {username}" +msgstr "" + +#: lms/templates/register.html +msgid "Enter a Public Display Name:" +msgstr "" + +#: lms/templates/register.html +msgid "Public Display Name" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Extra Personal Information" +msgstr "" + +#: lms/templates/register.html +msgid "City" +msgstr "" + +#: lms/templates/register.html +msgid "example: New York" +msgstr "" + +#: lms/templates/register.html +msgid "Country" +msgstr "" + +#: lms/templates/register.html +msgid "Highest Level of Education Completed" +msgstr "" + +#: lms/templates/register.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Year of Birth" +msgstr "" + +#: lms/templates/register.html +msgid "Please share with us your reasons for registering with {platform_name}" +msgstr "" + +#: lms/templates/register.html lms/templates/university_profile/edge.html +msgid "Register" +msgstr "" + +#: lms/templates/register.html lms/templates/signup_modal.html +msgid "Create My Account" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "Re-subscribe Successful!" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "" +"You have re-enabled forum notification emails from {platform_name}. Click " +"{dashboard_link_start}here{link_end} to return to your dashboard. " +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Previous" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +msgid "Section Navigation" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Next" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Sign Up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname@domain.com" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname (shown on forums)" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. Your Name (for certificates)" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Welcome {name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Ed. Completed" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Year of birth" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Mailing address" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Goals in signing up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Already have an account?" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Login." +msgstr "" + +#. Translators: The 'Group' here refers to the group of users that has been +#. sorted into group_id +#: lms/templates/split_test_staff_view.html +msgid "Group {group_id}" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug Info" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission history" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "{platform_name} Content Quality Assessment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Optional tag (eg \"done\" or \"broken\"):" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Add comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug" +msgstr "" + +#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +msgid "Module Fields" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "XML attributes" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission History Viewer" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "User:" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "View History" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "{course_number} Textbook" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "Textbook Navigation" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Previous page" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Next page" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Sysadmin Dashboard" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Users" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Staffing and Enrollment" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Logs" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "User Management" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Email or username" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Create user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download list of all users (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Check and repair external authentication map" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "" +"Go to each individual course's Instructor dashboard to manage course " +"enrollment." +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Manage course staff and instructors" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download staff and instructor list (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Administer Courses" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Location" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware and branch is a specific version within that repository +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Branch (optional)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Load new course from github" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Course ID or dir" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete course from site" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Django PID" +msgstr "" + +#. Translators: A version number appears after this string +#: lms/templates/sysadmin_dashboard.html +msgid "Platform Version" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Date" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Course ID" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Action" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Recent git load activity for" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "git action" +msgstr "" + +#: lms/templates/textannotation.html +msgid "Source:" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "Tracking Log" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "datetime" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "ipaddr" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "source" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "type" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "Unsubscribe Successful!" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "" +"You will no longer receive forum notification emails from {platform_name}. " +"Click {dashboard_link_start}here{link_end} to return to your dashboard. If " +"you did not mean to do this, click {undo_link_start}here{link_end} to re-" +"subscribe." +msgstr "" + +#: lms/templates/using.html +msgid "Using the system" +msgstr "" + +#: lms/templates/using.html +msgid "" +"During video playback, use the subtitles and the scroll bar to navigate. " +"Clicking the subtitles is a fast way to skip forwards and backwards by small" +" amounts." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you are on a low-resolution display, the left navigation bar can be " +"hidden by clicking on the set of three left arrows next to it." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you need bigger or smaller fonts, use your browsers settings to scale " +"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" +" ctrl-minus at the same time." +msgstr "" + +#: lms/templates/video.html +msgid "Skip to a navigable version of this video's transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Loading video player" +msgstr "" + +#: lms/templates/video.html +msgid "Play video" +msgstr "" + +#: lms/templates/video.html +msgid "Video position" +msgstr "" + +#: lms/templates/video.html +msgid "Play" +msgstr "" + +#: lms/templates/video.html +msgid "Speeds" +msgstr "" + +#: lms/templates/video.html +msgid "Speed" +msgstr "" + +#: lms/templates/video.html +msgid "Volume" +msgstr "" + +#: lms/templates/video.html +msgid "Fill browser" +msgstr "" + +#: lms/templates/video.html +msgid "HD off" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Turn off captions" +msgstr "" + +#: lms/templates/video.html +msgid "Skip to end of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "" +"Activating an item in this group will spool the video to the corresponding " +"time point. To skip transcript, go to previous item." +msgstr "" + +#: lms/templates/video.html +msgid "Go back to start of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Download video" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Download transcript" +msgstr "" + +#: lms/templates/video.html +msgid "Download Handout" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Your words:" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Total number of words:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Open Response" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Assessments:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Hide Question" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "New Submission" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Next Step" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "" +"Staff Warning: Please note that if you submit a duplicate of text that has " +"already been submitted for grading, it will not show up in the staff grading" +" view. It will be given the same grade that the original received " +"automatically, and will be returned within 30 minutes if the original is " +"already graded, or when the original is graded if not." +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_legend.html +msgid "Legend" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Submitted Rubric" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Toggle Full Rubric" +msgstr "" + +#. Translators: an example of what this string will look +#. like is: "Scored rubric from grader 1", where +#. "Scored rubric" replaces {result_of_task} and +#. "1" replaces {number}. +#. This string appears when a user is viewing one of +#. their graded rubrics for an openended response problem. +#. the number distinguishes between the different +#. graded rubrics the user might have received +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "{result_of_task} from grader {number}" +msgstr "" + +#. Translators: "See full feedback" is the text of +#. a link that allows a user to see more detailed +#. feedback from a self, peer, or instructor +#. graded openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +msgid "See full feedback" +msgstr "" + +#. Translators: this text forms a link that, when +#. clicked, allows a user to respond to the feedback +#. the user received on his or her openended problem +#. Translators: when "Respond to Feedback" is clicked, a survey +#. appears on which a user can respond to the feedback the user +#. received on an openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Respond to Feedback" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "How accurate do you find this feedback?" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "No Opinion" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Additional comments:" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Submit Feedback" +msgstr "" + +#. Translators: "Response" labels an area that contains the user's +#. Response to an openended problem. It is a noun. +#. Translators: "Response" labels a text area into which a user enters +#. his or her response to a prompt from an openended problem. +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Response" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Unanswered" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Skip Post-Assessment" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_combined_rubric.html +msgid "{num} point: {explanatory_text}" +msgid_plural "{num} points: {explanatory_text}" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/combinedopenended/openended/open_ended_error.html +msgid "There was an error with your submission. Please contact course staff." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "Rubric" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "" +"Select the criteria you feel best represents this submission in each " +"category." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "{num} point: {text}" +msgid_plural "{num} points: {text}" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/combinedopenended/selfassessment/self_assessment_hint.html +msgid "Please enter a hint below:" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohort groups" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Show cohorts" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohorts in the course" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add users by username or email. One per line or comma-separated." +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort members" +msgstr "" + +#: lms/templates/courseware/accordion.html +msgid "{chapter}, current chapter" +msgstr "" + +#: lms/templates/courseware/accordion.html +#: lms/templates/courseware/progress.html +msgid "due {date}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"The currently logged-in user account does not have permission to enroll in " +"this course. You may need to {start_logout_tag}log out{end_tag} then try the" +" register button again. Please visit the {start_help_tag}help page{end_tag} " +"for a possible solution." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "About {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "You are registered for this course" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View Courseware" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "This course is in your cart." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"Add {course.display_number_with_default} to Cart ({currency_symbol}{cost})" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Register for {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Overview" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Share with friends and family!" +msgstr "" + +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes Start" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes End" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Estimated Effort" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Prerequisites" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Additional Resources" +msgstr "" + +#. Translators: 'needs attention' is an alternative string for the +#. notification image that indicates the tab "needs attention". +#: lms/templates/courseware/course_navigation.html +msgid "needs attention" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/course_navigation.html +msgid "Staff view" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +msgid "Student view" +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from leading universities." +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from {university_name}." +msgstr "" + +#: lms/templates/courseware/courseware-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "{course_number} Courseware" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Return to Exam" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Course Navigation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Open Calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Input Field" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "" +"Use the arrow keys to navigate the tips or use the tab key to return to the " +"calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Hints" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Integers" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Decimals" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Scientific notation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Appending SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Supported SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Operators" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "parallel resistors function" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Functions" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Constants" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Euler's number" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "ratio of a circle's circumference to it's diameter" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Boltzmann constant" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "speed of light" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "freezing point of water in degrees Kelvin" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "fundamental charge" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculate" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Output Field" +msgstr "" + +#: lms/templates/courseware/error-message.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {link_to_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/grade_summary.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade summary" +msgstr "" + +#: lms/templates/courseware/grade_summary.html +msgid "Not implemented yet" +msgstr "" + +#: lms/templates/courseware/gradebook.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "Search students" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "{course_number} Course Info" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + +#: lms/templates/courseware/info.html lms/templates/courseware/info.html +msgid "Course Updates & News" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Handout Navigation" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Course Handouts" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Instructor Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Try New Beta Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Psychometrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Forum Admin" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "DataDump" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Manage Groups" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Metrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade Downloads" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Note: some of these buttons are known to time out for larger courses. We " +"have temporarily disabled those features for courses with more than " +"{max_enrollment} students. We are urgently working on fixing this issue. " +"Thank you for your patience as we continue working to improve the platform!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Export grades to remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"The assignments defined for this course should match the ones stored in the " +"gradebook, for this to work properly!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Assignment name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Course-specific grade adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Specify a particular problem in the course here by its url:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is " +"i4x://university/course/problem/problemname, then just provide the " +"problemname. If the location is " +"i4x://university/course/notaproblem/someothername, then provide " +"notaproblem/someothername.)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Then select an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"These actions run in the background, and status for active tasks will appear" +" in a table below. To see status for all tasks submitted for this problem, " +"click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student-specific grade inspection and adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Specify the {platform_name} email address or username of a student here:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Click this, and a link to student's progress page will appear below:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may also delete the entire state of a student for the specified module:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" a table below. To see status for all tasks submitted for this problem and " +"student, click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Select a problem and an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"User requires forum administrator privileges to perform administration " +"tasks. See instructor." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Explanation of Roles:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Moderators: can edit or delete any post, remove misuse flags, close " +"and re-open threads, endorse responses, and see posts from all cohorts (if " +"the course is cohorted). Moderators' posts are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Admins: have moderator privileges, as well as the ability to edit the " +"list of forum moderators (e.g. to appoint a new moderator). Admins' posts " +"are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Community TAs: have forum moderator privileges, and their posts are labelled" +" 'Community TA'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment Data" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Pull enrollment from remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Section:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enroll or un-enroll one or many students: enter emails, separated by new " +"lines or commas;" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Notify students by email" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Auto-enroll students when they activate" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Problem urlname:" +msgstr "" + +#. Translators: days_early_for_beta should not be translated +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enter usernames or emails for students who should be beta-testers, one per " +"line, or separated by commas. They will get to see course materials early, " +"as configured via the days_early_for_beta option in the course " +"policy." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send to:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Myself" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Staff and instructors" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "All (students, staff and instructors)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Subject: " +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Max 128 characters)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Please try not to email students more than once per week. Important things " +"to consider before sending:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you read over the email to make sure it says everything you want to " +"say?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you sent the email to yourself first to make sure you're happy with how" +" it's displayed, and that embedded links and images work properly?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "CAUTION!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Once the 'Send Email' button is clicked, your email will be queued for " +"sending." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "A queued email CANNOT be cancelled." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "No Analytics are available at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Students enrolled (historical count, includes those who have since " +"unenrolled):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students active in the last week:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student activity day by day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Score distribution for problems" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Max" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Points Earned (Num Students)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There is no data available to display at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"Loading the latest graphs for you; depending on your class size, this may " +"take a few minutes." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Count of Students that Opened a Subsection" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution per Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There are no problems in this section." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students answering correctly" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Number of students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Student distribution per country, all courses, Sep-12 to Oct-17, 1 server " +"(shown here as an example):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Pending Instructor Tasks" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Type" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task inputs" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Id" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Requester" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task State" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Duration (sec)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Progress" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "unknown" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Course errors" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "About {course_id}" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "Coming Soon" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "About {course_number}" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Access Courseware" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "You Are Registered" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Register for" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Registration Is Closed" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "News - MITx 6.002x" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "Updates to Discussion Posts You Follow" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{course_number} Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress for Student '{username}' ({email})" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{earned:.3n} of {total:.3n} possible points" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Problem Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Practice Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "No problem scores in this section" +msgstr "" + +#: lms/templates/courseware/syllabus.html +msgid "{course.display_number_with_default} Course Info" +msgstr "" + +#: lms/templates/courseware/welcome-back.html +msgid "" +"You were most recently in {section_link}. If you're done with that, choose " +"another section on the left." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Final course details are being wrapped up at this time. Your final standing " +"will be available shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final grade:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required for a {cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your verified {cert_name_long} is being held pending confirmation that the " +"issuance of your {cert_name_short} is in compliance with strict U.S. " +"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " +"mistakenly identified you as being connected with one of those countries, " +"please let us know by contacting {email}. If you would like a refund on your" +" {cert_name_long}, please contact our billing address {billing_email}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your {cert_name_long} is being held pending confirmation that the issuance " +"of your {cert_name_short} is in compliance with strict U.S. embargoes on " +"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " +"identified you as being connected with one of those countries, please let us" +" know by contacting {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your {cert_name_short} is Generating" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open/download a PDF document" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"This link will open/download a PDF document of your verified " +"{cert_name_long}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your ID Verified {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Complete our course feedback survey" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Cover Image" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Enrolled as: " +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +msgid "ID Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Completed - {end_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Started - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course has not yet started" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Starts - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Document your accomplishment!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Challenge Yourself!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Take this course as an ID-verified student." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can still sign up for an ID verified {cert_name_long} for this course. " +"If you plan to complete the whole course, it is a great way to recognize " +"your achievement. {link_start}Learn more about the verified " +"{cert_name_long}{link_end}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Upgrade to Verified Track" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Archived Course" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Course" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Are you sure you want to unregister from" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Are you sure you want to unregister from the verified {cert_name_long} track" +" of" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Email Settings" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "You need to re-verify to continue" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in the following courses, you need to " +"re-verify your identity:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "{course_name}: Re-verify by {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Notification Actions" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course_name}, you need to re-verify" +" your identity by {date}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Your re-verification failed" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"Your re-verification for {course_name} failed and you are no longer eligible" +" for a Verified Certificate. If you think this is in error, please contact " +"us at {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Dismiss" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verification now open for:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verify now:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Pending:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Denied:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Approved:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "ID-Verification Status" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Reviewed and Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Your verification status is good for one year after submission." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification photos have been submitted and will be reviewed shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Re-verify Yourself" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"If you fail to pass a verification attempt before your course ends, you will" +" not receive a verified certificate." +msgstr "" + +#: lms/templates/debug/run_python_form.html +msgid "Results:" +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "" +"Sorry! We can't find anything matching your search. Please try another " +"search." +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "There are no posts here yet. Be the first one to post!" +msgstr "" + +#: lms/templates/discussion/_discussion_course_navigation.html +#: lms/templates/discussion/_discussion_module.html +msgid "New Post" +msgstr "" + +#: lms/templates/discussion/_discussion_module.html +msgid "Show Discussion" +msgstr "" + +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Filter Topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "filter topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Show All Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Show Flagged Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Posts I'm Following" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "follow this post" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously to classmates" +msgstr "" + +#. Translators: This labels the selector for which group of students can view +#. a +#. post +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Make visible to:" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +msgid "My Cohort" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "new post title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: wiki/forms.py wiki/forms.py wiki/forms.py +msgid "Title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Enter your question or comment…" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Add post" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Create new post about:" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter List" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter discussion areas" +msgstr "" + +#: lms/templates/discussion/_recent_active_posts.html +msgid "Following" +msgstr "" + +#: lms/templates/discussion/_search_bar.html +msgid "Search posts" +msgstr "" + +#: lms/templates/discussion/_similar_posts.html +msgid "Hide" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Home" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Topics" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion topics; current selection is: " +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Search all discussions" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Sort by:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "date" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "votes" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "comments" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Show:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View All" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View as {name}" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Add A Response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Post a response:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "anonymous" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "• This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "follow" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow this post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Pin Thread" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Pinned" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "(this post is about %(courseware_title_linked)s)" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Edit post title" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment..." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "endorse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Delete Comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "-posted %(time_ago)s by" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"%(comments_count)s %(span_sr_open)scomments (%(unread_comments_count)s " +"unread comments)%(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(comments_count)s %(span_sr_open)scomments %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(votes_up_count)s%(span_sr_open)s votes %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "DISCUSSION HOME:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "HOW TO USE EDX DISCUSSIONS" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Find discussions" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Focus in on specific topics" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Search for specific posts " +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Sort by date, vote, or comments" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Engage with posts" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Upvote posts and good responses" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Forum Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow posts for updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Receive updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Toggle Notifications Setting" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"Check this box to receive an email digest once a day notifying you about " +"new, unread activity from posts you are following." +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid ", " +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s discussion started" +msgid_plural "%s discussions started" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/discussion/index.html +#: lms/templates/discussion/user_profile.html +msgid "Discussion - {course_number}" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "We're sorry" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "" +"The forums are currently undergoing maintenance. We'll have them back up " +"shortly!" +msgstr "" + +#: lms/templates/discussion/user_profile.html +msgid "User Profile" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Collapse discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "This thread has been pinned by course staff." +msgstr "" + +#: lms/templates/discussion/mustache/_pagination.mustache +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "…" +msgstr "" + +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + +#: lms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for {platform_name}! To activate your account, " +"please copy and paste this address into your web browser's address bar:" +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the about section of the {platform_name} Courses web site." +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the {platform_name} web site." +msgstr "" + +#: lms/templates/emails/activation_email_subject.txt +msgid "Your account for {platform_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Dear {full_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "" +"You have been invited to be a beta tester for {course_name} at {site_name} " +"by a member of the course staff." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {course_about_url} to join the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_allowedmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "This email was automatically sent from {site_name} to {email_address}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_subject.txt +msgid "You have been invited to a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us at" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us immediately. Contact information is listed at:" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "" + +#: lms/templates/emails/email_change.txt +msgid "" +"We received a request to change the e-mail associated with your " +"{platform_name} account from {old_email} to {new_email}. If this is correct," +" please confirm your new e-mail address by visiting:" +msgstr "" + +#: lms/templates/emails/email_change_subject.txt +msgid "Request to change {platform_name} account e-mail" +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "Dear student," +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"You have been invited to join {course_name} at {site_name} by a member of " +"the course staff." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "To access the course visit {course_url} and login." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To access the course visit {course_about_url} and register for the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To finish your registration, please visit {registration_url} and fill out " +"the registration form making sure to use {email_address} in the E-mail " +"field." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, you will see " +"{course_name} listed on your dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, visit " +"{course_about_url} to join the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedsubject.txt +msgid "You have been invited to register for {course_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "" +"You have been enrolled in {course_name} at {site_name} by a member of the " +"course staff. The course should now appear on your {site_name} dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "This email was automatically sent from {site_name} to {full_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledsubject.txt +msgid "You have been enrolled in {course_name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Hi {name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"Your payment was successful. You will see the charge below on your next " +"credit or debit card statement." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"The charge will show up on your statement under the company name " +"{merchant_name}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"If you have billing questions, please read the FAQ ({faq_url}) or contact " +"{billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "If you have billing questions, please contact {billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "-The {platform_name} Team" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Your order number is: {order_number}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "The items in your order are:" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Quantity - Description - Price" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/shoppingcart/receipt.html +msgid "#:" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the tech support at" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the course staff at ta@edx.org." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +msgid "" +"You have been removed as a beta tester for {course_name} at {site_name} by a" +" member of the course staff. The course will remain on your dashboard, but " +"you will no longer be part of the beta testing group." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Your other courses have not been affected." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_subject.txt +msgid "You have been removed from a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "Dear Student," +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "" +"You have been un-enrolled from course {course_name} by a member of the " +"course staff. Please disregard the invitation previously sent." +msgstr "" + +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "" +"You have been un-enrolled in {course_name} at {site_name} by a member of the" +" course staff. The course will no longer appear on your {site_name} " +"dashboard." +msgstr "" + +#: lms/templates/emails/unenroll_email_subject.txt +msgid "You have been un-enrolled from {course_name}" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "{course_number} Staff Grading" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"This is the list of problems that currently need to be graded in order to " +"train AI grading and create calibration essays for peer grading. Each " +"problem needs to be treated separately, and we have indicated the number of " +"student submissions that need to be graded. You can grade more than the " +"minimum required number of submissions--this will improve the accuracy of AI" +" grading, though with diminishing returns. You can see the current accuracy " +"of AI grading in the problem view." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Problem List" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"Please note that when you see a submission here, it has been temporarily " +"removed from the grading pool. The submission will return to the grading " +"pool after 30 minutes without any grade being submitted. Hitting the back " +"button will result in a 30 minute wait to be able to grade this submission " +"again." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Prompt" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "(Hide)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Student Response" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Written Feedback" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Feedback for student (optional)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Flag as inappropriate content for later review" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Skip" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Score Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"The chart below displays the score distribution for each standard problem in" +" your class, specified by the problem's url name." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"Scores are shown without weighting applied, so if your problem contains 2 " +"questions, it will display as having a total of 2 points." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Loading problem list..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Gender Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Enrollment Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Total number of enrollees (instructors, staff members, and students)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Basic Course Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Display Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course started?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Yes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course ended?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Grade Cutoffs:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "The status for any active tasks appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Warnings" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 +msgid "" +"For large courses, generating this report may take several hours. Please be " +"patient and do not click the button multiple times. Clicking the button " +"multiple times will significantly slow the grade generation process." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The report is generated in the background, meaning it is OK to navigate away" +" from this page while your report is generating." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Grade Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports Available for Download" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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. +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Note: To keep student data secure, you cannot save or email these " +"links for direct access. Copies of links expire within 5 minutes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Individual due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"In this section, you have the ability to grant extensions on specific units " +"to individual students. Please note that the latest date is always taken; " +"you cannot use this tool to make an assignment due earlier for a particular " +"student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Choose the graded unit:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the extension due date and time (in UTC; please specify MM/DD/YYYY " +"HH:MM)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Change due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Viewing granted extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Here you can see what extensions have been granted on particular units or " +"for a particular student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Choose a graded unit and click the button to obtain a list of all students " +"who have extensions for the given unit." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List all students with due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Specify a specific student to see all of that student's extensions." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List date extensions for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Resetting extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Resetting a problem's due date rescinds a due date extension for a student " +"on a particular unit. This will revert the due date for the student back to " +"the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reset due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Back to Standard Dashboard" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "section_display_name" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"You will not get notification for emails that bounce, so please double-check" +" spelling." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Email Addresses/Usernames" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Auto Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not yet registered for " +"{platform_name} will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is left unchecked, users who have not yet registered" +" for {platform_name} will not be enrolled, but will be allowed to enroll " +"once they make an account." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Notify users by email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users will receive an email " +"notification." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Unenroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Beta Tester Addition" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Note: Users must have an activated {platform_name} account before they can " +"be enrolled as a beta tester." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add beta testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Remove beta testers" +msgstr "" + +#. Translators: an "Administration List" is a list, such as Course Staff, that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Administration List Management" +msgstr "" + +#. Translators: an "Administrator Group" is a group, such as Course Staff, +#. that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Select an Administrator Group:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Getting available lists..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Staff cannot modify staff or beta tester lists. To modify these lists, " +"contact your instructor and ask them to add you as an instructor for staff " +"and beta lists, or a discussion admin for discussion management." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Course Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course staff can help you manage limited aspects of your course. Staff can " +"enroll and unenroll students, as well as modify their grades and see all " +"course data. Course staff are not automatically given access to Studio and " +"will not be able to edit your course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Instructors" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Instructors are the core administration of your course. Instructors can add " +"and remove course staff, as well as administer discussion access." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Instructor" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Beta Testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Beta testers can see course content before the rest of the students. They " +"can make sure that the content works, but have no additional privileges." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Beta Tester" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Admins" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion admins can edit or delete any post, clear misuse flags, close and" +" re-open threads, endorse responses, and see posts from all cohorts. They " +"CAN add/delete other moderators and their posts are marked as 'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Discussion Admin" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Moderators" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion moderators can edit or delete any post, clear misuse flags, close" +" and re-open threads, endorse responses, and see posts from all cohorts. " +"They CANNOT add/delete other moderators and their posts are marked as " +"'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Moderator" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Community TAs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Community TA's are members of the community whom you deem particularly " +"helpful on the discussion boards. They can edit or delete any post, clear " +"misuse flags, close and re-open threads, endorse responses, and see posts " +"from all cohorts. Their posts are marked 'Community TA'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Community TA" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Reload Graphs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Count of Students Opened a Subsection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send Email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Message:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Please try not to email students more than once per week. Before sending " +"your email, consider:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Email actions run in the background. The status for any active tasks - " +"including email tasks - appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"To see the status for all bulk email tasks ever submitted for this course, " +"click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade inspection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Email or Username" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Click this link to view the student's progress page:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Progress Page" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade adjustment" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem urlname" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is {location1}, then just provide the " +"{urlname1}. If the location is {location2}, then provide {urlname2}.)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Next, select an action to perform for the given user and problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset Student Attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Student Submission" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may also delete the entire state of a student for the specified problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Delete Student State for Problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" the 'Pending Instructor Tasks' table. To see status for all tasks submitted" +" for this problem and student, click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Then select an action" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset ALL students' attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore ALL students' problem submissions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"The above actions run in the background, and status for active tasks will " +"appear in a table on the Course Info tab. To see status for all tasks " +"submitted for this problem, click on this button" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Problem" +msgstr "" + +#: lms/templates/licenses/serial_numbers.html +msgid "None Available" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Change Preferred Language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Please choose your preferred language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Save Language Settings" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "" +"Don't see your preferred language? {link_start}Volunteer to become a " +"translator!{link_end}" +msgstr "" + +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/modal/accessible_confirm.html +msgid "modal open" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "{course_number} Combined Notifications" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Open Ended Console" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Here are items that could potentially need your attention." +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "No items require attention at the moment." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "{course_number} Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "" +"Here are a list of open ended problems for this course that have been " +"flagged by students as potentially inappropriate." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "No flagged problems exist." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Unflag" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Ban" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "{course_number} Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Here is a list of open ended problems for this course." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "You have not attempted any open ended problems yet." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Problem Name" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Grader Type" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"\n" +"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" +"{ul_tag}\n" +"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" +"{li_tag}The instructor needs to score the essays that are used to help you better understand the grading\n" +"criteria.{end_li_tag}\n" +"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"Here are a list of problems that need to be peer graded for this course." +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Graded" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Available" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Required" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "No due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "" +"The due date has passed, and peer grading for this problem is closed at this" +" time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "The due date has passed, and peer grading is closed at this time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to Grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Please include some written feedback as well." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"This submission has explicit, offensive, or (I suspect) plagiarized content." +" " +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "How did I do?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Continue" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Ready to grade!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You have finished learning to grade, which means that you are now ready to " +"start grading." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start Grading!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "You have not yet finished learning to grade this problem." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You will now be shown a series of instructor-scored essays, and will be " +"asked to score them yourself." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"Once you can score the essays similarly to an instructor, you will be ready " +"to grade your peers." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Are you sure that you want to flag this submission?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You are about to flag a submission. You should only flag a submission that " +"contains explicit, offensive, or (suspected) plagiarized content. If the " +"submission is not addressed to the question or is incorrect, you should give" +" it a score of zero and accompanying feedback instead of flagging it." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Remove Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Keep Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Go Back" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "Thanks For Registering!" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "" +"Your account is not active yet. An activation link has been sent to {email}," +" along with instructions for activating your account." +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Activation Complete!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Account already active!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "You can now {link_start}log in{link_end}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Activation Invalid" +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "" +"Something went wrong. Check to make sure the URL you went to was correct -- " +"e-mail programs will sometimes split it into two lines. If you still have " +"issues, e-mail us to let us know what happened at {email}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Or you can go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "Password reset successful" +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "" +"We've e-mailed you instructions for setting your password to the e-mail " +"address you submitted. You should be receiving it shortly." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Data" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "These reports are delimited by start and end dates." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"These reports are delimited alphabetically by university name. i.e., " +"generating a report with 'Start Letter' A and 'End Letter' C will generate " +"reports for all universities starting with A, B, and C." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Letter: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Letter: " +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "Payment Error" +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "There was an error processing your order!" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your Shopping Cart" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your selected items:" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Unit Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Total Amount" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "You have selected no items for purchase." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Register for [Course Name] | Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid " () Electronic Receipt" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Order #" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Date:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Items ordered:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Qty" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Note: items with strikethough like " +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid " have been refunded." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Billed To:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are now registered for: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Registered as: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Your Progress" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Current Step: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Intro" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take ID Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Review" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Make Payment" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Confirmation" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Congratulations! You are now verified on " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"You are now registered as a verified student! Your registration details are " +"below." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are registered for:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "A list of courses you have just registered for as a verified student" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Options" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Starts: {start_date}" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to Course" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to your Dashboard" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Verified Status" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"We have received your identification details to verify your identity. If " +"there is a problem with any of the items, we will contact you to resubmit. " +"You can now register for any of the verified certificate courses this " +"semester without having to re-verify." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"The professor will ask you to periodically submit a new photo to verify your" +" work during the course (usually at exam times)." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Payment Details" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"Please print this page for your records; it serves as your receipt. You will" +" also receive an email with the same information." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Order No." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Total" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "this" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Billed To" +msgstr "" + +#: lms/templates/static_templates/404.html +msgid "" +"The page that you were looking for was not found. Go back to the " +"{link_start}homepage{link_end} or let us know about any pages that may have " +"been moved at {email}." +msgstr "" + +#: lms/templates/static_templates/about.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/faq.html +#: lms/templates/static_templates/help.html +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/tos.html +msgid "" +"This page left intentionally blank. It is not used by edx.org but is left " +"here for possible use by installations of Open edX." +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "This Course Unavailable In Your Country" +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "" +"Our system indicates that you are trying to access an edX course from an IP " +"address associated with a country currently subjected to U.S. economic and " +"trade sanctions. Unfortunately, at this time edX must comply with export " +"controls, and we cannot allow you to access this particular course. Feel " +"free to browse our catalogue to find other courses you may be interested in " +"taking." +msgstr "" + +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/honor.html +msgid "Honor Code" +msgstr "" + +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/media-kit.html +msgid "Media Kit" +msgstr "" + +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/press.html +msgid "In the Press" +msgstr "" + +#: lms/templates/static_templates/server-down.html +msgid "Currently the {platform_name} servers are down" +msgstr "" + +#: lms/templates/static_templates/server-down.html +#: lms/templates/static_templates/server-overloaded.html +msgid "" +"Our staff is currently working to get the site back up as soon as possible. " +"Please email us at {tech_support_email} to report any problems or downtime." +msgstr "" + +#: lms/templates/static_templates/server-error.html +msgid "There has been a 500 error on the {platform_name} servers" +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}." +msgstr "" + +#: lms/templates/static_templates/server-overloaded.html +msgid "Currently the {platform_name} servers are overloaded" +msgstr "" + +#: lms/templates/university_profile/edge.html +#: lms/templates/university_profile/edge.html +msgid "edX edge" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Log in to your courses" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Register for classes" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Take free online courses from today's leading universities." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Edit Your Name" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "The following error occurred while editing your name:" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "" +"To uphold the credibility of {platform} certificates, all name changes will " +"be logged and recorded." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Change my name" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Why Do I Need to Re-Verify?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity. We will send the new photo to be matched up with the photo of the " +"original ID you submitted when you signed up for the course." +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Having Technical Trouble?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Have questions?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please read {a_start}our FAQs to view common questions about our " +"certificates{a_end}." +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are upgrading your registration for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are re-verifying for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are registering for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Upgrading to:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Re-verifying for:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Registering as: " +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Change your mind?" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "You can always continue to audit the course without verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You can always {a_start} audit the course for free {a_end} without " +"verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "Technical Requirements" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)." +msgstr "" + +#: lms/templates/verify_student/face_upload.html +msgid "Edit Your Full Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Re-Verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Webcam Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Flash Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have Flash installed. {a_start} Get Flash {a_end} to " +"continue your registration." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Error submitting your images" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Oops! Something went wrong. Please confirm your details and try again." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with your " +"original verification." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Don't see your picture? Make sure to allow your browser to use your camera " +"when it asks for permission." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Take photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Looks good" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Tips on taking a successful photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your face is well-lit" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be sure your entire face is inside the frame" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Can we match the photo you took with the one on your ID?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once in position, use the camera button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your picture" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Use the checkmark button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "once you are happy with the photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Common Questions" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need my photo?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"As part of the verification process, we need your photo to confirm that you " +"are you." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "What do you do with this picture?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "We only use it to verify your identity. It is not displayed anywhere." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches the ID " +"you originally submitted. We will also use this as the name on your " +"certificate." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Edit your name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Once you verify your photo looks good and your name is correct, you can " +"finish your re-verification and return to your course. Note: You " +"will not have another chance to re-verify." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Yes! You can confirm my identity with this information." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Submit photos & re-verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Verification Submission Confirmation" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Your Credentials Have Been Updated" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"We have received your re-verification details and submitted them for review." +" Your dashboard will show the notification status once the review is " +"complete." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"Please note: The professor may ask you to re-verify again at other key " +"points in the course." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "Complete your other re-verifications" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Return to where you left off" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Reverification Status" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You are in the ID Verified track" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following courses:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Re-verify by {date}" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following course:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You have no re-verifications at present." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "The status of your submitted re-verifications:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Failed" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Don't want to re-verify right now?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Why do I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity by submitting a new photo of your face. We will send the new photo " +"to be matched up with the photo of the original ID you submitted when you " +"signed up for the course. If you are taking multiple courses, you may need " +"to re-verify multiple times, once for every important point in each course " +"you are taking as a verified student." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What will I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because you are just confirming that you are still you, the only thing you " +"will need to do to re-verify is to submit a new photo of your face with " +"your webcam. The process is quick and you will be brought back to where " +"you left off so you can keep on learning." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"If you changed your name during the semester and it no longer matches the " +"original ID you submitted, you will need to re-edit your name to match as " +"well." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What if I have trouble with my re-verification?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because of the short time that re-verification is open, you will not" +" be able to correct a failed verification. If you think there was " +"an error in the review, please contact us at {email}" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Verification" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Please Resubmit Your Verification Information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"There was an error with your previous verification. In order proceed in the " +"verified certificate of achievement track of your current courses, please " +"complete the following steps." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with the " +"picture on your ID." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your photo looks good, you can move on to step 2." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Go to Step 2: Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show Us Your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your ID so we can match it with your " +"photo and the name on your account." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your ID is well-lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Acceptable IDs include drivers licenses, passports, or other goverment-" +"issued IDs that include your name and photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check that there isn't any glare" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Ensure that you can see your photo and read your name" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Try to keep your fingers at the edge to avoid covering important information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need a photo of my ID?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We need to match your ID with your photo and name to confirm that you are " +"you." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We encrypt it and send it to our secure authorization service for review. We" +" use the highest levels of security and do not save the photo or information" +" anywhere once the match has been completed." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your ID photo looks good, you can move on to step 3." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 3: Review Your Info" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Verify Your Submission" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure we can verify your identity with the photos and information below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Review the Photos You've Re-Taken" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Please review the photos and verify that they meet the requirements listed " +"below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo above needs to meet the following requirements:" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be well lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show your whole face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo on your ID must match the photo of your face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be readable (not too far away, no glare)" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The name on your ID must match the name on your account below" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Photos don't meet the requirements?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake Your Photos" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches your ID. " +"We will also use this as the name on your certificate." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"Once you verify your details match the requirements, you can move onto to " +"confirm your re-verification submisssion." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Yes! My details all match." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Upgrade Your Registration for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/verified.html +msgid "Register for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue registering, or select to {a_start} audit " +"the course for free {a_end} without verifying." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Error processing your order" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Oops! Something went wrong. Please confirm your details again and click the " +"button to move on to payment. If you are still having trouble, please try " +"again later." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "What if my camera isn't working?" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 2: Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Review the Photos You've Taken" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Contribution Level" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Please confirm your contribution for this course (min. $" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Once you verify your details match the requirements, you can move on to step" +" 4, payment on our secure server." +msgstr "" + +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course}, you need to re-verify your" +" identity by {date}. Go to URL." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +msgid "" +"We've captured your re-submitted information and will review it to verify " +"your identity shortly. You should receive an update to your veriication " +"status within 1-2 days. In the meantime, you still have access to all of " +"your course content." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Return to Your Dashboard" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Re-Verification Failed" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "" +"Your re-verification was submitted after the re-verification deadline, and " +"you can no longer be re-verified." +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Please contact support if you believe this message to be in error." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Upgrade Your Registration for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Register for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "You need to activate your edX account before proceeding" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please check your email for further instructions on activating your new " +"account." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Upgrade" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to upgrade to being an ID verified " +"student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Register" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to register as an ID verified student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Activate Your Account" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Check your email" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"you need an active edX account before registering - check your email for " +"instructions" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Identification" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A photo identification document" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"a drivers license, passport, or other goverment or school-issued ID with " +"your name and picture on it" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Webcam" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A webcam and a modern browser" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " +"{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please make sure your browser is updated to the most recent version possible" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Credit or Debit Card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A major credit or debit card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Visa, Master Card, American Express, Discover, Diners Club, JCB with " +"Discover logo" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always continue to audit this course instead." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always {a_start}audit this course instead{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Go to Step 1: Take my Photo" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "ID Verification" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You've Been Verified Previously" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "" +"We've already verified your identity (through the photos of you and your ID " +"you provided earlier). You can proceed to make your secure payment and " +"complete registration." +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You have decided to pay $ " +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}(active){span_end}" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "Changes" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}active{span_end}" +msgstr "" + +#: lms/templates/wiki/includes/breadcrumbs.html +msgid "Add article" +msgstr "" + +#: cms/templates/404.html +msgid "The page that you were looking for was not found." +msgstr "" + +#: cms/templates/404.html +msgid "" +"Go back to the {homepage} or let us know about any pages that may have been " +"moved at {email}." +msgstr "" + +#: cms/templates/500.html +msgid "Studio Server Error" +msgstr "" + +#: cms/templates/500.html +msgid "The Studio servers encountered an error" +msgstr "" + +#: cms/templates/500.html +msgid "" +"An error occurred in Studio and the page could not be loaded. Please try " +"again in a few moments." +msgstr "" + +#: cms/templates/500.html +msgid "" +"We've logged the error and our staff is currently working to resolve this " +"error as soon as possible." +msgstr "" + +#: cms/templates/500.html +msgid "If the problem persists, please email us at {email_link}." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +#: cms/templates/activation_invalid.html +msgid "Studio Account Activation" +msgstr "" + +#: cms/templates/activation_active.html +msgid "Your account is already active" +msgstr "" + +#: cms/templates/activation_active.html +msgid "" +"This account, set up using {0}, has already been activated. Please sign in " +"to start working within edX Studio." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +msgid "Sign into Studio" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "Your account activation is complete!" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "" +"Thank you for activating your account. You may now sign in and start using " +"edX Studio to author courses." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Your account activation is invalid" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"We're sorry. Something went wrong with your activation. Check to make sure " +"the URL you went to was correct — e-mail programs will sometimes split" +" it into two lines." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"If you still have issues, contact edX Support. In the meatime, you can also " +"return to" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Contact edX Support" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/widgets/header.html +msgid "Files & Uploads" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Uploading…" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +msgid "Choose File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/asset_index.html +msgid "Upload New File" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Load Another File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/course_info.html +#: cms/templates/edit-tabs.html cms/templates/overview.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Content" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/course_info.html cms/templates/edit-tabs.html +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/textbooks.html +msgid "Page Actions" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + +#: cms/templates/asset_index.html +msgid "What files are listed here?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"In addition to the files you upload on this page, any files that you add to " +"the course appear in this list. These files include your course image, " +"textbook chapters, and files that appear on your Course Handouts sidebar." +msgstr "" + +#: cms/templates/asset_index.html +msgid "File URLs" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the Embed URL value to link to the file or image from a component, a" +" course update, or a course handout." +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the External URL value to reference the file or image from outside " +"of your course. Do not use the External URL as a link value within your " +"course." +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/overview.html cms/templates/settings_graders.html +msgid "What can I do on this page?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You can upload new files or view, download, or delete existing files. You " +"can lock a file so that people who are not enrolled in your course cannot " +"access that file." +msgstr "" + +#: cms/templates/asset_index.html +msgid "Your file has been deleted." +msgstr "" + +#: cms/templates/asset_index.html +msgid "close alert" +msgstr "" + +#: cms/templates/checklists.html cms/templates/export.html +#: cms/templates/export_git.html cms/templates/import.html +#: cms/templates/widgets/header.html +msgid "Tools" +msgstr "" + +#: cms/templates/checklists.html +msgid "Course Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "Current Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "What are course checklists?" +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Course checklists are tools to help you understand and keep track of all the" +" steps necessary to get your course ready for students." +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Any changes you make to these checklists are saved automatically and are " +"immediately visible to other course team members." +msgstr "" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +msgid "Duplicate" +msgstr "" + +#: cms/templates/component.html +msgid "Duplicate this component" +msgstr "" + +#: cms/templates/component.html +msgid "Delete this component" +msgstr "" + +#: cms/templates/component.html cms/templates/container_xblock_component.html +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/overview.html cms/templates/overview.html +msgid "Drag to reorder" +msgstr "" + +#: cms/templates/container.html +msgid "Container" +msgstr "" + +#: cms/templates/container.html +msgid "This page has no content yet." +msgstr "" + +#: cms/templates/container.html cms/templates/container.html +msgid "Publishing Status" +msgstr "" + +#: cms/templates/container.html +msgid "Published" +msgstr "" + +#: cms/templates/container.html +msgid "" +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." +msgstr "" + +#: cms/templates/course_info.html cms/templates/course_info.html +msgid "Course Updates" +msgstr "" + +#: cms/templates/course_info.html +msgid "New Update" +msgstr "" + +#: cms/templates/course_info.html +msgid "" +"Use course updates to notify students of important dates or exams, highlight" +" particular discussions in the forums, announce schedule changes, and " +"respond to student questions. You add or edit updates in HTML." +msgstr "" + +#. Translators: Pages refer to the tabs that appear in the top navigation of +#. each course. +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/export.html cms/templates/widgets/header.html +msgid "Pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "New Page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit_subsection.html +#: cms/templates/index.html cms/templates/overview.html +#: cms/templates/unit.html +msgid "View Live" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Show this page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "Show/hide page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "This page cannot be reordered" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "You can add additional custom pages to your course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Add a New Page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "What are pages?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages are listed horizontally at the top of your course. Default pages " +"(Courseware, Course info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages that you create." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Custom pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"You can create and edit custom pages to provide students with additional " +"course content. For example, you can create pages for the grading policy, " +"course slides, and a course calendar. " +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "How do pages look to students in my course?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Students see the default and custom pages at the top of your course and use " +"these links to navigate." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "See an example" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Pages in Your Course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Preview of Pages in your course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages appear in your course's top navigation bar. The default pages " +"(Courseware, Course Info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages." +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/howitworks.html +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "close modal" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "CMS Subsection" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/unit.html +msgid "Display Name:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Units:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Subsection Settings" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Day" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Time" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/edit_subsection.html +#: cms/templates/overview.html +msgid "Coordinated Universal Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "UTC" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "" +"The date above differs from the release date of {name}, which is unset." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "The date above differs from the release date of {name} - {start_time}" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Sync to {name}." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Graded as:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Set a due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Day" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Remove due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Preview Drafts" +msgstr "" + +#: cms/templates/error.html +msgid "Internal Server Error" +msgstr "" + +#: cms/templates/error.html +msgid "The Page You Requested Page Cannot be Found" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. We couldn't find the Studio page you're looking for. You may " +"want to return to the Studio Dashboard and try again. If you are still " +"having problems accessing things, please feel free to {link_start}contact " +"Studio support{link_end} for further help." +msgstr "" + +#: cms/templates/error.html cms/templates/error.html +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Use our feedback tool, Tender, to share your feedback" +msgstr "" + +#: cms/templates/error.html +msgid "The Server Encountered an Error" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. There was a problem with the server while trying to process " +"your last request. You may want to return to the Studio Dashboard or try " +"this request again. If you are still having problems accessing things, " +"please feel free to {link_start}contact Studio support{link_end} for further" +" help." +msgstr "" + +#: cms/templates/error.html +msgid "Back to dashboard" +msgstr "" + +#: cms/templates/export.html cms/templates/export.html +msgid "Course Export" +msgstr "" + +#: cms/templates/export.html +msgid "About Exporting Courses" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export courses and edit them outside of Studio. The exported file is" +" a .tar.gz file (that is, a .tar file compressed with GNU Zip) that contains" +" the course structure and content. You can also re-import courses that " +"you've exported." +msgstr "" + +#: cms/templates/export.html +msgid "Export My Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Export Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}exported with{em_end} your course:" +msgstr "" + +#: cms/templates/export.html +msgid "Course Content (all Sections, Sub-sections, and Units)" +msgstr "" + +#: cms/templates/export.html +msgid "Course Structure" +msgstr "" + +#: cms/templates/export.html +msgid "Individual Problems" +msgstr "" + +#: cms/templates/export.html +msgid "Course Assets" +msgstr "" + +#: cms/templates/export.html +msgid "Course Settings" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}not exported{em_end} with your course:" +msgstr "" + +#: cms/templates/export.html +msgid "User Data" +msgstr "" + +#: cms/templates/export.html +msgid "Course Team Data" +msgstr "" + +#: cms/templates/export.html +msgid "Forum/discussion Data" +msgstr "" + +#: cms/templates/export.html +msgid "Certificates" +msgstr "" + +#: cms/templates/export.html +msgid "Why export a course?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your course directly, outside of Studio. You" +" may want to create a backup copy of your course. Or, you may want to create" +" a copy of your course that you can later import into another course " +"instance and customize." +msgstr "" + +#: cms/templates/export.html +msgid "What content is exported?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are exported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, is not exported." +msgstr "" + +#: cms/templates/export.html +msgid "Opening the downloaded file" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the course.xml file, as well as subfolders that contain course" +" content." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git" +msgstr "" + +#: cms/templates/export_git.html cms/templates/export_git.html +#: cms/templates/widgets/header.html +msgid "Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "About Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "Use this to export your course to its git repository." +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"This will then trigger an automatic update of the main LMS site and update " +"the contents of your course visible there to students if automatic git " +"imports are configured." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git:" +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"giturl must be defined in your course settings before you can export to git." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Failed" +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Succeeded" +msgstr "" + +#: cms/templates/export_git.html +msgid "Your course:" +msgstr "" + +#: cms/templates/export_git.html +msgid "Course git url:" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome to" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio helps manage your courses online, so you can focus on teaching them" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Studio's Many Features" +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "Studio Helps You Keep Your Courses Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Keeping Your Course Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"The backbone of your course is how it is organized. Studio offers an " +"Outline editor, providing a simple hierarchy and easy drag " +"and drop to help you and your students stay organized." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple Organization For Content" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio uses a simple hierarchy of sections and " +"subsections to organize your content." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Change Your Mind Anytime" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Draft your outline and build content anywhere. Simple drag and drop tools " +"let your reorganize quickly." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Go A Week Or A Semester At A Time" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Build and release sections to your students incrementally. " +"You don't have to have it all done at once." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html +msgid "Learning is More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio lets you weave your content together in a way that reinforces " +"learning — short video lectures interleaved with exercises and more. " +"Insert videos and author a wide variety of exercise types with just a few " +"clicks." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Create Learning Pathways" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Help your students understand a small interactive piece at a time with " +"multimedia, HTML, and exercises." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work Visually, Organize Quickly" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Work visually and see exactly what your students will see. Reorganize all " +"your content with drag and drop." +msgstr "" + +#: cms/templates/howitworks.html +msgid "A Broad Library of Problem Types" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"It's more than just multiple choice. Studio has nearly a dozen types of " +"problems to challenge your learners." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "" +"Studio Gives You Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio works like web applications you already know, yet understands how you" +" build curriculum. Instant publishing to the web when you want it, " +"incremental release when it makes sense. And with co-authors, you can have a" +" whole team building a course, together." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Instant Changes" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Caught a bug? No problem. When you want, your changes to live when you hit " +"Save." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Release-On Date Publishing" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"When you've finished a section, pick when you want it to go" +" live and Studio takes care of the rest. Build your course incrementally." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work in Teams" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Co-authors have full access to all the same authoring tools. Make your " +"course better through a team effort." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up for Studio Today!" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up & Start Making an edX Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Already have a Studio Account? Sign In" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Outlining Your Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simple two-level outline to organize your couse. Drag and drop, and see your" +" course at a glance." +msgstr "" + +#: cms/templates/howitworks.html +msgid "More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Quickly create videos, text snippets, inline discussions, and a variety of " +"problem types." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Publishing on Date" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simply set the date of a section or subsection, and Studio will publish it " +"to your students for you." +msgstr "" + +#: cms/templates/html_error.html +msgid "We're having trouble rendering your component" +msgstr "" + +#: cms/templates/html_error.html +msgid "" +"Students will not be able to access this component. Re-edit your component " +"to fix the error." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Course Import" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a course before continuing. Content of the " +"imported course replaces all the content of this course. {em_start}You " +"cannot undo a course import{em_end}. We recommend that you first export the " +"current course, so you have a backup copy of it." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "" +"The course that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " +"It may also contain other files." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your course until the import operation has completed." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Course Content" +msgstr "" + +#: cms/templates/import.html +msgid "Choose a File to Import" +msgstr "" + +#: cms/templates/import.html +msgid "File Chosen:" +msgstr "" + +#: cms/templates/import.html +msgid "Replace my course with the one above" +msgstr "" + +#: cms/templates/import.html +msgid "Course Import Status" +msgstr "" + +#: cms/templates/import.html +msgid "Uploading" +msgstr "" + +#: cms/templates/import.html +msgid "Transferring your file to our servers" +msgstr "" + +#: cms/templates/import.html +msgid "Unpacking" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Expanding and preparing folder/file structure (You can now leave this page " +"safely, but avoid making drastic changes to content until this import is " +"complete)" +msgstr "" + +#: cms/templates/import.html +msgid "Verifying" +msgstr "" + +#: cms/templates/import.html +msgid "Reviewing semantics, syntax, and required data" +msgstr "" + +#: cms/templates/import.html +msgid "Updating Course" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this course. This may take a while " +"with larger courses." +msgstr "" + +#: cms/templates/import.html +msgid "Success" +msgstr "" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this course" +msgstr "" + +#: cms/templates/import.html +msgid "View Updated Outline" +msgstr "" + +#: cms/templates/import.html +msgid "Why import a course?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"You may want to run a new version of an existing course, or replace an " +"existing course altogether. Or, you may have developed a course outside " +"Studio." +msgstr "" + +#: cms/templates/import.html +msgid "What content is imported?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are imported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, remains the same as it was in the existing course." +msgstr "" + +#: cms/templates/import.html +msgid "Warning: Importing while a course is running" +msgstr "" + +#: cms/templates/import.html +msgid "" +"If you perform an import while your course is running, and you change the " +"URL names (or url_name nodes) of any Problem components, the student data " +"associated with those Problem components may be lost. This data includes " +"students' problem scores." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error during the upload process." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while unpacking the file." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while verifying the file you submitted." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while importing the new course to our database." +msgstr "" + +#: cms/templates/import.html +msgid "Your import has failed." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Choose new file" +msgstr "" + +#: cms/templates/import.html +msgid "Your import is in progress; navigating away will abort it." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +#: cms/templates/widgets/header.html +msgid "My Courses" +msgstr "" + +#: cms/templates/index.html +msgid "New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Email staff to create course" +msgstr "" + +#: cms/templates/index.html +msgid "Welcome, {0}!" +msgstr "" + +#: cms/templates/index.html +msgid "Here are all of the courses you currently have access to in Studio:" +msgstr "" + +#: cms/templates/index.html +msgid "You currently aren't associated with any Studio Courses." +msgstr "" + +#: cms/templates/index.html +msgid "Please correct the highlighted fields below." +msgstr "" + +#: cms/templates/index.html +msgid "Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Required Information to Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. Introduction to Computer Science" +msgstr "" + +#: cms/templates/index.html +msgid "The public display name for your course." +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +msgid "Organization" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. UniversityX or OrganizationX" +msgstr "" + +#: cms/templates/index.html +msgid "The name of the organization sponsoring the course." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed." +msgstr "" + +#: cms/templates/index.html +msgid "" +"This cannot be changed, but you can set a different display name in Advanced" +" Settings later." +msgstr "" + +#: cms/templates/index.html +msgid "e.g. CS101" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The unique number that identifies your course within your organization." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed and it cannot be changed." +msgstr "" + +#: cms/templates/index.html +msgid "Course Run" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. 2014_T1" +msgstr "" + +#: cms/templates/index.html +msgid "The term in which your course will run." +msgstr "" + +#: cms/templates/index.html +msgid "Create" +msgstr "" + +#: cms/templates/index.html +msgid "Course Run:" +msgstr "" + +#: cms/templates/index.html +msgid "Are you staff on an existing Studio course?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"You will need to be added to the course in Studio by the course creator. " +"Please get in touch with the course creator or administrator for the " +"specific course you are helping to author." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Create Your First Course" +msgstr "" + +#: cms/templates/index.html +msgid "Your new course is just a click away!" +msgstr "" + +#: cms/templates/index.html +msgid "Becoming a Course Creator in Studio" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team will " +"evaluate your request and provide you feedback within 24 hours during the " +"work week." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status:" +msgstr "" + +#: cms/templates/index.html +msgid "Request the Ability to Create Courses" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is has " +"completed evaluating your request." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator request is:" +msgstr "" + +#: cms/templates/index.html +msgid "Denied" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request did not meet the criteria/guidelines specified by edX Staff." +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is " +"currently evaluating your request." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request is currently being reviewed by edX staff and should be updated " +"shortly." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Need help?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"If you are new to Studio and having trouble getting started, there are a few" +" things that may be of help:" +msgstr "" + +#: cms/templates/index.html +msgid "Get started by reading Studio's Documentation" +msgstr "" + +#: cms/templates/index.html +msgid "Request help with Studio" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Can I create courses in Studio?" +msgstr "" + +#: cms/templates/index.html +msgid "In order to create courses in Studio, you must" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX staff to help you create a course" +msgstr "" + +#: cms/templates/index.html +msgid "" +"In order to create courses in Studio, you must have course creator " +"privileges to create your own course." +msgstr "" + +#: cms/templates/index.html +msgid "Your request to author courses in studio has been denied. Please" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX Staff with further questions" +msgstr "" + +#: cms/templates/index.html +msgid "Thanks for signing up, %(name)s!" +msgstr "" + +#: cms/templates/index.html +msgid "We need to verify your email address" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Almost there! In order to complete your sign up we need you to verify your " +"email address (%(email)s). An activation message and next steps should be " +"waiting for you there." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Please check your Junk or Spam folders in case our email isn't in your " +"INBOX. Still can't find the verification email? Request help via the link " +"below." +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/header.html +msgid "Sign In" +msgstr "" + +#: cms/templates/login.html cms/templates/login.html +msgid "Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html +msgid "Don't have a Studio Account? Sign up!" +msgstr "" + +#: cms/templates/login.html +msgid "Required Information to Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +msgid "Email Address" +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/sock.html +msgid "Studio Support" +msgstr "" + +#: cms/templates/login.html +msgid "" +"Having trouble with your account? Use {link_start}our support " +"center{link_end} to look over self help steps, find solutions others have " +"found to the same problem, or let us know of your issue." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Settings" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Course Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a User to Your Course's Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member Information" +msgstr "" + +#: cms/templates/manage_users.html +msgid "User's Email Address" +msgstr "" + +#: cms/templates/manage_users.html +msgid "e.g. jane.doe@gmail.com" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Please provide the email address of the course staff member you'd like to " +"add" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add User" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "Current Role:" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "You!" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Staff" +msgstr "" + +#: cms/templates/manage_users.html +msgid "send an email message to {email}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Promote another member to Admin to remove your admin rights" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Remove Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Delete the user, {username}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Team Members to This Course" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Adding team members makes course authoring collaborative. Users must be " +"signed up for Studio and have an active account. " +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Roles" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Course team members, or staff, are course co-authors. They have full writing" +" and editing privileges on all course content." +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Admins are course team members who can add and remove other course team " +"members." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Transferring Ownership" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Every course must have an Admin. If you're the Admin and you want transfer " +"ownership of the course, click Add admin access to make another user the " +"Admin, then ask that user to remove you from the Course Team list." +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Course Outline" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html +msgid "Expand/collapse this section" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Section Name" +msgstr "" + +#: cms/templates/overview.html +msgid "Add a new section name" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Delete this section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to re-order" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Subsection" +msgstr "" + +#: cms/templates/overview.html cms/templates/widgets/units.html +msgid "New Unit" +msgstr "" + +#: cms/templates/overview.html +msgid "You haven't added any sections to your course outline yet." +msgstr "" + +#: cms/templates/overview.html +msgid "Add your first section" +msgstr "" + +#: cms/templates/overview.html +msgid "Collapse All Sections" +msgstr "" + +#: cms/templates/overview.html +msgid "New Section" +msgstr "" + +#: cms/templates/overview.html +msgid "This section is not scheduled for release" +msgstr "" + +#: cms/templates/overview.html +msgid "Schedule" +msgstr "" + +#: cms/templates/overview.html +msgid "Release date:" +msgstr "" + +#: cms/templates/overview.html +msgid "Edit section release date" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to reorder section" +msgstr "" + +#: cms/templates/overview.html +msgid "Expand/collapse this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"You can create new sections and subsections, set the release date for " +"sections, and create new units in existing subsections. You can set the " +"assignment type for subsections that are to be graded, and you can open a " +"subsection for further editing." +msgstr "" + +#: cms/templates/overview.html +msgid "" +"In addition, you can drag and drop sections, subsections, and units to " +"reorganize your course." +msgstr "" + +#: cms/templates/overview.html +msgid "Section Release Date" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"On the date set below, this section - {name} - will be released to students." +" Any units marked private will only be visible to admins." +msgstr "" + +#: cms/templates/overview.html +msgid "Form Actions" +msgstr "" + +#: cms/templates/register.html +msgid "Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "Already have a Studio Account? Sign in" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Ready to start creating online courses? Sign up below and start creating " +"your first edX course today." +msgstr "" + +#: cms/templates/register.html +msgid "Required Information to Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "" +"This will be used in public discussions with your courses and in our edX101 " +"support forums" +msgstr "" + +#: cms/templates/register.html +msgid "Your Location" +msgstr "" + +#: cms/templates/register.html +msgid "I agree to the {a_start} Terms of Service {a_end}" +msgstr "" + +#: cms/templates/register.html +msgid "Create My Account & Start Authoring Courses" +msgstr "" + +#: cms/templates/register.html +msgid "Common Studio Questions" +msgstr "" + +#: cms/templates/register.html +msgid "Who is Studio for?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is for anyone that wants to create online courses that leverage the " +"global edX platform. Our users are often faculty members, teaching " +"assistants and course staff, and members of instructional technology groups." +msgstr "" + +#: cms/templates/register.html +msgid "How technically savvy do I need to be to create courses in Studio?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is designed to be easy to use by almost anyone familiar with common " +"web-based authoring environments (Wordpress, Moodle, etc.). No programming " +"knowledge is required, but for some of the more advanced features, a " +"technical background would be helpful. As always, we are here to help, so " +"don't hesitate to dive right in." +msgstr "" + +#: cms/templates/register.html +msgid "I've never authored a course online before. Is there help?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Absolutely. We have created an online course, edX101, that describes some " +"best practices: from filming video, creating exercises, to the basics of " +"running an online course. Additionally, we're always here to help, just drop" +" us a note." +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details Settings" +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/settings.html +msgid "Basic Information" +msgstr "" + +#: cms/templates/settings.html +msgid "The nuts and bolts of your course" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "This field is disabled: this information cannot be changed." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Summary Page" +msgstr "" + +#: cms/templates/settings.html +msgid "(for student enrollment and access)" +msgstr "" + +#: cms/templates/settings.html +msgid "Send a note to students via email" +msgstr "" + +#: cms/templates/settings.html +msgid "Invite your students" +msgstr "" + +#: cms/templates/settings.html +msgid "Promoting Your Course with edX" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course summary page will not be viewable until your course has been " +"announced. To provide content for the page and preview it, follow the " +"instructions provided by your PM." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Schedule" +msgstr "" + +#: cms/templates/settings.html +msgid "Dates that control when your course can be viewed" +msgstr "" + +#: cms/templates/settings.html +msgid "First day the course begins" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day your course is active" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Date" +msgstr "" + +#: cms/templates/settings.html +msgid "First day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "These Dates Are Not Used When Promoting Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"These dates impact when your courseware can be viewed, but " +"they are not the dates shown on your course summary page. " +"To provide the course start and registration dates as shown on your course " +"summary page, follow the instructions provided by your PM or Conrad Warre (conrad@edx.org)." +msgstr "" + +#: cms/templates/settings.html +msgid "Introducing Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "Information for prospective students" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Short Description" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Appears on the course catalog page when students roll over the course name. " +"Limit to ~150 characters" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Overview" +msgstr "" + +#: cms/templates/settings.html +msgid "your course summary page" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"You can manage this image along with all of your other files " +"& uploads" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 375px wide by 200px tall)" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your course image (Note: only JPEG " +"or PNG format supported)" +msgstr "" + +#: cms/templates/settings.html +msgid "Upload Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Introduction Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Delete Current Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Enter your YouTube video's ID (along with any restriction parameters)" +msgstr "" + +#: cms/templates/settings.html +msgid "Requirements" +msgstr "" + +#: cms/templates/settings.html +msgid "Expectations of the students taking this course" +msgstr "" + +#: cms/templates/settings.html +msgid "Hours of Effort per Week" +msgstr "" + +#: cms/templates/settings.html +msgid "Time spent on all course work" +msgstr "" + +#: cms/templates/settings.html +msgid "How are these settings used?" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course's schedule determines when students can enroll in and begin a " +"course." +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Other information from this page appears on the About page for your course. " +"This information includes the course overview, course image, introduction " +"video, and estimated time requirements. Students use About pages to choose " +"new courses to take." +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html +msgid "Other Course Settings" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +msgid "Grading" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Advanced Settings" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "There was an error saving your information. Please see below." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Manual Policy Definition" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Warning: Do not modify these policies unless you are " +"familiar with their purpose." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "What do advanced settings do?" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Advanced settings control specific course functionality. On this page, you " +"can edit manual policies, which are JSON-based key and value pairs that " +"control specific course settings." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Any policies you modify here override all other information you've defined " +"elsewhere in Studio. Do not edit policies unless you are familiar with both " +"their purpose and syntax." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" +" you use double quotation marks (") around the string. Do not use " +"single quotation marks (')." +msgstr "" + +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +msgid "Details & Schedule" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Settings" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Overall Grade Range" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Your overall grading scale for student final grades" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Rules & Policies" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Deadlines, requirements, and logistics around grading student work" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grace Period on Deadline:" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Leeway on due dates" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Assignment Types" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Categories and labels for any exercises that are gradable" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "New Assignment Type" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can use the slider under Overall Grade Range to specify whether your " +"course is pass/fail or graded by letter, and to establish the thresholds for" +" each grade." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can specify whether your course offers students a grace period for late " +"assignments." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can also create assignment types, such as homework, labs, quizzes, and " +"exams, and specify how much of a student's grade each assignment type is " +"worth." +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +#: cms/templates/studio_vertical_wrapper.html +msgid "Expand or Collapse" +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + +#: cms/templates/textbooks.html +msgid "You have unsaved changes. Do you really want to leave this page?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "New Textbook" +msgstr "" + +#: cms/templates/textbooks.html +msgid "Why should I break my textbook into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"Breaking your textbook into multiple chapters reduces loading times for " +"students, especially those with slow Internet connections. Breaking up " +"textbooks into chapters can also help students more easily find topic-based " +"information." +msgstr "" + +#: cms/templates/textbooks.html +msgid "What if my book isn't divided into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"If your textbook doesn't have individual chapters, you can upload the entire" +" text as a single chapter and enter a name of your choice in the Chapter " +"Name field." +msgstr "" + +#: cms/templates/unit.html cms/templates/ux/reference/unit.html +msgid "Individual Unit" +msgstr "" + +#: cms/templates/unit.html +msgid "You are editing a draft." +msgstr "" + +#: cms/templates/unit.html +msgid "This unit was originally published on {date}." +msgstr "" + +#: cms/templates/unit.html +msgid "View the Live Version" +msgstr "" + +#: cms/templates/unit.html +msgid "Add New Component" +msgstr "" + +#: cms/templates/unit.html +msgid "Common Problem Types" +msgstr "" + +#: cms/templates/unit.html +msgid "Advanced" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Settings" +msgstr "" + +#: cms/templates/unit.html +msgid "Visibility:" +msgstr "" + +#: cms/templates/unit.html +msgid "Public" +msgstr "" + +#: cms/templates/unit.html +msgid "Private" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit has been published. To make changes, you must {link_start}edit a " +"draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This is a draft of the published unit. To update the live version, you must " +"{link_start}replace it with this draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "Delete Draft" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Location" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Identifier:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for edX Studio! To activate your account, please " +"copy and paste this address into your web browser's address bar:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the edX web site." +msgstr "" + +#: cms/templates/emails/activation_email_subject.txt +msgid "Your account for edX Studio" +msgstr "" + +#: cms/templates/emails/course_creator_admin_subject.txt +msgid "{email} has requested Studio course creator privileges on edge" +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "" +"User '{user}' with e-mail {email} has requested Studio course creator " +"privileges on edge." +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "To grant or deny this request, use the course creator admin table." +msgstr "" + +#: cms/templates/emails/course_creator_denied.txt +msgid "" +"Your request for course creation rights to edX Studio have been denied. If " +"you believe this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_granted.txt +msgid "" +"Your request for course creation rights to edX Studio have been granted. To " +"create your first course, visit:" +msgstr "" + +#: cms/templates/emails/course_creator_revoked.txt +msgid "" +"Your course creation rights to edX Studio have been revoked. If you believe " +"this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_subject.txt +msgid "Your course creator status for edX Studio" +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "You can now {link_start}login{link_end}." +msgstr "" + +#: cms/templates/registration/reg_complete.html +msgid "" +"An activation link has been sent to {email}, along with instructions for " +"activating your account." +msgstr "" + +#: cms/templates/widgets/footer.html +msgid "All rights reserved." +msgstr "" + +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Contact Us" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Current Course:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "{course_name}'s Navigation:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Outline" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Updates" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Checklists" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Import" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Export" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Help & Account Navigation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +msgid "This is a PDF Document" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Documentation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html +msgid "Studio Help Center" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Currently signed in as:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Sign Out" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "You're not currently signed in" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "How Studio Works" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Help" +msgstr "" + +#: cms/templates/widgets/metadata-edit.html +msgid "Launch Latex Source Compiler" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Heading 1" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Multiple Choice" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Checkboxes" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Text Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Numerical Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Dropdown" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Explanation" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Advanced Editor" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Toggle Cheatsheet" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Label" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "edX Studio Help" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Need help with Studio? Creating a course is complex, so we're here to help. " +"Take advantage of our documentation, help center, as well as our edX101 " +"introduction course for course authors." +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Download Studio Documentation" +msgstr "" + +#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +msgid "How to use Studio to build your course" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Enroll in edX101" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Contact us about Studio" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Have problems, questions, or suggestions about Studio? We're also here to " +"listen to any feedback you want to share." +msgstr "" + +#: cms/templates/widgets/tabs-aggregator.html +msgid "name" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete this unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to sort" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to reorder unit" +msgstr "" + +# empty +msgid "This is a key string." +msgstr "" + +#: wiki/admin.py wiki/models/article.py +msgid "created" +msgstr "" + +#: wiki/forms.py +msgid "Only localhost... muahahaha" +msgstr "" + +#: wiki/forms.py +msgid "Initial title of the article. May be overridden with revision titles." +msgstr "" + +#: wiki/forms.py +msgid "Type in some contents" +msgstr "" + +#: wiki/forms.py +msgid "" +"This is just the initial contents of your article. After creating it, you " +"can use more complex features like adding plugins, meta data, related " +"articles etc..." +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Contents" +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Summary" +msgstr "" + +#: wiki/forms.py +msgid "" +"Give a short reason for your edit, which will be stated in the revision log." +msgstr "" + +#: wiki/forms.py +msgid "" +"While you were editing, someone else changed the revision. Your contents " +"have been automatically merged with the new contents. Please review the text" +" below." +msgstr "" + +#: wiki/forms.py +msgid "No changes made. Nothing to save." +msgstr "" + +#: wiki/forms.py +msgid "Select an option" +msgstr "" + +#: wiki/forms.py +msgid "Slug" +msgstr "" + +#: wiki/forms.py +msgid "" +"This will be the address where your article can be found. Use only " +"alphanumeric characters and - or _. Note that you cannot change the slug " +"after creating the article." +msgstr "" + +#: wiki/forms.py +msgid "Write a brief message for the article's history log." +msgstr "" + +#: wiki/forms.py +msgid "A slug may not begin with an underscore." +msgstr "" + +#: wiki/forms.py +msgid "A deleted article with slug \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "A slug named \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "Yes, I am sure" +msgstr "" + +#: wiki/forms.py +msgid "Purge" +msgstr "" + +#: wiki/forms.py +msgid "" +"Purge the article: Completely remove it (and all its contents) with no undo." +" Purging is a good idea if you want to free the slug such that users can " +"create new articles in its place." +msgstr "" + +#: wiki/forms.py wiki/plugins/attachments/forms.py +#: wiki/plugins/images/forms.py +msgid "You are not sure enough!" +msgstr "" + +#: wiki/forms.py +msgid "While you tried to delete this article, it was modified. TAKE CARE!" +msgstr "" + +#: wiki/forms.py +msgid "Lock article" +msgstr "" + +#: wiki/forms.py +msgid "Deny all users access to edit this article." +msgstr "" + +#: wiki/forms.py +msgid "Permissions" +msgstr "" + +#: wiki/forms.py +msgid "Owner" +msgstr "" + +#: wiki/forms.py +msgid "Enter the username of the owner." +msgstr "" + +#: wiki/forms.py +msgid "(none)" +msgstr "" + +#: wiki/forms.py +msgid "Inherit permissions" +msgstr "" + +#: wiki/forms.py +msgid "" +"Check here to apply the above permissions recursively to articles under this" +" one." +msgstr "" + +#: wiki/forms.py +msgid "Permission settings for the article were updated." +msgstr "" + +#: wiki/forms.py +msgid "Your permission settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/forms.py +msgid "No user with that username" +msgstr "" + +#: wiki/forms.py +msgid "Article locked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Article unlocked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Filter..." +msgstr "" + +#: wiki/core/plugins/base.py +msgid "Settings for plugin" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +#: wiki/plugins/attachments/models.py +msgid "current revision" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The revision being displayed for this article. If you need to do a roll-" +"back, simply change the value of this field." +msgstr "" + +#: wiki/models/article.py +msgid "modified" +msgstr "" + +#: wiki/models/article.py +msgid "Article properties last modified" +msgstr "" + +#: wiki/models/article.py +msgid "owner" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The owner of the article, usually the creator. The owner always has both " +"read and write access." +msgstr "" + +#: wiki/models/article.py +msgid "group" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Like in a UNIX file system, permissions can be given to a user according to " +"group membership. Groups are handled through the Django auth system." +msgstr "" + +#: wiki/models/article.py +msgid "group read access" +msgstr "" + +#: wiki/models/article.py +msgid "group write access" +msgstr "" + +#: wiki/models/article.py +msgid "others read access" +msgstr "" + +#: wiki/models/article.py +msgid "others write access" +msgstr "" + +#: wiki/models/article.py +msgid "Article without content (%(id)d)" +msgstr "" + +#: wiki/models/article.py +msgid "content type" +msgstr "" + +#: wiki/models/article.py +msgid "object ID" +msgstr "" + +#: wiki/models/article.py +msgid "Article for object" +msgstr "" + +#: wiki/models/article.py +msgid "Articles for object" +msgstr "" + +#: wiki/models/article.py +msgid "revision number" +msgstr "" + +#: wiki/models/article.py +msgid "IP address" +msgstr "" + +#: wiki/models/article.py +msgid "user" +msgstr "" + +#: wiki/models/article.py +msgid "locked" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +msgid "article" +msgstr "" + +#: wiki/models/article.py +msgid "article contents" +msgstr "" + +#: wiki/models/article.py +msgid "article title" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Each revision contains a title field that must be filled out, even if the " +"title has not changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "original article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "Permissions are inherited from this article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "A plugin was changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "" +"The revision being displayed for this plugin.If you need to do a roll-back, " +"simply change the value of this field." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Cache lookup value for articles" +msgstr "" + +#: wiki/models/urlpath.py +msgid "slug" +msgstr "" + +#: wiki/models/urlpath.py +msgid "(root)" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL path" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL paths" +msgstr "" + +#: wiki/models/urlpath.py +msgid "Sorry but you cannot have a root article with a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "A non-root note must always have a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "There is already a root node on %s" +msgstr "" + +#: wiki/models/urlpath.py +msgid "" +"Articles who lost their parents\n" +"===============================\n" +"\n" +"The children of this article have had their parents deleted. You should probably find a new home for them." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Lost and found" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "A short summary of what the file contains" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "Yes I am sure..." +msgstr "" + +#: wiki/plugins/attachments/markdown_extensions.py +msgid "Click to download file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "" +"The revision of this attachment currently in use (on all articles using the " +"attachment)" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "original filename" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachments" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revision" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revisions" +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s was successfully added." +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "Your file could not be saved: %s" +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "" +"Your file could not be saved, probably because of a permission error on the " +"web server." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s uploaded and replaces old attachment." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your new file will automatically be renamed to match the file already " +"present. Files with different extensions are not allowed." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Current revision changed for %s." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "The file %s was deleted." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "This article is no longer related to the file %s." +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was changed: %s" +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was deleted: %s" +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "" +"New image %s was successfully uploaded. You can use it by selecting it from " +"the list of available images." +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "Are you sure?" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "images" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image: %s" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Current revision not set!!" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revision" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revisions" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image Revsion: %d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been restored" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been marked as deleted" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been changed to revision #%(revision)d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been saved." +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "Images" +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "An image was added: %s" +msgstr "" + +#: wiki/plugins/links/wiki_plugin.py +msgid "Links" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Notifications" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "When this article is edited" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Also receive emails about article edits" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were updated." +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "%(user)s subscribing to %(article)s (%(type)s)" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article deleted: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article modified: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "New article created: %s" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now sign up... and now you can sign in!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are no longer logged in. Bye bye!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now logged in! Have fun!" +msgstr "" + +#: wiki/views/article.py +msgid "New article '%s' created." +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article: %s" +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article cannot be deleted because it has children or is a root article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article together with all its contents are now completely gone! Thanks!" +msgstr "" + +#: wiki/views/article.py +msgid "" +"The article \"%s\" is now marked as deleted! Thanks for keeping the site " +"free from unwanted material!" +msgstr "" + +#: wiki/views/article.py +msgid "Your changes were saved." +msgstr "" + +#: wiki/views/article.py +msgid "A new revision of the article was succesfully added." +msgstr "" + +#: wiki/views/article.py +msgid "Restoring article" +msgstr "" + +#: wiki/views/article.py +msgid "The article \"%s\" and its children are now restored." +msgstr "" + +#: wiki/views/article.py +msgid "The article %s is now set to display revision #%d" +msgstr "" + +#: wiki/views/article.py +msgid "New title" +msgstr "" + +#: wiki/views/article.py +msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" +msgstr "" + +#: wiki/views/article.py +msgid "" +"A new revision was created: Merge between Revision #%(r1)d and Revision " +"#%(r2)d" +msgstr "" diff --git a/conf/locale/da/LC_MESSAGES/djangojs.mo b/conf/locale/da/LC_MESSAGES/djangojs.mo new file mode 100644 index 0000000000..e510bbdd33 Binary files /dev/null and b/conf/locale/da/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/da/LC_MESSAGES/djangojs.po b/conf/locale/da/LC_MESSAGES/djangojs.po new file mode 100644 index 0000000000..4380829fe4 --- /dev/null +++ b/conf/locale/da/LC_MESSAGES/djangojs.po @@ -0,0 +1,1712 @@ +# #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Danish (http://www.transifex.com/projects/p/edx-platform/language/da/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-01-21 20:18+0000\n" +"Last-Translator: \n" +"Language-Team: Danish (http://www.transifex.com/projects/p/edx-platform/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: cms/static/coffee/src/views/tabs.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js +#: common/static/coffee/src/discussion/utils.js +msgid "OK" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/asset.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Cancel" +msgstr "" + +#: cms/static/js/base.js lms/static/js/verify_student/photocapture.js +msgid "This link will open in a new browser window/tab" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Show Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Hide Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Expand Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Collapse Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Commentary" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Reply to Annotation" +msgstr "" + +#. Translators: %(earned)s is the number of points earned. %(total)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(earned)s/%(possible)s point)" +msgid_plural "(%(earned)s/%(possible)s points)" +msgstr[0] "" +msgstr[1] "" + +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10). There will always be at least 1 point possible.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(num_points)s point possible)" +msgid_plural "(%(num_points)s points possible)" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer:" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Hide Answer" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Show Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Reveal Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer hidden" +msgstr "" + +#. Translators: the word unanswered here is about answering a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "unanswered" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Status: unsubmitted" +msgstr "" + +#. Translators: A "rating" is a score a student gives to indicate how well +#. they feel they were graded on this problem +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "You need to pick a rating before you can submit." +msgstr "" + +#. Translators: this message appears when transitioning between openended +#. grading +#. types (i.e. self assesment to peer assessment). Sometimes, if a student +#. did not perform well at one step, they cannot move on to the next one. +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Your score did not meet the criteria to move to the next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Submit" +msgstr "" + +#. Translators: one clicks this button after one has finished filling out the +#. grading +#. form for an openended assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: this button is clicked to submit a student's rating of +#. an evaluator's assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit post-assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Answer saved, but not yet submitted." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Please confirm that you wish to submit your work. You will not be able to " +"make any changes after submitting." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"You are trying to upload a file that is too large for our system. Please " +"choose a file under 2MB or paste a link to it into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Are you sure you want to remove your previous response to this question?" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Moved to next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"File uploads are required for this question, but are not supported in your " +"browser. Try the newest version of Google Chrome. Alternatively, if you have" +" uploaded the image to another website, you can paste a link to it into the " +"answer box." +msgstr "" + +#. Translators: "Show Question" is some text that, when clicked, shows a +#. question's +#. content that had been hidden +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Show Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Hide Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/sequence/display.js +msgid "" +"Sequence error! Cannot navigate to tab %(tab_name)s in the current " +"SequenceModule. Please contact the course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Video slider" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Pause" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Play" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Fill browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Exit full browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD on" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD off" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video ended" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s hour" +msgid_plural "%(value)s hours" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s minute" +msgid_plural "%(value)s minutes" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s second" +msgid_plural "%(value)s seconds" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Volume" +msgstr "" + +#. Translators: Volume level equals 0%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Muted" +msgstr "" + +#. Translators: Volume level in range (0,20]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very low" +msgstr "" + +#. Translators: Volume level in range (20,40]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Low" +msgstr "" + +#. Translators: Volume level in range (40,60]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Average" +msgstr "" + +#. Translators: Volume level in range (60,80]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Loud" +msgstr "" + +#. Translators: Volume level in range (80,100)% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very loud" +msgstr "" + +#. Translators: Volume level equals 100%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Maximum" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Caption will be displayed when " +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on captions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn off captions" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Hide Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Show Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Sorry" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "We had some trouble loading the discussion. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "" +"We had some trouble loading the threads you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "Loading content" +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "" +"We had some trouble processing your request. Please ensure you have copied " +"any unsaved work and then reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "We had some trouble processing your request. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +msgid "…" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Close" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Open" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "remove vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Load more" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading more threads" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "We had some trouble loading more threads. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "%(unread_count)s new comment" +msgid_plural "%(unread_count)s new comments" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading thread list" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to remove report" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported%(start_sr_span)s, click to remove report%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Report Misuse" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned%(start_sr_span)s, click to unpin%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to unpin" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pin Thread" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading responses. Please reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading more responses. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "%(numResponses)s response" +msgid_plural "%(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing first response" +msgid_plural "Showing first %(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load next %(numResponses)s responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Are you sure you want to delete this post?" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +msgid "anonymous" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "staff" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Community TA" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported, click to remove report" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Are you sure you want to delete this comment?" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "We had some trouble deleting this comment. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/thread_response_view.js +msgid "Are you sure you want to delete this response?" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s ago" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s from now" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "less than a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about an hour" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about %d hour" +msgid_plural "about %d hours" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "a day" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a month" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a year" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Available %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of available %s. You may choose some by selecting them in " +"the box below and then clicking the \"Choose\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Type into this box to filter down the list of available %s." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Filter" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to choose all %s at once." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Chosen %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of chosen %s. You may remove some by selecting them in the " +"box below and then clicking the \"Remove\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to remove all chosen %s at once." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "%(sel)s of %(cnt)s selected" +msgid_plural "%(sel)s of %(cnt)s selected" +msgstr[0] "" +msgstr[1] "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have unsaved changes on individual editable fields. If you run an " +"action, your unsaved changes will be lost." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, but you haven't saved your changes to " +"individual fields yet. Please click OK to save. You'll need to re-run the " +"action." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, and you haven't made any changes on individual " +"fields. You're probably looking for the Go button rather than the Save " +"button." +msgstr "" + +#. Translators: the names of months, keep the pipe (|) separators. +#: lms/static/admin/js/calendar.js lms/static/admin/js/dateparse.js +msgid "" +"January|February|March|April|May|June|July|August|September|October|November|December" +msgstr "" + +#. Translators: abbreviations for days of the week, keep the pipe (|) +#. separators. +#: lms/static/admin/js/calendar.js +msgid "S|M|T|W|T|F|S" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.js.c +#: lms/static/admin/js/collapse.min.js +msgid "Show" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.min.js +msgid "Hide" +msgstr "" + +#. Translators: the names of days, keep the pipe (|) separators. +#: lms/static/admin/js/dateparse.js +msgid "Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Now" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Clock" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Choose a time" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Midnight" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "6 a.m." +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Noon" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Today" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Calendar" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Yesterday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Tomorrow" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Open Calculator" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Close Calculator" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Preview" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Post body" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching distribution." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Unavailable metric display." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching grade distributions." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Last Updated: <%= timestamp %>" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "<%= num_students %> students scored." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Loading..." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error getting student list." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error retrieving grading configuration." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error generating grades. Please try again." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "File Name" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "" +"Links are generated on demand and expire within 5 minutes due to the " +"sensitive nature of student information." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Username" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Revoke access" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Enter username or email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Please enter a username or email." +msgstr "" + +#. Translators: A rolename appears this sentence.; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error fetching list for role" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +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 "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully removed as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not removed as beta testers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Users must create and activate their account before they can be promoted to " +"beta tester." +msgstr "" + +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Could not find users associated with the following identifiers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error enrolling/unenrolling users." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following email addresses and/or usernames are invalid:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled and sent email to the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Emails successfully sent. The following users are no longer enrolled in the " +"course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following users are no longer enrolled in the course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"These users were not affiliated with the course so could not be unenrolled:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message must have a subject." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message cannot be blank." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to yourself. Is this " +"OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to everyone who is " +"staff or instructor on this course. Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to ALL (everyone who " +"is enrolled in this course as student, staff, or instructor). Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Error sending email." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There is no email history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There was an error obtaining email task history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a student email address or username." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting student progress url for '<%= student_id %>'. Check that the " +"student identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a problem urlname." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Success! Problem attempts reset for problem '<%= problem_id %>' and student " +"'<%= student_id %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error resetting problem attempts for problem '<%= problem_id %>' and student" +" '<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Delete student '<%= student_id %>'s state on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id" +" %>'. Check that the problem and student identifiers are spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Module state successfully deleted." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Started rescore problem task for problem '<%= problem_id %>' and student " +"'<%= student_id %>'. Click the 'Show Background Task History for Student' " +"button to see the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>' for student " +"'<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting task history for problem '<%= problem_id %>' and student '<%= " +"student_id %>'. Check that the problem and student identifiers are spelled " +"correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Reset attempts for all students on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to reset attempts for problem '<%= problem_id %>'." +" Click the 'Show Background Task History for Problem' button to see the " +"status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to reset attempts for all students on problem '<%= " +"problem_id %>'. Check that the problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Rescore problem '<%= problem_id %>' for all students?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to rescore problem '<%= problem_id %>' for all " +"students. Click the 'Show Background Task History for Problem' button to see" +" the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>'. Check that the" +" problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Error listing task history for this student and problem." +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Type" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task inputs" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task ID" +msgstr "" + +#. Translators: a "Requester" is a username that requested a task such as +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Requester" +msgstr "" + +#. Translators: A timestamp of when a task (eg, sending email) was submitted +#. appears after this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Submitted" +msgstr "" + +#. Translators: The length of a task (eg, sending email) in seconds appears +#. this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Duration (sec)" +msgstr "" + +#. Translators: The state (eg, "In progress") of a task (eg, sending email) +#. appears after this. +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "State" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Status" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Grades saved. Fetching the next submission to grade." +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Problem Name" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Graded" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Available to Grade" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Required" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Back to problem list" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Try loading again" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> available " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> graded " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> more needed to start ML" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Re-check for submissions" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state: <%= state %>" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state for submission: " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Hide)" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Show)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Image (upload file or type url)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Markdown Editing Help" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bold (Ctrl+B)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Italic (Ctrl+I)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Hyperlink (Ctrl+L)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote (Ctrl+Q)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Code Sample (Ctrl+K)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Image (Ctrl+G)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Numbered List (Ctrl+O)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bulleted List (Ctrl+U)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading (Ctrl+H)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Horizontal Rule (Ctrl+R)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Undo (Ctrl+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Y)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Shift+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "strong text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "emphasized text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter image description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter link description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote" +msgstr "" + +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +msgid "enter code here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "List item" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading" +msgstr "" + +#: lms/templates/class_dashboard/all_section_metrics.js +#: lms/templates/class_dashboard/all_section_metrics.js +msgid "Unable to retrieve data, please try again later." +msgstr "" + +#: lms/templates/class_dashboard/d3_stacked_bar_graph.js +msgid "Number of Students" +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "" +"This may be happening because of an error with our server or your internet " +"connection. Try refreshing the page or making sure you are online." +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "Studio's having trouble saving your work" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/xblock/cms.runtime.v1.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js +#: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js +#: cms/static/js/views/xblock_editor.js +msgid "Saving…" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "Delete Component Confirmation" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "" +"Are you sure you want to delete this component? This action cannot be " +"undone." +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js +msgid "Deleting…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js +msgid "Adding…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Duplicating…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Delete this component?" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Deleting this component is permanent and cannot be undone." +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Yes, delete this component" +msgstr "" + +#: cms/static/js/base.js +msgid "This link will open in a modal window" +msgstr "" + +#: cms/static/js/base.js +msgid "Delete this " +msgstr "" + +#: cms/static/js/base.js +msgid "Deleting this " +msgstr "" + +#: cms/static/js/base.js +msgid "Yes, delete this " +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces or special characters in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "" +"The combined length of the organization, course number, and course run " +"fields cannot be more than 65 characters." +msgstr "" + +#: cms/static/js/index.js +msgid "Required field." +msgstr "" + +#: cms/static/js/sock.js +msgid "Hide Studio Help" +msgstr "" + +#: cms/static/js/sock.js +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/static/js/models/course.js cms/static/js/models/section.js +msgid "You must specify a name" +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "" +"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " +"<%= fileExtensions %> to upload." +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "or" +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course must have an assigned start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course end date cannot be before the course start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course start date cannot be before the enrollment start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment start date cannot be after the enrollment end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment end date cannot be after the course end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "Key should only contain letters, numbers, _, or -" +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "There's already another assignment type with this name." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer between 0 and 100." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer greater than 0." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter non-negative integer." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Cannot drop more <% attrs.types %> than will assigned." +msgstr "" + +#: cms/static/js/models/settings/course_grading_policy.js +msgid "Grace period must be specified in HH:MM format." +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Delete File Confirmation" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "" +"Are you sure you wish to delete this item. It cannot be reversed!\n" +"\n" +"Also any content that links/refers to this item will no longer work (e.g. broken images and/or links)" +msgstr "" + +#: cms/static/js/views/asset.js cms/static/js/views/show_textbook.js +msgid "Delete" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Your file has been deleted." +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Name" +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Date Added" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "Are you sure you want to delete this update?" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "This action cannot be undone." +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Upload a new PDF to “<%= name %>”" +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + +#: cms/static/js/views/edit_textbook.js +#: cms/static/js/views/overview_assignment_grader.js +msgid "Saving" +msgstr "" + +#: cms/static/js/views/import.js +msgid "There was an error with the upload" +msgstr "" + +#: cms/static/js/views/import.js +msgid "" +"File format not supported. Please upload a file with a tar.gz " +"extension." +msgstr "" + +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Collapse All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Expand All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Release date:" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "{month}/{day}/{year} at {hour}:{minute} UTC" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Edit section release date" +msgstr "" + +#: cms/static/js/views/overview_assignment_grader.js +msgid "Not Graded" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "ascending" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "descending" +msgstr "" + +#: cms/static/js/views/paging_header.js +msgid "" +"Showing %(current_span)s%(start)s-%(end)s%(end_span)s out of " +"%(total_span)s%(total)s total%(end_span)s, sorted by " +"%(order_span)s%(sort_order)s%(end_span)s %(sort_direction)s" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Your change could not be saved" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Return and resolve this issue" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Delete “<%= name %>”?" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "" +"Deleting a textbook cannot be undone and once deleted any reference to it in" +" your courseware's navigation will also be removed." +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Deleting" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "We're sorry, there was an error" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes will not take effect until you save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes, but there are some errors" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "" +"Please address the errors on this page first, and then save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Save Changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes have been saved." +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Your changes will not take effect until you save your progress. Take care " +"with key and value formatting, as validation is not implemented." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Please note that validation of your policy key and value pairs is not " +"currently in place yet. If you are having difficulties, please review your " +"policy pairs." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Upload your course image." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Files must be in JPEG or PNG format." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/de_DE/LC_MESSAGES/django.mo b/conf/locale/de_DE/LC_MESSAGES/django.mo index c05b8c826c..c3ba37fcb8 100644 Binary files a/conf/locale/de_DE/LC_MESSAGES/django.mo and b/conf/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/conf/locale/de_DE/LC_MESSAGES/django.po b/conf/locale/de_DE/LC_MESSAGES/django.po index f44371ad73..0f02d0c77f 100644 --- a/conf/locale/de_DE/LC_MESSAGES/django.po +++ b/conf/locale/de_DE/LC_MESSAGES/django.po @@ -9,6 +9,7 @@ # andreas.frey , 2014 # barbos , 2013 # barbos , 2013 +# s6lidaem , 2014 # ramirezterrix , 2014 # ramirezterrix , 2014 # Shan9204 , 2013 @@ -22,6 +23,7 @@ # AlecL , 2013 # andreas.frey , 2014 # barbos , 2013 +# s6lidaem , 2014 # ramirezterrix , 2014 # ramirezterrix , 2014 # Shan9204 , 2013 @@ -34,10 +36,12 @@ # Translators: # AlecL , 2013 # AlecL , 2013 +# s6lidaem , 2014 # ramirezterrix , 2014 # ramirezterrix , 2014 # pongratz , 2014 # pongratz , 2014 +# Kiel , 2014 # Shan9204 , 2013 # Shan9204 , 2013-2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# @@ -48,6 +52,7 @@ # Translators: # AlecL , 2013 # dabang , 2014 +# s6lidaem , 2014 # ramirezterrix , 2014 # ramirezterrix , 2014 # pongratz , 2014 @@ -68,14 +73,15 @@ # # Translators: # andreas.frey , 2014 +# s6lidaem , 2014 # Shan9204 , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" -"PO-Revision-Date: 2014-04-10 11:30+0000\n" -"Last-Translator: andreas.frey \n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-29 12:42+0000\n" +"Last-Translator: s6lidaem \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" @@ -846,7 +852,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1408,6 +1414,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Navigation" @@ -4881,10 +4897,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4894,6 +4924,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5693,10 +5727,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/de_DE/LC_MESSAGES/djangojs.mo b/conf/locale/de_DE/LC_MESSAGES/djangojs.mo index 24ec2cdc5c..810eaee63f 100644 Binary files a/conf/locale/de_DE/LC_MESSAGES/djangojs.mo and b/conf/locale/de_DE/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/de_DE/LC_MESSAGES/djangojs.po b/conf/locale/de_DE/LC_MESSAGES/djangojs.po index 912df334b8..469f1950c4 100644 --- a/conf/locale/de_DE/LC_MESSAGES/djangojs.po +++ b/conf/locale/de_DE/LC_MESSAGES/djangojs.po @@ -9,6 +9,7 @@ # andreas.frey , 2014 # dabang , 2014 # MasterCrumble , 2014 +# s6lidaem , 2014 # ramirezterrix , 2014 # ramirezterrix , 2014 # Shan9204 , 2013 @@ -20,15 +21,16 @@ # # Translators: # AlecL , 2013 +# s6lidaem , 2014 # ramirezterrix , 2014 # Shan9204 , 2013 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" -"PO-Revision-Date: 2014-04-24 13:20+0000\n" -"Last-Translator: sarina \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-29 14:20+0000\n" +"Last-Translator: s6lidaem \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" diff --git a/conf/locale/el/LC_MESSAGES/django.mo b/conf/locale/el/LC_MESSAGES/django.mo index 2330afb24f..e7eb417d05 100644 Binary files a/conf/locale/el/LC_MESSAGES/django.mo and b/conf/locale/el/LC_MESSAGES/django.mo differ diff --git a/conf/locale/el/LC_MESSAGES/django.po b/conf/locale/el/LC_MESSAGES/django.po index 8992ccc9c0..b08f2803a5 100644 --- a/conf/locale/el/LC_MESSAGES/django.po +++ b/conf/locale/el/LC_MESSAGES/django.po @@ -4,12 +4,14 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# multiheader , 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: +# Aika1 , 2014 # patz , 2014 # #-#-#-#-# mako.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Greek (http://www.transifex.com/projects/p/edx-platform/language/el/) @@ -30,19 +32,21 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# JohnMantas , 2014 # #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2014 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# multiheader , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-02-10 03:11+0000\n" -"Last-Translator: sarina \n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-05-04 19:27+0000\n" +"Last-Translator: multiheader \n" "Language-Team: Greek (http://www.transifex.com/projects/p/edx-platform/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -173,6 +177,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -183,6 +197,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -309,7 +330,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -321,6 +342,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -769,7 +806,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -790,6 +827,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -802,6 +843,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -896,6 +959,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -928,11 +995,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -982,6 +1067,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1266,10 +1363,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1697,10 +1808,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1743,6 +1858,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2030,7 +2154,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2257,37 +2381,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2387,6 +2480,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3079,6 +3176,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3145,6 +3243,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3686,35 +3785,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3732,6 +3807,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3756,23 +3844,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3813,14 +3919,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 "" @@ -4028,12 +4126,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4044,12 +4141,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4090,11 +4186,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4203,6 +4335,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4258,18 +4394,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4377,14 +4501,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4427,7 +4547,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4654,10 +4775,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4667,6 +4817,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4710,15 +4868,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4770,6 +4928,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4827,8 +4989,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4885,10 +5048,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4969,6 +5134,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5059,33 +5244,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5094,6 +5263,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5110,14 +5283,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5157,7 +5322,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5202,43 +5367,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5487,8 +5620,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5726,6 +5859,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5734,6 +5871,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5777,17 +5928,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5917,6 +6062,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5937,12 +6086,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6277,12 +6426,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6396,10 +6539,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6572,6 +6723,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6690,6 +6848,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7052,24 +7214,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7081,6 +7233,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7120,10 +7280,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7204,6 +7373,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7214,10 +7387,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7641,7 +7810,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7652,9 +7822,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7672,6 +7843,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7693,7 +7868,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7702,6 +7877,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7833,6 +8018,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8064,6 +8270,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8300,6 +8512,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8539,20 +8761,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8562,7 +8782,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8933,6 +9153,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8973,13 +9195,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9668,19 +9884,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9694,23 +9907,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9745,6 +9975,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11379,6 +11616,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11467,15 +11708,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/el/LC_MESSAGES/djangojs.mo b/conf/locale/el/LC_MESSAGES/djangojs.mo index 5ed61bf081..79101c11c3 100644 Binary files a/conf/locale/el/LC_MESSAGES/djangojs.mo and b/conf/locale/el/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/el/LC_MESSAGES/djangojs.po b/conf/locale/el/LC_MESSAGES/djangojs.po index 8009ba531d..0c0d5f67aa 100644 --- a/conf/locale/el/LC_MESSAGES/djangojs.po +++ b/conf/locale/el/LC_MESSAGES/djangojs.po @@ -10,12 +10,13 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# JohnMantas , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Greek (http://www.transifex.com/projects/p/edx-platform/language/el/)\n" "MIME-Version: 1.0\n" @@ -26,6 +27,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -34,6 +36,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -333,6 +337,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -389,16 +395,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -460,6 +464,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -496,6 +505,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -874,9 +887,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -884,7 +898,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1218,15 +1232,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1336,18 +1351,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1363,6 +1373,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1370,19 +1381,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1529,6 +1540,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1544,6 +1559,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1605,6 +1624,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1634,6 +1657,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1658,3 +1701,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/en@lolcat/LC_MESSAGES/django.mo b/conf/locale/en@lolcat/LC_MESSAGES/django.mo index 9ea55dfedf..352534dbc1 100644 Binary files a/conf/locale/en@lolcat/LC_MESSAGES/django.mo and b/conf/locale/en@lolcat/LC_MESSAGES/django.mo differ diff --git a/conf/locale/en@lolcat/LC_MESSAGES/django.po b/conf/locale/en@lolcat/LC_MESSAGES/django.po index e098a6cbda..0bfffd59b7 100644 --- a/conf/locale/en@lolcat/LC_MESSAGES/django.po +++ b/conf/locale/en@lolcat/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-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -816,7 +816,7 @@ msgid "unanswered" msgstr "U HAS NOT ANSWERD DIS" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1381,6 +1381,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "NAVIGASHUN" @@ -4837,10 +4847,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4850,6 +4874,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5677,10 +5705,6 @@ msgstr "DOWNLOAD VIDEO" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/en@lolcat/LC_MESSAGES/djangojs.mo b/conf/locale/en@lolcat/LC_MESSAGES/djangojs.mo index ef02b84aad..83426458be 100644 Binary files a/conf/locale/en@lolcat/LC_MESSAGES/djangojs.mo and b/conf/locale/en@lolcat/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/en@lolcat/LC_MESSAGES/djangojs.po b/conf/locale/en@lolcat/LC_MESSAGES/djangojs.po index 26c05568cf..9d2496e96e 100644 --- a/conf/locale/en@lolcat/LC_MESSAGES/djangojs.po +++ b/conf/locale/en@lolcat/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-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: LOLCAT English (http://www.transifex.com/projects/p/edx-platform/language/en@lolcat/)\n" diff --git a/conf/locale/en@pirate/LC_MESSAGES/django.mo b/conf/locale/en@pirate/LC_MESSAGES/django.mo index 5cfb943a8b..324a9d28c6 100644 Binary files a/conf/locale/en@pirate/LC_MESSAGES/django.mo and b/conf/locale/en@pirate/LC_MESSAGES/django.mo differ diff --git a/conf/locale/en@pirate/LC_MESSAGES/django.po b/conf/locale/en@pirate/LC_MESSAGES/django.po index 1243a43040..de5c6ed787 100644 --- a/conf/locale/en@pirate/LC_MESSAGES/django.po +++ b/conf/locale/en@pirate/LC_MESSAGES/django.po @@ -50,7 +50,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-04-10 20:10+0000\n" "Last-Translator: Diana Huang \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/edx-platform/language/en@pirate/)\n" @@ -817,7 +817,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1382,6 +1382,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Naaarrrvigation" @@ -4824,10 +4834,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4837,6 +4861,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5651,10 +5679,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/en@pirate/LC_MESSAGES/djangojs.mo b/conf/locale/en@pirate/LC_MESSAGES/djangojs.mo index 9fefa46462..b55cf0a119 100644 Binary files a/conf/locale/en@pirate/LC_MESSAGES/djangojs.mo and b/conf/locale/en@pirate/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/en@pirate/LC_MESSAGES/djangojs.po b/conf/locale/en@pirate/LC_MESSAGES/djangojs.po index 066979c24a..a41fa288a2 100644 --- a/conf/locale/en@pirate/LC_MESSAGES/djangojs.po +++ b/conf/locale/en@pirate/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-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/edx-platform/language/en@pirate/)\n" diff --git a/conf/locale/eo/LC_MESSAGES/django.mo b/conf/locale/eo/LC_MESSAGES/django.mo index 296c5a98e1..e07ec9d62e 100644 Binary files a/conf/locale/eo/LC_MESSAGES/django.mo and b/conf/locale/eo/LC_MESSAGES/django.mo differ diff --git a/conf/locale/eo/LC_MESSAGES/django.po b/conf/locale/eo/LC_MESSAGES/django.po index 091e513f71..3da3f03aa3 100644 --- a/conf/locale/eo/LC_MESSAGES/django.po +++ b/conf/locale/eo/LC_MESSAGES/django.po @@ -37,8 +37,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-28 11:26-0400\n" -"PO-Revision-Date: 2014-04-28 15:26:13.087798\n" +"POT-Creation-Date: 2014-05-05 09:26-0400\n" +"PO-Revision-Date: 2014-05-05 13:26:48.373471\n" "Last-Translator: \n" "Language-Team: openedx-translation \n" "MIME-Version: 1.0\n" @@ -830,8 +830,8 @@ msgid "unanswered" msgstr "ünänswéréd Ⱡ#" #: common/lib/capa/capa/inputtypes.py -msgid "queued" -msgstr "qüéüéd Ⱡ'σяєм ιρѕ#" +msgid "processing" +msgstr "pröçéssïng Ⱡ#" #: common/lib/capa/capa/inputtypes.py msgid "" @@ -5399,10 +5399,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "Sïgn ïn wïth {provider_name} Ⱡ'σ#" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "Éxtérnäl résöürçé Ⱡ'σ#" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "{points} / {total_points} pöïnts Ⱡ'σ#" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "{total_points} pöïnts pössïßlé Ⱡ'σя#" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "Vïéw résöürçé ïn ä néw wïndöw Ⱡ'σяєм #" @@ -5414,6 +5428,10 @@ msgstr "" "Pléäsé prövïdé läünçh_ürl. Çlïçk \"Édït\", änd fïll ïn thé réqüïréd fïélds. " "Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт#" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "Féédßäçk ön ýöür wörk fröm thé grädér: Ⱡ'σяєм ιρѕ#" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "Préss tö Läünçh Ⱡ'#" @@ -7353,6 +7371,12 @@ msgstr "" "Fïnäl çöürsé détäïls äré ßéïng wräppéd üp ät thïs tïmé. Ýöür fïnäl ständïng " "wïll ßé äväïläßlé shörtlý. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σ#" +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final standing is unrequested or unavailable at this time." +msgstr "" +"Ýöür fïnäl ständïng ïs ünréqüéstéd ör ünäväïläßlé ät thïs tïmé. Ⱡ'σяєм ιρѕυм" +" ∂σłσя#" + #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Your final grade:" msgstr "Ýöür fïnäl grädé: Ⱡ'σ#" diff --git a/conf/locale/eo/LC_MESSAGES/djangojs.mo b/conf/locale/eo/LC_MESSAGES/djangojs.mo index ce7db5cbad..63bd1f284d 100644 Binary files a/conf/locale/eo/LC_MESSAGES/djangojs.mo and b/conf/locale/eo/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/eo/LC_MESSAGES/djangojs.po b/conf/locale/eo/LC_MESSAGES/djangojs.po index 71fe2475ca..3c5335db19 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-04-28 11:25-0400\n" -"PO-Revision-Date: 2014-04-28 15:26:13.632347\n" +"POT-Creation-Date: 2014-05-05 09:25-0400\n" +"PO-Revision-Date: 2014-05-05 13:26:48.910894\n" "Last-Translator: \n" "Language-Team: openedx-translation \n" "MIME-Version: 1.0\n" diff --git a/conf/locale/es_419/LC_MESSAGES/django.mo b/conf/locale/es_419/LC_MESSAGES/django.mo index 8a16fa97b0..b63f33d409 100644 Binary files a/conf/locale/es_419/LC_MESSAGES/django.mo and b/conf/locale/es_419/LC_MESSAGES/django.mo differ diff --git a/conf/locale/es_419/LC_MESSAGES/django.po b/conf/locale/es_419/LC_MESSAGES/django.po index 39ed199ef6..5ad2f04134 100644 --- a/conf/locale/es_419/LC_MESSAGES/django.po +++ b/conf/locale/es_419/LC_MESSAGES/django.po @@ -8,6 +8,7 @@ # apardo , 2013 # ovnicraft , 2014 # dsalazar , 2014 +# dzepeda , 2014 # diegobe , 2014 # dsalazar , 2014 # ferabra , 2014 @@ -46,6 +47,7 @@ # apardo , 2013 # ovnicraft , 2013 # dsalazar , 2014 +# dzepeda , 2014 # dsalazar , 2014 # ferabra , 2013 # ferabra , 2013 @@ -102,7 +104,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-03-01 15:39+0000\n" "Last-Translator: ovnicraft \n" "Language-Team: Spanish (Latin America) (http://www.transifex.com/projects/p/edx-platform/language/es_419/)\n" @@ -882,8 +884,8 @@ msgid "unanswered" msgstr "sin responder" #: common/lib/capa/capa/inputtypes.py -msgid "queued" -msgstr "en cola" +msgid "processing" +msgstr "" #: common/lib/capa/capa/inputtypes.py msgid "" @@ -1507,6 +1509,16 @@ msgstr "" "Una dirección URL de YouTube o un vínculo a un archivo alojado en cualquier " "lugar de la Web." +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Navegación" @@ -5285,10 +5297,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "Recurso externo" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "Ver recurso en una nueva ventana" @@ -5300,6 +5326,10 @@ msgstr "" "Por favor proveer launch_url. Clic en \"Editar\", y completar los campos " "necesarios." +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -6156,10 +6186,6 @@ msgstr "Descargar video" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/es_419/LC_MESSAGES/djangojs.mo b/conf/locale/es_419/LC_MESSAGES/djangojs.mo index 81cb612f37..9bc4e39d37 100644 Binary files a/conf/locale/es_419/LC_MESSAGES/djangojs.mo and b/conf/locale/es_419/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/es_419/LC_MESSAGES/djangojs.po b/conf/locale/es_419/LC_MESSAGES/djangojs.po index b352c90d67..220d5ce184 100644 --- a/conf/locale/es_419/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_419/LC_MESSAGES/djangojs.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-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 15:04+0000\n" "Last-Translator: ovnicraft \n" "Language-Team: Spanish (Latin America) (http://www.transifex.com/projects/p/edx-platform/language/es_419/)\n" diff --git a/conf/locale/es_AR/LC_MESSAGES/django.mo b/conf/locale/es_AR/LC_MESSAGES/django.mo index ebd37fd530..e4da154674 100644 Binary files a/conf/locale/es_AR/LC_MESSAGES/django.mo and b/conf/locale/es_AR/LC_MESSAGES/django.mo differ diff --git a/conf/locale/es_AR/LC_MESSAGES/django.po b/conf/locale/es_AR/LC_MESSAGES/django.po index 3f233b64f0..cd08074d44 100644 --- a/conf/locale/es_AR/LC_MESSAGES/django.po +++ b/conf/locale/es_AR/LC_MESSAGES/django.po @@ -11,6 +11,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Aylén , 2014 # #-#-#-#-# mako.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Spanish (Argentina) (http://www.transifex.com/projects/p/edx-platform/language/es_AR/) # Copyright (C) 2014 edX @@ -24,6 +25,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Aylén , 2014 # #-#-#-#-# messages.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2013 edX @@ -37,13 +39,14 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Aylén , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-15 17:20+0000\n" -"Last-Translator: sarina \n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-06 00:50+0000\n" +"Last-Translator: Aylén \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/edx-platform/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -174,6 +177,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -184,6 +197,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -310,7 +330,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -322,6 +342,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -770,7 +806,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -791,6 +827,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -803,6 +843,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -897,6 +959,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -929,11 +995,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -983,6 +1067,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1267,10 +1363,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1698,10 +1808,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1744,6 +1858,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2031,7 +2154,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2258,37 +2381,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2388,6 +2480,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3080,6 +3176,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3146,6 +3243,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3687,35 +3785,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3733,6 +3807,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3757,23 +3844,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3814,14 +3919,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 "" @@ -4029,12 +4126,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4045,12 +4141,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4091,11 +4186,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4204,6 +4335,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4259,18 +4394,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4378,14 +4501,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4428,7 +4547,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4655,10 +4775,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4668,6 +4817,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4711,15 +4868,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4771,6 +4928,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4828,8 +4989,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4886,10 +5048,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4970,6 +5134,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5060,33 +5244,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5095,6 +5263,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5111,14 +5283,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5158,7 +5322,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5203,43 +5367,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5488,8 +5620,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5727,6 +5859,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5735,6 +5871,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5778,17 +5928,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5918,6 +6062,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5938,12 +6086,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6278,12 +6426,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6397,10 +6539,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6573,6 +6723,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6691,6 +6848,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7053,24 +7214,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7082,6 +7233,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7121,10 +7280,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7205,6 +7373,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7215,10 +7387,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7642,7 +7810,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7653,9 +7822,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7673,6 +7843,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7694,7 +7868,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7703,6 +7877,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7834,6 +8018,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8065,6 +8270,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8301,6 +8512,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8540,20 +8761,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8563,7 +8782,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8934,6 +9153,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8974,13 +9195,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9669,19 +9884,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9695,23 +9907,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9746,6 +9975,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11380,6 +11616,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11468,15 +11708,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/es_AR/LC_MESSAGES/djangojs.mo b/conf/locale/es_AR/LC_MESSAGES/djangojs.mo index 2396e4424b..a7b48e1e1d 100644 Binary files a/conf/locale/es_AR/LC_MESSAGES/djangojs.mo and b/conf/locale/es_AR/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/es_AR/LC_MESSAGES/djangojs.po b/conf/locale/es_AR/LC_MESSAGES/djangojs.po index da5604c01c..7e860b82f7 100644 --- a/conf/locale/es_AR/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_AR/LC_MESSAGES/djangojs.po @@ -12,12 +12,13 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Aylén , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/edx-platform/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -28,6 +29,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -36,6 +38,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -335,6 +339,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -391,16 +397,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -462,6 +466,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -498,6 +507,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -876,9 +889,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -886,7 +900,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1220,15 +1234,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1338,18 +1353,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1365,6 +1375,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1372,19 +1383,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1531,6 +1542,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1546,6 +1561,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1607,6 +1626,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1636,6 +1659,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1660,3 +1703,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/es_EC/LC_MESSAGES/django.mo b/conf/locale/es_EC/LC_MESSAGES/django.mo index 7059b2010b..37713c4025 100644 Binary files a/conf/locale/es_EC/LC_MESSAGES/django.mo and b/conf/locale/es_EC/LC_MESSAGES/django.mo differ diff --git a/conf/locale/es_EC/LC_MESSAGES/django.po b/conf/locale/es_EC/LC_MESSAGES/django.po index eed7ac6c70..1d19aca80e 100644 --- a/conf/locale/es_EC/LC_MESSAGES/django.po +++ b/conf/locale/es_EC/LC_MESSAGES/django.po @@ -27,6 +27,7 @@ # Herty Nava , 2013 # juancamilom , 2013 # Luis Ruiz , 2013 +# M. Mellet , 2014 # name1984 , 2014 # Natalia_m, 2013 # ovnicraft , 2014 @@ -48,13 +49,14 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# x_vela , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-01 16:10+0000\n" -"Last-Translator: nedbat \n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-30 20:11+0000\n" +"Last-Translator: x_vela \n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/edx-platform/language/es_EC/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -185,6 +187,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -195,6 +207,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -321,7 +340,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -333,6 +352,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -781,7 +816,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -802,6 +837,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -814,6 +853,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -908,6 +969,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -940,11 +1005,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -994,6 +1077,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1278,10 +1373,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1709,10 +1818,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1755,6 +1868,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2042,7 +2164,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2269,37 +2391,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2399,6 +2490,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3091,6 +3186,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3157,6 +3253,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3698,35 +3795,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3744,6 +3817,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3768,23 +3854,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3825,14 +3929,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 "" @@ -4040,12 +4136,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4056,12 +4151,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4102,11 +4196,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4215,6 +4345,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4270,18 +4404,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4389,14 +4511,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4439,7 +4557,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4666,10 +4785,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4679,6 +4827,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4722,15 +4878,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4782,6 +4938,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4839,8 +4999,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4897,10 +5058,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4981,6 +5144,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5071,33 +5254,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5106,6 +5273,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5122,14 +5293,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5169,7 +5332,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5214,43 +5377,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5499,8 +5630,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5738,6 +5869,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5746,6 +5881,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5789,17 +5938,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5929,6 +6072,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5949,12 +6096,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6289,12 +6436,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6408,10 +6549,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6584,6 +6733,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6702,6 +6858,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7064,24 +7224,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7093,6 +7243,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7132,10 +7290,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7216,6 +7383,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7226,10 +7397,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7653,7 +7820,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7664,9 +7832,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7684,6 +7853,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7705,7 +7878,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7714,6 +7887,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7845,6 +8028,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8076,6 +8280,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8312,6 +8522,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8551,20 +8771,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8574,7 +8792,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8945,6 +9163,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8985,13 +9205,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9680,19 +9894,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9706,23 +9917,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9757,6 +9985,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11391,6 +11626,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11479,15 +11718,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/es_EC/LC_MESSAGES/djangojs.mo b/conf/locale/es_EC/LC_MESSAGES/djangojs.mo index daa2291754..272a5e53d6 100644 Binary files a/conf/locale/es_EC/LC_MESSAGES/djangojs.mo and b/conf/locale/es_EC/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/es_EC/LC_MESSAGES/djangojs.po b/conf/locale/es_EC/LC_MESSAGES/djangojs.po index 037f4cd1ac..5eebab8a6e 100644 --- a/conf/locale/es_EC/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_EC/LC_MESSAGES/djangojs.po @@ -4,6 +4,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# M. Mellet , 2014 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# # edX translation file. # Copyright (C) 2014 EdX @@ -14,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-24 14:25+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/edx-platform/language/es_EC/)\n" "MIME-Version: 1.0\n" @@ -26,6 +27,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -34,6 +36,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -333,6 +337,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -389,16 +395,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -460,6 +464,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -496,6 +505,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -874,9 +887,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -884,7 +898,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1218,15 +1232,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1336,18 +1351,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1363,6 +1373,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1370,19 +1381,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1529,6 +1540,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1544,6 +1559,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1605,6 +1624,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1634,6 +1657,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1658,3 +1701,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/es_ES/LC_MESSAGES/django.mo b/conf/locale/es_ES/LC_MESSAGES/django.mo index 31caf85bd2..08b01d69a3 100644 Binary files a/conf/locale/es_ES/LC_MESSAGES/django.mo and b/conf/locale/es_ES/LC_MESSAGES/django.mo differ diff --git a/conf/locale/es_ES/LC_MESSAGES/django.po b/conf/locale/es_ES/LC_MESSAGES/django.po index 4fa83ce59d..fd16671912 100644 --- a/conf/locale/es_ES/LC_MESSAGES/django.po +++ b/conf/locale/es_ES/LC_MESSAGES/django.po @@ -10,6 +10,7 @@ # juanan , 2013-2014 # juanan , 2014 # mcolomer , 2014 +# RUTHQUINTANA , 2014 # valenciaupv , 2014 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# # edX translation file. @@ -17,6 +18,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# spentamanyu , 2014 # juanan , 2014 # juanan , 2014 # juditseb , 2014 @@ -89,7 +91,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-04-25 10:00+0000\n" "Last-Translator: spentamanyu \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/edx-platform/language/es_ES/)\n" @@ -209,10 +211,9 @@ msgstr "id del Curso no indicado" msgid "Course id is invalid" msgstr "La id del curso no es válida" -#: common/djangoapps/student/views.py #: lms/templates/courseware/course_about.html msgid "Course is full" -msgstr "" +msgstr "El curso está completo" #: common/djangoapps/student/views.py msgid "You are not enrolled in this course" @@ -860,7 +861,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1133,13 +1134,9 @@ msgid "" "string." msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: 'Courseware' refers to the tab in the courseware that leads to -#. the content of a course -#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/courseware/courseware-error.html msgid "Courseware" -msgstr "" +msgstr "Contenidos" #. Translators: "Course Info" is the name of the course's information and #. updates page @@ -1148,12 +1145,9 @@ msgstr "" msgid "Course Info" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Progress" is the name of the student's course progress page -#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/peer_grading/peer_grading.html msgid "Progress" -msgstr "" +msgstr "Progreso" #. Translators: "Wiki" is the name of the course's wiki page #: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/course_wiki/views.py @@ -1173,13 +1167,9 @@ msgstr "" msgid "Textbooks" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Staff grading" appears on a tab that allows -#. staff to view open-ended problems that require staff grading -#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/instructor/staff_grading.html msgid "Staff grading" -msgstr "" +msgstr "Calificación de los administradores" #. Translators: "Peer grading" appears on a tab that allows #. students to view open-ended problems that require grading @@ -1422,6 +1412,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "Fichero SubRip (.srt)" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "Fichero de texto plano (.txt) " + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Navegación" @@ -1628,11 +1628,9 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/djangoapps/dashboard/tests/test_sysadmin.py #: lms/templates/tracking_log.html msgid "username" -msgstr "" +msgstr "Identificador de usuario" #: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py #: lms/djangoapps/dashboard/tests/test_sysadmin.py @@ -1829,11 +1827,10 @@ msgstr "" msgid "Good" msgstr "" -#: lms/djangoapps/django_comment_client/forum/views.py #: lms/templates/discussion/_inline_new_post.html #: lms/templates/discussion/_new_post.html msgid "All Groups" -msgstr "" +msgstr "Todos los Grupos" #: lms/djangoapps/instructor/views/api.py msgid "User does not exist." @@ -1853,12 +1850,12 @@ msgstr "" msgid "Username" msgstr "" -#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/help_modal.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" -msgstr "" +msgstr "Nombre" #: lms/templates/dashboard.html #: lms/templates/courseware/instructor_dashboard.html @@ -1878,19 +1875,18 @@ msgstr "" msgid "Birth Year" msgstr "" -#: lms/djangoapps/instructor/views/api.py lms/templates/register.html -#: lms/templates/signup_modal.html +#: lms/templates/register.html lms/templates/signup_modal.html msgid "Gender" -msgstr "" +msgstr "Género" #: lms/djangoapps/instructor/views/api.py #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "Level of Education" msgstr "" -#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +#: lms/templates/register.html msgid "Mailing Address" -msgstr "" +msgstr "Dirección de correspondencia" #: lms/djangoapps/instructor/views/api.py msgid "Goals" @@ -1905,10 +1901,9 @@ msgstr "" msgid "An error occurred while deleting the score." msgstr "" -#: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" -msgstr "" +msgstr "Completo" #: lms/djangoapps/instructor/views/api.py msgid "Incomplete" @@ -1952,10 +1947,9 @@ msgstr "" msgid "Data Download" msgstr "" -#: lms/djangoapps/instructor/views/instructor_dashboard.py #: lms/templates/courseware/instructor_dashboard.html msgid "Analytics" -msgstr "" +msgstr "Analíticas" #: lms/djangoapps/instructor/views/legacy.py msgid "Course Statistics At A Glance" @@ -2188,15 +2182,14 @@ msgstr "" msgid "ID" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/tools.py cms/templates/register.html -#: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: cms/templates/register.html lms/templates/dashboard.html +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" -msgstr "" +msgstr "Nombre Completo" #: lms/djangoapps/instructor/views/legacy.py msgid "edX email" @@ -2577,11 +2570,10 @@ msgstr "" msgid "Order ID" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py #: lms/templates/open_ended_problems/open_ended_problems.html #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Status" -msgstr "" +msgstr "Estado" #: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html msgid "Quantity" @@ -2613,12 +2605,10 @@ msgstr "" msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py -#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html +#: cms/templates/widgets/header.html cms/templates/widgets/header.html #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Course" -msgstr "" +msgstr "Curso" #: lms/djangoapps/shoppingcart/reports.py msgid "Course Announce Date" @@ -3135,11 +3125,10 @@ msgstr "" msgid "Password Reset Help" msgstr "" -#: lms/templates/registration/password_reset_confirm.html #: cms/templates/login.html lms/templates/login-sidebar.html #: lms/templates/register-sidebar.html msgid "Need Help?" -msgstr "" +msgstr "¿Necesitas ayuda?" #: lms/templates/registration/password_reset_confirm.html msgid "" @@ -3254,11 +3243,8 @@ msgstr "Guardar cambios" msgid "Preview" msgstr "Previsualizar" -#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) -#: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard.html lms/templates/forgot_password_modal.html @@ -3271,7 +3257,7 @@ msgstr "Previsualizar" #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" -msgstr "" +msgstr "Cerrar" #: lms/templates/wiki/edit.html msgid "Wiki Preview" @@ -3584,98 +3570,119 @@ msgstr "" #: cms/djangoapps/contentstore/course_info_model.py #: cms/djangoapps/contentstore/course_info_model.py msgid "Invalid course update id." -msgstr "" +msgstr "Id de actualización del curso inválido." #: cms/djangoapps/contentstore/course_info_model.py msgid "Course update not found." -msgstr "" +msgstr "Actualización del curso no encontrada." #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " "configure a different path with GIT_REPO_EXPORT_DIR" msgstr "" +"La ruta {0} no existeo GIT_REPO_EXPORT_DIR no se ha configurado, por favor, " +"créalo o configura una ruta diferente para GIT_REPO_EXPORT_DIR" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Non writable git url provided. Expecting something like: " "git@github.com:mitocw/edx4edx_lite.git" msgstr "" +"Se ha indicado una URL git no usable. Se esperaba algo como: " +"git@github.com:mitocw/edx4edx_lite.git" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "If using http urls, you must provide the username and password in the url. " "Similar to https://user:pass@github.com/user/course." msgstr "" +"Si utilizas enlaces http, debes poner el usuario y la contraseña en la url. " +"Ejemplo : https://user:pass@github.com/user/course." #: cms/djangoapps/contentstore/git_export_utils.py msgid "Unable to determine branch, repo in detached HEAD mode" -msgstr "" +msgstr "No se puede determinar la rama, repo en modo HEAD desacoplado" #: cms/djangoapps/contentstore/git_export_utils.py msgid "Unable to update or clone git repository." -msgstr "" +msgstr "No se ha podido actualizar o clonar el repositorio git." #: cms/djangoapps/contentstore/git_export_utils.py msgid "Unable to export course to xml." -msgstr "" +msgstr "No se ha podido exportar el curso a xml." #: cms/djangoapps/contentstore/git_export_utils.py msgid "Unable to configure git username and password" -msgstr "" +msgstr "No se ha podido configurar el usuario y contraseña del git." #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Unable to commit changes. This is usually because there are no changes to be" " committed" msgstr "" +"Imposible hacer un commit de los cambios. Normalmente es porque no hay " +"cambios que incorporar." #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Unable to push changes. This is usually because the remote repository " "cannot be contacted" msgstr "" +"Imposible hacer un push de los cambios. Esto suele pasar porque no se puede " +"conectar con el repositorio remoto." #: cms/djangoapps/contentstore/git_export_utils.py msgid "Bad course location provided" -msgstr "" +msgstr "Se ha proporcionado una localización del curso errónea" #: cms/djangoapps/contentstore/git_export_utils.py msgid "Missing branch on fresh clone" -msgstr "" +msgstr "Rama inexistente en el nuevo clon" #: cms/djangoapps/contentstore/git_export_utils.py msgid "Command was: {0!r}. Working directory was: {1!r}" -msgstr "" +msgstr "El comando ha sido : {0!r}. El directorio de trabajo ha sido: {1!r}" #: cms/djangoapps/contentstore/git_export_utils.py msgid "Command output was: {0!r}" -msgstr "" +msgstr "La salida del comando ha sido: {0!r}" #: cms/djangoapps/contentstore/git_export_utils.py msgid "" "Directory already exists, doing a git reset and pull instead of git clone." msgstr "" +"El directorio ya existe, procedemos a un reset y un pull del git en vez de " +"hacer un clon del git." #: cms/djangoapps/contentstore/utils.py lms/templates/notes.html +#, fuzzy msgid "My Notes" msgstr "" +"#-#-#-#-# django-studio.po (edx-platform) #-#-#-#-#\n" +"Mis Notas\n" +"#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" +"Mis Anotaciones" #: cms/djangoapps/contentstore/management/commands/git_export.py msgid "" "Take the specified course and attempt to export it to a git repository\n" ". Course directory must already be a git repository. Usage: git_export " msgstr "" +"Intenta exportar el curso especificado a un repositorio git\n" +". El directorio del curso debe ser ya un repositorio git. Uso: git_export " #: cms/djangoapps/contentstore/views/assets.py msgid "Upload completed" -msgstr "" +msgstr "Carga completada" #: cms/djangoapps/contentstore/views/course.py msgid "" "Special characters not allowed in organization, course number, and course " "run." msgstr "" +"Los caracteres especiales no pueden usarse en organización, número de curso " +"ni edición del curso." #: cms/djangoapps/contentstore/views/course.py msgid "" @@ -3683,6 +3690,9 @@ msgid "" "\n" "{err}" msgstr "" +"No ha sido posible crear el curso '{name}'.\n" +"\n" +"{err}" #: cms/djangoapps/contentstore/views/course.py msgid "" @@ -3690,6 +3700,8 @@ msgid "" " and course run. Please change either organization or course number to be " "unique." msgstr "" +"Ya hay un curso con la misma organización, número y periodo. Por favor " +"cambie la organización o el número de curso para que sea único." #: cms/djangoapps/contentstore/views/course.py #: cms/djangoapps/contentstore/views/course.py @@ -3698,111 +3710,117 @@ msgstr "" msgid "" "Please change either the organization or course number so that it is unique." msgstr "" +"Por favor, cambie la organización o el número de curso para que sea único." #: cms/djangoapps/contentstore/views/course.py msgid "" "There is already a course defined with the same organization and course " "number. Please change at least one field to be unique." msgstr "" +"Ya hay definido un curso con la misma organización y número de curso. Por " +"favor, cambie al menos uno de estos campos para que sea único." #: cms/djangoapps/contentstore/views/export_git.py msgid "Course successfully exported to git repository" -msgstr "" +msgstr "Se ha exportado con éxito el curso al repositorio git" #: cms/djangoapps/contentstore/views/import_export.py msgid "We only support uploading a .tar.gz file." -msgstr "" +msgstr "Sólo aceptamos el envío de ficheros .tar.gz." #: cms/djangoapps/contentstore/views/import_export.py msgid "File upload corrupted. Please try again" -msgstr "" +msgstr "Archivo subido corrupto. Por favor, inténtalo de nuevo" #: cms/djangoapps/contentstore/views/import_export.py msgid "Could not find the course.xml file in the package." -msgstr "" +msgstr "No se pudo encontrar el fichero course.xml en el paquete." #: cms/djangoapps/contentstore/views/item.py msgid "Duplicate of {0}" -msgstr "" +msgstr "Duplicado de {0}" #: cms/djangoapps/contentstore/views/item.py msgid "Duplicate of '{0}'" -msgstr "" +msgstr "Duplicado de '{0}'" #: cms/djangoapps/contentstore/views/transcripts_ajax.py msgid "Incoming video data is empty." -msgstr "" +msgstr "Los datos del vídeo recibidos están vacíos." #: cms/djangoapps/contentstore/views/transcripts_ajax.py msgid "Can't find item by locator." -msgstr "" +msgstr "No se pudo encontrar el elemento con el localizador indicado." #: cms/djangoapps/contentstore/views/transcripts_ajax.py msgid "Transcripts are supported only for \"video\" modules." -msgstr "" +msgstr "Sólo existe soporte para transcripciones en los módulos de vídeo." #: cms/djangoapps/contentstore/views/user.py msgid "Insufficient permissions" -msgstr "" +msgstr "Permisos insuficientes" #: cms/djangoapps/contentstore/views/user.py msgid "Could not find user by email address '{email}'." -msgstr "" +msgstr "No se encuentra ningún usuario con la dirección de correo '{email}'." #: cms/djangoapps/contentstore/views/user.py msgid "User {email} has registered but has not yet activated his/her account." msgstr "" +"El usuario {email} se ha registrado pero todavía no ha activado su cuenta." #: cms/djangoapps/contentstore/views/user.py msgid "`role` is required" -msgstr "" +msgstr "se requiere el 'rol'" #: cms/djangoapps/contentstore/views/user.py msgid "Only instructors may create other instructors" -msgstr "" +msgstr "Sólo los instructores deben crear otros instructores" #: cms/djangoapps/contentstore/views/user.py msgid "You may not remove the last instructor from a course" -msgstr "" +msgstr "No debe eliminar el último instructor de un curso" #: cms/djangoapps/course_creators/models.py msgid "unrequested" -msgstr "" +msgstr "no solicitado" #: cms/djangoapps/course_creators/models.py msgid "pending" -msgstr "" +msgstr "pendiente" #: cms/djangoapps/course_creators/models.py msgid "granted" -msgstr "" +msgstr "concedido" #: cms/djangoapps/course_creators/models.py msgid "denied" -msgstr "" +msgstr "denegado" #: cms/djangoapps/course_creators/models.py msgid "Studio user" -msgstr "" +msgstr "usuario del Studio" #: cms/djangoapps/course_creators/models.py msgid "The date when state was last updated" -msgstr "" +msgstr "La fecha en la que el estado se actualizó por última vez" #: cms/djangoapps/course_creators/models.py msgid "Current course creator state" -msgstr "" +msgstr "Estado actual del creador del curso" #: cms/djangoapps/course_creators/models.py msgid "" "Optional notes about this user (for example, why course creation access was " "denied)" msgstr "" +"Notas opcionales sobre este usuario (por ejemplo, por qué se ha denegado el " +"acceso a crear cursos). " #: cms/templates/404.html cms/templates/error.html #: lms/templates/static_templates/404.html msgid "Page Not Found" -msgstr "" +msgstr "No se encontró la página" #: cms/templates/404.html lms/templates/static_templates/404.html msgid "Page not found" @@ -3824,16 +3842,16 @@ msgstr "" #: cms/templates/container_xblock_component.html #: lms/templates/wiki/includes/article_menu.html msgid "View" -msgstr "" +msgstr "Ver" #: cms/templates/html_error.html lms/templates/module-error.html msgid "Error:" -msgstr "" +msgstr "Error:" #: cms/templates/index.html cms/templates/settings.html #: lms/templates/courseware/course_about.html msgid "Course Number" -msgstr "" +msgstr "Código del curso" #: cms/templates/index.html cms/templates/manage_users.html #: cms/templates/overview.html cms/templates/overview.html @@ -3851,23 +3869,23 @@ msgstr "" #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" -msgstr "" +msgstr "Organización:" #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" -msgstr "" +msgstr "Código del curso:" #: cms/templates/index.html #: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Pending" -msgstr "" +msgstr "Pendiente" #: cms/templates/login.html lms/templates/login.html #: lms/templates/university_profile/edge.html msgid "Forgot password?" -msgstr "" +msgstr "¿Olvidaste tu contraseña?" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html @@ -3888,7 +3906,7 @@ msgstr "" #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" -msgstr "" +msgstr "Administrador" #: cms/templates/overview.html cms/templates/overview.html #: cms/templates/overview.html cms/templates/overview.html @@ -3902,13 +3920,13 @@ msgstr "" #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" -msgstr "" +msgstr "Registrarse" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/signup_modal.html msgid "Public Username" -msgstr "" +msgstr "Identificador de usuario público" #: cms/templates/register.html #: lms/templates/dashboard/_dashboard_info_language.html @@ -3918,12 +3936,12 @@ msgstr "" #: cms/templates/registration/activation_complete.html #: lms/templates/registration/activation_complete.html msgid "Thanks for activating your account." -msgstr "" +msgstr "Gracias por activar su cuenta." #: cms/templates/registration/activation_complete.html #: lms/templates/registration/activation_complete.html msgid "This account has already been activated." -msgstr "" +msgstr "Está cuenta ya ha sido activada." #: cms/templates/registration/activation_complete.html #: lms/templates/registration/activation_complete.html @@ -3941,7 +3959,9 @@ msgstr "" msgid "Privacy Policy" msgstr "" -#: wiki/plugins/help/wiki_plugin.py +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "Ayuda" @@ -4247,21 +4267,21 @@ msgstr "editar" #. their edX account. #: lms/templates/dashboard.html msgid "Account Links" -msgstr "" +msgstr "Enlaces de cuentas" #. Translators: clicking on this removes the link between a user's edX account #. and their account with an external authentication provider (like Google or #. LinkedIn). #: lms/templates/dashboard.html msgid "unlink" -msgstr "" +msgstr "desenlazar" #. Translators: clicking on this creates a link between a user's edX account #. and their account with an external authentication provider (like Google or #. LinkedIn). #: lms/templates/dashboard.html msgid "link" -msgstr "" +msgstr "enlace" #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" @@ -4497,7 +4517,7 @@ msgstr "Preguntas Frecuentes" #: lms/templates/footer.html msgid "{platform_name} Logo" -msgstr "" +msgstr "Logo de {platform_name}" #: lms/templates/footer.html msgid "" @@ -4607,7 +4627,7 @@ msgstr "" #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/signup_modal.html msgid "E-mail" -msgstr "" +msgstr "Correo electrónico" #: lms/templates/help_modal.html msgid "Briefly describe your issue" @@ -4635,7 +4655,7 @@ msgstr "" #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html msgid "Submit" -msgstr "" +msgstr "Enviar" #: lms/templates/help_modal.html msgid "Thank You!" @@ -4648,6 +4668,11 @@ msgid "" "UTC.) In the meantime, please review our {link_start}detailed FAQs{link_end}" " where most questions have already been answered." msgstr "" +"Gracias por sus preguntas y aportes. Generalmente respondemos cada solicitud" +" en un día hábil (Lunes a Viernes {open_time} UTC a {close_time} UTC.) Entre" +" tanto, por favor revise nuestra sección de {link_start}Preguntas Frecuentes" +" Detalladas{link_end} en donde la mayoría de preguntas ya han sido " +"respondidas." #: lms/templates/help_modal.html msgid "problem" @@ -4684,7 +4709,7 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/help_modal.html #: lms/templates/module-error.html msgid "Details" -msgstr "" +msgstr "Detalles" #: lms/templates/help_modal.html msgid "question" @@ -4712,49 +4737,52 @@ msgstr "" #: lms/templates/index.html msgid "Free courses from {university_name}" -msgstr "" +msgstr "Cursos gratuitos de {university_name}" #: lms/templates/index.html msgid "The Future of Online Education" -msgstr "" +msgstr "El futuro de la educación en línea" #: lms/templates/index.html msgid "For anyone, anywhere, anytime" -msgstr "" +msgstr "Para cualquiera, en cualquier lugar, en cualquier momento." #: lms/templates/index.html msgid "Stay up to date with all {platform_name} has to offer!" msgstr "" +"¡Manténgase al día con todo lo que {platform_name} tiene para ofrecerle!" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" -msgstr "" +msgstr "Clave de cambio de correo electrónico inválida" #: lms/templates/invalid_email_key.html msgid "This e-mail key is not valid. Please check:" -msgstr "" +msgstr "Esta clave de correo electrónica no es valida. Por favor revisar:" #: lms/templates/invalid_email_key.html msgid "" "Was this key already used? Check whether the e-mail change has already " "happened." msgstr "" +"¿Esta clave ya se había utilizado? Por favor revise si el cambio de correo " +"electrónico ya fue realizado." #: lms/templates/invalid_email_key.html msgid "Did your e-mail client break the URL into two lines?" -msgstr "" +msgstr "¿Su cliente de correo electrónico separó la URL en dos líneas?" #: lms/templates/invalid_email_key.html msgid "The keys are valid for a limited amount of time. Has the key expired?" -msgstr "" +msgstr "Las claves son validas por un tiempo limitado. ¿Ha expirado su clave?" #: lms/templates/login-sidebar.html msgid "Helpful Information" -msgstr "" +msgstr "Información util" #: lms/templates/login-sidebar.html lms/templates/login-sidebar.html msgid "Login via OpenID" -msgstr "" +msgstr "Iniciar sesión vía OpenID" #: lms/templates/login-sidebar.html msgid "" @@ -4764,11 +4792,11 @@ msgstr "" #: lms/templates/login-sidebar.html msgid "Not Enrolled?" -msgstr "" +msgstr "¿No estás inscrito?" #: lms/templates/login-sidebar.html msgid "Sign up for {platform_name} today!" -msgstr "" +msgstr "Regístrate hoy mismo en {platform_name}!" #: lms/templates/login-sidebar.html msgid "Looking for help in logging in or with your {platform_name} account?" @@ -4780,15 +4808,15 @@ msgstr "" #: lms/templates/login.html msgid "Log into your {platform_name} Account" -msgstr "" +msgstr "Inicia sesión en tu cuenta de {platform_name}" #: lms/templates/login.html msgid "Log into My {platform_name} Account" -msgstr "" +msgstr "Iniciar sesión en mi cuenta de {platform_name}" #: lms/templates/login.html msgid "Access My Courses" -msgstr "" +msgstr "Acceder a Mis Cursos" #: lms/templates/login.html lms/templates/register.html msgid "Processing your account information…" @@ -4805,6 +4833,8 @@ msgstr "" #: lms/templates/login.html msgid "We're Sorry, {platform_name} accounts are unavailable currently" msgstr "" +"Lo sentimos, las cuentas de {platform_name} no están disponibles en el " +"momento" #: lms/templates/login.html msgid "The following errors occurred while logging you in:" @@ -4812,7 +4842,7 @@ msgstr "" #: lms/templates/login.html msgid "Your email or password is incorrect" -msgstr "" +msgstr "Su correo electrónico o contraseña son incorrectos" #: lms/templates/login.html msgid "" @@ -4824,15 +4854,15 @@ msgstr "" #: lms/templates/login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html msgid "example: username@domain.com" -msgstr "" +msgstr "ejemplo: usuario@dominio.com" #: lms/templates/login.html msgid "Account Preferences" -msgstr "" +msgstr "Preferencias de la cuenta" #: lms/templates/login.html msgid "Remember me" -msgstr "" +msgstr "Recuérdame" #. Translators: this is the last choice of a number of choices of how to log #. in @@ -4849,10 +4879,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4862,6 +4906,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -4922,78 +4970,78 @@ msgstr "" #: lms/templates/module-error.html msgid "Raw data:" -msgstr "" +msgstr "Datos planos:" #: lms/templates/name_changes.html msgid "Accepted" -msgstr "" +msgstr "Aceptado" #: lms/templates/name_changes.html lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" -msgstr "" +msgstr "Error" #: lms/templates/name_changes.html msgid "Rejected" -msgstr "" +msgstr "Rechazado" #: lms/templates/name_changes.html msgid "Pending name changes" -msgstr "" +msgstr "Cambios de nombre pendientes" #: lms/templates/name_changes.html lms/templates/modal/accessible_confirm.html msgid "Confirm" -msgstr "" +msgstr "Confirmar" #: lms/templates/name_changes.html msgid "[Reject]" -msgstr "" +msgstr "[Rechazar]" #: lms/templates/navigation.html msgid "Global Navigation" -msgstr "" +msgstr "Navegación Global" #: lms/templates/navigation.html msgid "Find Courses" -msgstr "" +msgstr "Buscar Cursos" #: lms/templates/navigation.html msgid "Dashboard for:" -msgstr "" +msgstr "Panel de control para:" #: lms/templates/navigation.html msgid "More options dropdown" -msgstr "" +msgstr "Despliegue de más opciones" #: lms/templates/navigation.html msgid "Log Out" -msgstr "" +msgstr "Salir" #: lms/templates/navigation.html msgid "Shopping Cart" -msgstr "" +msgstr "Carrito de compras" #: lms/templates/navigation.html msgid "How it Works" -msgstr "" +msgstr "Como funciona" #: lms/templates/navigation.html lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html #: lms/templates/courseware/courses.html msgid "Courses" -msgstr "" +msgstr "Cursos" #: lms/templates/navigation.html msgid "Schools" -msgstr "" +msgstr "Instituciones" #: lms/templates/navigation.html lms/templates/navigation.html msgid "Register Now" -msgstr "" +msgstr "Regístrate Ahora" #: lms/templates/navigation.html lms/templates/navigation.html msgid "Log in" -msgstr "" +msgstr "Iniciar sesión" #: lms/templates/navigation.html msgid "" @@ -5005,11 +5053,11 @@ msgstr "" #: lms/templates/notes.html lms/templates/textannotation.html #: lms/templates/videoannotation.html msgid "You do not have any notes." -msgstr "" +msgstr "Usted no tiene ninguna anotación." #: lms/templates/problem.html msgid "Reset" -msgstr "" +msgstr "Reiniciar" #: lms/templates/problem.html msgid "Show Answer" @@ -5026,7 +5074,7 @@ msgstr "" #: lms/templates/provider_login.html #: lms/templates/university_profile/edge.html msgid "Log In" -msgstr "" +msgstr "Iniciar Sesión" #: lms/templates/provider_login.html msgid "" @@ -5037,7 +5085,7 @@ msgstr "" #: lms/templates/provider_login.html msgid "Return To %s" -msgstr "" +msgstr "Regresar a %s" #: lms/templates/register-shib.html msgid "Preferences for {platform_name}" @@ -5059,6 +5107,8 @@ msgstr "" msgid "" "We're sorry, {platform_name} enrollment is not available in your region" msgstr "" +"Lo sentimo, las inscripciones a {platform_name} no están disponibles en su " +"región" #: lms/templates/register-shib.html lms/templates/register.html msgid "The following errors occurred while processing your registration:" @@ -5072,12 +5122,12 @@ msgstr "" #: lms/templates/register-shib.html lms/templates/signup_modal.html msgid "Enter a public username:" -msgstr "" +msgstr "Introduce un identificador de usuario público:" #: lms/templates/register-shib.html lms/templates/register.html #: lms/templates/register.html msgid "example: JaneDoe" -msgstr "" +msgstr "ejemplo: JuanLanas" #: lms/templates/register-shib.html lms/templates/register.html #: lms/templates/register.html @@ -5086,7 +5136,7 @@ msgstr "" #: lms/templates/register-shib.html lms/templates/register.html msgid "Account Acknowledgements" -msgstr "" +msgstr "Reconocimientos de la Cuenta" #: lms/templates/register-shib.html lms/templates/register.html #: lms/templates/signup_modal.html @@ -5096,7 +5146,7 @@ msgstr "" #: lms/templates/register-shib.html lms/templates/register.html #: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" -msgstr "" +msgstr "Acepto el {link_start}Código de Honor{link_end}" #: lms/templates/register-shib.html msgid "Update My Account" @@ -5104,19 +5154,19 @@ msgstr "" #: lms/templates/register-sidebar.html msgid "Registration Help" -msgstr "" +msgstr "Ayuda sobre el proceso de registro" #: lms/templates/register-sidebar.html msgid "Already registered?" -msgstr "" +msgstr "¿Ya estás registrado?" #: lms/templates/register-sidebar.html msgid "Click here to log in." -msgstr "" +msgstr "Haz Clic aquí para iniciar sesión" #: lms/templates/register-sidebar.html msgid "Welcome to {platform_name}" -msgstr "" +msgstr "Bienvenido a la plataforma {platform_name}" #: lms/templates/register-sidebar.html msgid "" @@ -5127,7 +5177,7 @@ msgstr "" #: lms/templates/register-sidebar.html msgid "Next Steps" -msgstr "" +msgstr "Próximos pasos" #: lms/templates/register-sidebar.html msgid "" @@ -5147,11 +5197,13 @@ msgstr "" #: lms/templates/register-sidebar.html msgid "Need help in registering with {platform_name}?" -msgstr "" +msgstr "¿Necesitas ayuda para registrarse en {platform_name}?" #: lms/templates/register-sidebar.html msgid "View our FAQs for answers to commonly asked questions." msgstr "" +"Visita nuestra sección de Preguntas Frecuentes para encontrar las respuestas" +" a las cuestiones más comunes." #: lms/templates/register-sidebar.html msgid "" @@ -5161,7 +5213,7 @@ msgstr "" #: lms/templates/register.html msgid "Register for {platform_name}" -msgstr "" +msgstr "Registrarse en {platform_name}" #: lms/templates/register.html msgid "Create My {platform_name} Account" @@ -5197,7 +5249,7 @@ msgstr "" #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " -msgstr "" +msgstr "Por favor completa los siguientes campos para crear tu cuenta." #: lms/templates/register.html lms/templates/register.html msgid "cannot be changed later" @@ -5205,7 +5257,7 @@ msgstr "" #: lms/templates/register.html lms/templates/verify_student/face_upload.html msgid "example: Jane Doe" -msgstr "" +msgstr "ejemplo: Juan López" #: lms/templates/register.html lms/templates/register.html msgid "Needed for any certificates you may earn" @@ -5213,7 +5265,7 @@ msgstr "" #: lms/templates/register.html msgid "Welcome {username}" -msgstr "" +msgstr "Bienvenido(a) {username}" #: lms/templates/register.html msgid "Enter a Public Display Name:" @@ -5229,24 +5281,24 @@ msgstr "" #: lms/templates/register.html msgid "City" -msgstr "" +msgstr "Ciudad" #: lms/templates/register.html msgid "example: New York" -msgstr "" +msgstr "ejemplo: Nueva York" #: lms/templates/register.html msgid "Country" -msgstr "" +msgstr "País" #: lms/templates/register.html msgid "Highest Level of Education Completed" -msgstr "" +msgstr "Máximo nivel educativo completado" #: lms/templates/register.html #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "Year of Birth" -msgstr "" +msgstr "Año de nacimiento" #: lms/templates/register.html msgid "Please share with us your reasons for registering with {platform_name}" @@ -5254,11 +5306,11 @@ msgstr "" #: lms/templates/register.html lms/templates/university_profile/edge.html msgid "Register" -msgstr "" +msgstr "Registrarse" #: lms/templates/register.html lms/templates/signup_modal.html msgid "Create My Account" -msgstr "" +msgstr "Crear mi cuenta" #: lms/templates/resubscribe.html msgid "Re-subscribe Successful!" @@ -5273,16 +5325,16 @@ msgstr "" #: lms/templates/seq_module.html lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Previous" -msgstr "" +msgstr "Previo" #: lms/templates/seq_module.html lms/templates/seq_module.html msgid "Section Navigation" -msgstr "" +msgstr "Navegación de secciones" #: lms/templates/seq_module.html lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache msgid "Next" -msgstr "" +msgstr "Siguiente" #: lms/templates/signup_modal.html msgid "Sign Up for {platform_name}" @@ -5290,47 +5342,47 @@ msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" -msgstr "" +msgstr "Ej: nombre@dominio.com" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" -msgstr "" +msgstr "Ej: nombre (Así se mostrará en los Foros)" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" -msgstr "" +msgstr "Ej: Nombre (Así aparecerá en los certificados)" #: lms/templates/signup_modal.html msgid "Welcome {name}" -msgstr "" +msgstr "Bienvenido {name}" #: lms/templates/signup_modal.html msgid "Full Name *" -msgstr "" +msgstr "Nombre Completo *" #: lms/templates/signup_modal.html msgid "Ed. Completed" -msgstr "" +msgstr "Nivel educativo completado" #: lms/templates/signup_modal.html msgid "Year of birth" -msgstr "" +msgstr "Año de nacimiento" #: lms/templates/signup_modal.html msgid "Mailing address" -msgstr "" +msgstr "Dirección de correspondencia" #: lms/templates/signup_modal.html msgid "Goals in signing up for {platform_name}" -msgstr "" +msgstr "Objetivos al registrarse en {platform_name}" #: lms/templates/signup_modal.html msgid "Already have an account?" -msgstr "" +msgstr "¿Ya tienes una cuenta?" #: lms/templates/signup_modal.html msgid "Login." -msgstr "" +msgstr "Iniciar Sesión" #. Translators: The 'Group' here refers to the group of users that has been #. sorted into group_id @@ -5340,11 +5392,11 @@ msgstr "" #: lms/templates/staff_problem_info.html msgid "Staff Debug Info" -msgstr "" +msgstr "Información de depuración para los administradores" #: lms/templates/staff_problem_info.html msgid "Submission history" -msgstr "" +msgstr "Historial de envíos" #: lms/templates/staff_problem_info.html msgid "{platform_name} Content Quality Assessment" @@ -5352,15 +5404,15 @@ msgstr "" #: lms/templates/staff_problem_info.html msgid "Comment" -msgstr "" +msgstr "Comentario" #: lms/templates/staff_problem_info.html msgid "comment" -msgstr "" +msgstr "comentario" #: lms/templates/staff_problem_info.html msgid "Tag" -msgstr "" +msgstr "Etiqueta" #: lms/templates/staff_problem_info.html msgid "Optional tag (eg \"done\" or \"broken\"):" @@ -5368,45 +5420,45 @@ msgstr "" #: lms/templates/staff_problem_info.html msgid "tag" -msgstr "" +msgstr "etiqueta" #: lms/templates/staff_problem_info.html msgid "Add comment" -msgstr "" +msgstr "Añadir comentario" #: lms/templates/staff_problem_info.html msgid "Staff Debug" -msgstr "" +msgstr "Depuración de los administradores" #: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html msgid "Module Fields" -msgstr "" +msgstr "Campos de módulo" #: lms/templates/staff_problem_info.html msgid "XML attributes" -msgstr "" +msgstr "Atributos XML" #: lms/templates/staff_problem_info.html msgid "Submission History Viewer" -msgstr "" +msgstr "Visor del Historial de envíos" #: lms/templates/staff_problem_info.html msgid "User:" -msgstr "" +msgstr "Usuario:" #: lms/templates/staff_problem_info.html msgid "View History" -msgstr "" +msgstr "Ver el historial" #: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html #: lms/templates/staticbook.html msgid "{course_number} Textbook" -msgstr "" +msgstr "Libro de texto para {course_number}" #: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html #: lms/templates/staticbook.html msgid "Textbook Navigation" -msgstr "" +msgstr "Navegación del libro de texto" #: lms/templates/staticbook.html msgid "Previous page" @@ -5537,31 +5589,31 @@ msgstr "" #: lms/templates/textannotation.html msgid "Source:" -msgstr "" +msgstr "Fuente:" #: lms/templates/tracking_log.html msgid "Tracking Log" -msgstr "" +msgstr "Registro de seguimiento" #: lms/templates/tracking_log.html msgid "datetime" -msgstr "" +msgstr "fecha y hora" #: lms/templates/tracking_log.html msgid "ipaddr" -msgstr "" +msgstr "dirección IP" #: lms/templates/tracking_log.html msgid "source" -msgstr "" +msgstr "fuente" #: lms/templates/tracking_log.html msgid "type" -msgstr "" +msgstr "tipo" #: lms/templates/unsubscribe.html msgid "Unsubscribe Successful!" -msgstr "" +msgstr "¡Anulación de la suscripción realizada con éxito!" #: lms/templates/unsubscribe.html msgid "" @@ -5573,7 +5625,7 @@ msgstr "" #: lms/templates/using.html msgid "Using the system" -msgstr "" +msgstr "Usando el sistema" #: lms/templates/using.html msgid "" @@ -5609,7 +5661,7 @@ msgstr "" #: lms/templates/video.html msgid "Video position" -msgstr "" +msgstr "Posición del vídeo" #: lms/templates/video.html msgid "Play" @@ -5629,7 +5681,7 @@ msgstr "" #: lms/templates/video.html msgid "Fill browser" -msgstr "" +msgstr "Ajustar al navegador" #: lms/templates/video.html msgid "HD off" @@ -5637,7 +5689,7 @@ msgstr "" #: lms/templates/video.html lms/templates/video.html msgid "Turn off captions" -msgstr "" +msgstr "Desactivar subtítulos" #: lms/templates/video.html msgid "Skip to end of transcript." @@ -5655,27 +5707,23 @@ msgstr "" #: lms/templates/video.html msgid "Download video" -msgstr "" +msgstr "Descargar video" #: lms/templates/video.html lms/templates/video.html msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html msgid "Your words:" -msgstr "" +msgstr "Tus palabras:" #: lms/templates/word_cloud.html msgid "Total number of words:" -msgstr "" +msgstr "Número total de palabras:" #: lms/templates/combinedopenended/combined_open_ended.html msgid "Open Response" @@ -5696,7 +5744,7 @@ msgstr "" #: lms/templates/combinedopenended/combined_open_ended.html msgid "Next Step" -msgstr "" +msgstr "Siguiente Paso" #: lms/templates/combinedopenended/combined_open_ended.html msgid "" @@ -5709,7 +5757,7 @@ msgstr "" #: lms/templates/combinedopenended/combined_open_ended_legend.html msgid "Legend" -msgstr "" +msgstr "Leyenda" #: lms/templates/combinedopenended/combined_open_ended_results.html msgid "Submitted Rubric" @@ -5737,7 +5785,7 @@ msgstr "" #. graded openended problem #: lms/templates/combinedopenended/open_ended_result_table.html msgid "See full feedback" -msgstr "" +msgstr "Ver todos los comentarios" #. Translators: this text forms a link that, when #. clicked, allows a user to respond to the feedback @@ -5748,47 +5796,47 @@ msgstr "" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html msgid "Respond to Feedback" -msgstr "" +msgstr "Responder a los comentarios" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html msgid "How accurate do you find this feedback?" -msgstr "" +msgstr "¿Como de preciso le parece este comentario?" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html msgid "Correct" -msgstr "" +msgstr "Corregir" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html msgid "Partially Correct" -msgstr "" +msgstr "Parcialmente correcto" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html msgid "No Opinion" -msgstr "" +msgstr "No tengo una opinion" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html msgid "Partially Incorrect" -msgstr "" +msgstr "Parcialmente incorrecto" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html msgid "Incorrect" -msgstr "" +msgstr "Incorrecto" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html msgid "Additional comments:" -msgstr "" +msgstr "Comentarios adicionales:" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html msgid "Submit Feedback" -msgstr "" +msgstr "Enviar Comentario" #. Translators: "Response" labels an area that contains the user's #. Response to an openended problem. It is a noun. @@ -5798,15 +5846,15 @@ msgstr "" #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Response" -msgstr "" +msgstr "Respuesta" #: lms/templates/combinedopenended/openended/open_ended.html msgid "Unanswered" -msgstr "" +msgstr "Sin responder" #: lms/templates/combinedopenended/openended/open_ended.html msgid "Skip Post-Assessment" -msgstr "" +msgstr "Saltar la evaluación posterior" #: lms/templates/combinedopenended/openended/open_ended_combined_rubric.html msgid "{num} point: {explanatory_text}" @@ -5820,7 +5868,7 @@ msgstr "" #: lms/templates/combinedopenended/openended/open_ended_rubric.html msgid "Rubric" -msgstr "" +msgstr "Firma" #: lms/templates/combinedopenended/openended/open_ended_rubric.html msgid "" @@ -5836,23 +5884,23 @@ msgstr[1] "" #: lms/templates/combinedopenended/selfassessment/self_assessment_hint.html msgid "Please enter a hint below:" -msgstr "" +msgstr "Por favor ingrese una sugerencia a continuación:" #: lms/templates/course_groups/cohort_management.html msgid "Cohort groups" -msgstr "" +msgstr "Grupos de cohorte" #: lms/templates/course_groups/cohort_management.html msgid "Show cohorts" -msgstr "" +msgstr "Mostrar cohortes" #: lms/templates/course_groups/cohort_management.html msgid "Cohorts in the course" -msgstr "" +msgstr "Cohortes en el curso" #: lms/templates/course_groups/cohort_management.html msgid "Add cohort" -msgstr "" +msgstr "Adicionar Cohorte" #: lms/templates/course_groups/cohort_management.html msgid "Add users by username or email. One per line or comma-separated." @@ -5860,7 +5908,7 @@ msgstr "" #: lms/templates/course_groups/cohort_management.html msgid "Add cohort members" -msgstr "" +msgstr "Adicionar miembros a la cohorte" #: lms/templates/courseware/accordion.html msgid "{chapter}, current chapter" @@ -5889,7 +5937,7 @@ msgstr "" #: lms/templates/courseware/course_about.html msgid "View Courseware" -msgstr "" +msgstr "Ver contenido del curso" #: lms/templates/courseware/course_about.html msgid "This course is in your cart." @@ -5910,7 +5958,7 @@ msgstr "" #: lms/templates/courseware/course_about.html msgid "Overview" -msgstr "" +msgstr "Visión general" #: lms/templates/courseware/course_about.html msgid "Share with friends and family!" @@ -5932,23 +5980,23 @@ msgstr "" #: lms/templates/courseware/course_about.html msgid "Classes Start" -msgstr "" +msgstr "Inicio de las clases" #: lms/templates/courseware/course_about.html msgid "Classes End" -msgstr "" +msgstr "Fin de las clases" #: lms/templates/courseware/course_about.html msgid "Estimated Effort" -msgstr "" +msgstr "Esfuerzo estimado" #: lms/templates/courseware/course_about.html msgid "Prerequisites" -msgstr "" +msgstr "Prerequisitos" #: lms/templates/courseware/course_about.html msgid "Additional Resources" -msgstr "" +msgstr "Recursos Adicionales" #. Translators: 'needs attention' is an alternative string for the #. notification image that indicates the tab "needs attention". @@ -5959,7 +6007,7 @@ msgstr "" #: lms/templates/courseware/course_navigation.html #: lms/templates/courseware/course_navigation.html msgid "Staff view" -msgstr "" +msgstr "Vista de Administrador" #: lms/templates/courseware/course_navigation.html msgid "Student view" @@ -5982,19 +6030,19 @@ msgstr "" #: lms/templates/courseware/courseware.html msgid "{course_number} Courseware" -msgstr "" +msgstr "Material del curso {course_number}" #: lms/templates/courseware/courseware.html msgid "Return to Exam" -msgstr "" +msgstr "Volver al Examen" #: lms/templates/courseware/courseware.html msgid "Course Navigation" -msgstr "" +msgstr "Navegación del curso" #: lms/templates/courseware/courseware.html msgid "Open Calculator" -msgstr "" +msgstr "Abrir Calculadora" #: lms/templates/courseware/courseware.html msgid "Calculator Input Field" @@ -6008,7 +6056,7 @@ msgstr "" #: lms/templates/courseware/courseware.html msgid "Hints" -msgstr "" +msgstr "Consejos" #: lms/templates/courseware/courseware.html msgid "Integers" @@ -6044,7 +6092,7 @@ msgstr "" #: lms/templates/courseware/courseware.html msgid "Constants" -msgstr "" +msgstr "Constantes" #: lms/templates/courseware/courseware.html msgid "Euler's number" @@ -6088,16 +6136,16 @@ msgstr "" #: lms/templates/courseware/grade_summary.html #: lms/templates/courseware/instructor_dashboard.html msgid "Grade summary" -msgstr "" +msgstr "Resumen de calificaciones" #: lms/templates/courseware/grade_summary.html msgid "Not implemented yet" -msgstr "" +msgstr "No implementado todavía" #: lms/templates/courseware/gradebook.html #: lms/templates/courseware/instructor_dashboard.html msgid "Gradebook" -msgstr "" +msgstr "Libro de Calificaciones" #: lms/templates/courseware/gradebook.html msgid "Search students" @@ -6113,22 +6161,22 @@ msgstr "" #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" -msgstr "" +msgstr "Novedades y noticias del curso" #: lms/templates/courseware/info.html msgid "Handout Navigation" -msgstr "" +msgstr "Navegación de apuntes" #: lms/templates/courseware/info.html msgid "Course Handouts" -msgstr "" +msgstr "Apuntes del curso" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Instructor Dashboard" -msgstr "" +msgstr "Panel de control del instructor" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html @@ -6141,23 +6189,23 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html msgid "Psychometrics" -msgstr "" +msgstr "Psicometría" #: lms/templates/courseware/instructor_dashboard.html msgid "Forum Admin" -msgstr "" +msgstr "Administración del Foro" #: lms/templates/courseware/instructor_dashboard.html msgid "Enrollment" -msgstr "" +msgstr "Inscripciones" #: lms/templates/courseware/instructor_dashboard.html msgid "DataDump" -msgstr "" +msgstr "Volcado de Datos" #: lms/templates/courseware/instructor_dashboard.html msgid "Manage Groups" -msgstr "" +msgstr "Administrar grupos" #: lms/templates/courseware/instructor_dashboard.html msgid "Metrics" @@ -6189,23 +6237,23 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html msgid "Gradebook name:" -msgstr "" +msgstr "Nombre del libro de calificaciones:" #: lms/templates/courseware/instructor_dashboard.html msgid "Assignment name:" -msgstr "" +msgstr "Nombre de la tarea:" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Course-specific grade adjustment" -msgstr "" +msgstr "Ajustes de calificaciones específicos al curso" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Specify a particular problem in the course here by its url:" -msgstr "" +msgstr "Especifique aquí un problema particular del curso a través de su URL:" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html @@ -6221,7 +6269,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html msgid "Then select an action:" -msgstr "" +msgstr "Luego seleccione una acción:" #: lms/templates/courseware/instructor_dashboard.html msgid "" @@ -6306,7 +6354,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section:" -msgstr "" +msgstr "Sección:" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -6321,15 +6369,15 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html msgid "Notify students by email" -msgstr "" +msgstr "Notificar a los estudiantes por correo electrónico" #: lms/templates/courseware/instructor_dashboard.html msgid "Auto-enroll students when they activate" -msgstr "" +msgstr "Auto-inscribir a los estudiantes cuando se activen" #: lms/templates/courseware/instructor_dashboard.html msgid "Problem urlname:" -msgstr "" +msgstr "urlname del problema:" #. Translators: days_early_for_beta should not be translated #: lms/templates/courseware/instructor_dashboard.html @@ -6423,19 +6471,19 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html msgid "Students active in the last week:" -msgstr "" +msgstr "Estudiantes activos la última semana:" #: lms/templates/courseware/instructor_dashboard.html msgid "Student activity day by day" -msgstr "" +msgstr "Actividad de los estudiantes día a día" #: lms/templates/courseware/instructor_dashboard.html msgid "Day" -msgstr "" +msgstr "Día" #: lms/templates/courseware/instructor_dashboard.html msgid "Students" -msgstr "" +msgstr "Estudiantes" #: lms/templates/courseware/instructor_dashboard.html msgid "Score distribution for problems" @@ -6445,15 +6493,15 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "Problem" -msgstr "" +msgstr "Problema" #: lms/templates/courseware/instructor_dashboard.html msgid "Max" -msgstr "" +msgstr "Máx" #: lms/templates/courseware/instructor_dashboard.html msgid "Points Earned (Num Students)" -msgstr "" +msgstr "Puntos obtenidos (Núm de Estudiantes)" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -6483,11 +6531,11 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html msgid "Students answering correctly" -msgstr "" +msgstr "Estudiantes que respondieron correctamente" #: lms/templates/courseware/instructor_dashboard.html msgid "Number of students" -msgstr "" +msgstr "Número de estudiantes" #: lms/templates/courseware/instructor_dashboard.html msgid "" @@ -6505,52 +6553,52 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html msgid "Task Type" -msgstr "" +msgstr "Tipo de Tarea" #: lms/templates/courseware/instructor_dashboard.html msgid "Task inputs" -msgstr "" +msgstr "Valores de entrada para la Tarea" #: lms/templates/courseware/instructor_dashboard.html msgid "Task Id" -msgstr "" +msgstr "Id de la Tarea" #: lms/templates/courseware/instructor_dashboard.html msgid "Requester" -msgstr "" +msgstr "Solicitante" #: lms/templates/courseware/instructor_dashboard.html msgid "Task State" -msgstr "" +msgstr "Estado de la Tarea" #: lms/templates/courseware/instructor_dashboard.html msgid "Duration (sec)" -msgstr "" +msgstr "Duración (sec)" #: lms/templates/courseware/instructor_dashboard.html msgid "Task Progress" -msgstr "" +msgstr "Progreso de la Tarea" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html msgid "unknown" -msgstr "" +msgstr "desconocido" #: lms/templates/courseware/instructor_dashboard.html msgid "Course errors" -msgstr "" +msgstr "Errores del curso" #: lms/templates/courseware/mktg_coming_soon.html msgid "About {course_id}" -msgstr "" +msgstr "Acerca de {course_id}" #: lms/templates/courseware/mktg_coming_soon.html msgid "Coming Soon" -msgstr "" +msgstr "Próximamente" #: lms/templates/courseware/mktg_course_about.html msgid "About {course_number}" -msgstr "" +msgstr "Acerca de {course_number}" #: lms/templates/courseware/mktg_course_about.html msgid "Access Courseware" @@ -6558,19 +6606,19 @@ msgstr "" #: lms/templates/courseware/mktg_course_about.html msgid "You Are Registered" -msgstr "" +msgstr "Te has registrado" #: lms/templates/courseware/mktg_course_about.html msgid "Register for" -msgstr "" +msgstr "Registrarse para" #: lms/templates/courseware/mktg_course_about.html msgid "Registration Is Closed" -msgstr "" +msgstr "El registro está cerrado" #: lms/templates/courseware/news.html msgid "News - MITx 6.002x" -msgstr "" +msgstr "Noticias - MITx 6.002x" #: lms/templates/courseware/news.html msgid "Updates to Discussion Posts You Follow" @@ -6582,7 +6630,7 @@ msgstr "" #: lms/templates/courseware/progress.html msgid "Course Progress" -msgstr "" +msgstr "Progeso del Curso" #: lms/templates/courseware/progress.html msgid "View Grading in studio" @@ -6594,7 +6642,7 @@ msgstr "" #: lms/templates/courseware/progress.html msgid "Download your certificate" -msgstr "" +msgstr "Descargue su certificado" #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" @@ -6610,7 +6658,7 @@ msgstr "" #: lms/templates/courseware/progress.html msgid "No problem scores in this section" -msgstr "" +msgstr "No hay puntuación de problemas en esta sección" #: lms/templates/courseware/syllabus.html msgid "{course.display_number_with_default} Course Info" @@ -6719,7 +6767,7 @@ msgstr "Curso Iniciado - {start_date}" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Course has not yet started" -msgstr "" +msgstr "El curso todavía no ha comenzado" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Course Starts - {start_date}" @@ -6821,27 +6869,27 @@ msgstr "" #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Dismiss" -msgstr "" +msgstr "Descartar" #: lms/templates/dashboard/_dashboard_reverification_sidebar.html msgid "Re-verification now open for:" -msgstr "" +msgstr "Re-verificación abierta para:" #: lms/templates/dashboard/_dashboard_reverification_sidebar.html msgid "Re-verify now:" -msgstr "" +msgstr "Re-verificar ahora:" #: lms/templates/dashboard/_dashboard_reverification_sidebar.html msgid "Pending:" -msgstr "" +msgstr "Pendientes:" #: lms/templates/dashboard/_dashboard_reverification_sidebar.html msgid "Denied:" -msgstr "" +msgstr "Denegadas:" #: lms/templates/dashboard/_dashboard_reverification_sidebar.html msgid "Approved:" -msgstr "" +msgstr "Aprobadas:" #: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html @@ -6874,7 +6922,7 @@ msgstr "" #: lms/templates/debug/run_python_form.html msgid "Results:" -msgstr "" +msgstr "Resultados:" #: lms/templates/discussion/_blank_slate.html msgid "" @@ -6889,7 +6937,7 @@ msgstr "" #: lms/templates/discussion/_discussion_course_navigation.html #: lms/templates/discussion/_discussion_module.html msgid "New Post" -msgstr "" +msgstr " Nueva Entrada" #: lms/templates/discussion/_discussion_module.html msgid "Show Discussion" @@ -6911,36 +6959,36 @@ msgstr "" #: lms/templates/discussion/_new_post.html #: lms/templates/discussion/_thread_list_template.html msgid "Show All Discussions" -msgstr "" +msgstr "Mostrar todas las conversaciones" #: lms/templates/discussion/_filter_dropdown.html msgid "Show Flagged Discussions" -msgstr "" +msgstr "Mostrar conversaciones marcadas" #: lms/templates/discussion/_filter_dropdown.html msgid "Posts I'm Following" -msgstr "" +msgstr "Entradas que estoy siguiendo" #: lms/templates/discussion/_inline_new_post.html #: lms/templates/discussion/_new_post.html #: lms/templates/discussion/mustache/_inline_discussion.mustache #: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache msgid "follow this post" -msgstr "" +msgstr "seguir esta entrada" #: lms/templates/discussion/_inline_new_post.html #: lms/templates/discussion/_new_post.html #: lms/templates/discussion/mustache/_inline_discussion.mustache #: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache msgid "post anonymously" -msgstr "" +msgstr "publicar anónimamente" #: lms/templates/discussion/_inline_new_post.html #: lms/templates/discussion/_new_post.html #: lms/templates/discussion/mustache/_inline_discussion.mustache #: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache msgid "post anonymously to classmates" -msgstr "" +msgstr "publicar anónimamente a mis compañeros de curso" #. Translators: This labels the selector for which group of students can view #. a @@ -6949,11 +6997,11 @@ msgstr "" #: lms/templates/discussion/_new_post.html #: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache msgid "Make visible to:" -msgstr "" +msgstr "Hacer visible a:" #: lms/templates/discussion/_inline_new_post.html msgid "My Cohort" -msgstr "" +msgstr "Mi cohorte" #: lms/templates/discussion/_inline_new_post.html #: lms/templates/discussion/_new_post.html @@ -6976,11 +7024,11 @@ msgstr "" #: lms/templates/discussion/mustache/_inline_discussion.mustache #: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache msgid "Add post" -msgstr "" +msgstr "Añadir entrada" #: lms/templates/discussion/_new_post.html msgid "Create new post about:" -msgstr "" +msgstr "Crear nueva entrada acerca de:" #: lms/templates/discussion/_new_post.html msgid "Filter List" @@ -6992,15 +7040,15 @@ msgstr "" #: lms/templates/discussion/_recent_active_posts.html msgid "Following" -msgstr "" +msgstr "Siguiendo" #: lms/templates/discussion/_search_bar.html msgid "Search posts" -msgstr "" +msgstr "Buscar entradas" #: lms/templates/discussion/_similar_posts.html msgid "Hide" -msgstr "" +msgstr "Ocultar" #: lms/templates/discussion/_thread_list_template.html msgid "Discussion Home" @@ -7020,49 +7068,49 @@ msgstr "" #: lms/templates/discussion/_thread_list_template.html msgid "Sort by:" -msgstr "" +msgstr "Ordenar por:" #: lms/templates/discussion/_thread_list_template.html msgid "date" -msgstr "" +msgstr "fecha" #: lms/templates/discussion/_thread_list_template.html msgid "votes" -msgstr "" +msgstr "votos" #: lms/templates/discussion/_thread_list_template.html msgid "comments" -msgstr "" +msgstr "comentarios" #: lms/templates/discussion/_thread_list_template.html msgid "Show:" -msgstr "" +msgstr "Mostrar:" #: lms/templates/discussion/_thread_list_template.html msgid "View All" -msgstr "" +msgstr "Ver Todos" #: lms/templates/discussion/_thread_list_template.html msgid "View as {name}" -msgstr "" +msgstr "Ver como {name}" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache msgid "Add A Response" -msgstr "" +msgstr "Añadir una Respuesta" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache #: lms/templates/discussion/mustache/_profile_thread.mustache msgid "This thread is closed." -msgstr "" +msgstr "Esta conversación está cerrada." #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache msgid "Post a response:" -msgstr "" +msgstr "Publicar una respuesta:" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html @@ -7070,15 +7118,15 @@ msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache #: lms/templates/discussion/mustache/_profile_thread.mustache msgid "anonymous" -msgstr "" +msgstr "anónimo" #: lms/templates/discussion/_underscore_templates.html msgid "• This thread is closed." -msgstr "" +msgstr "• Esta conversación está cerrada." #: lms/templates/discussion/_underscore_templates.html msgid "follow" -msgstr "" +msgstr "seguir" #: lms/templates/discussion/_underscore_templates.html msgid "Follow this post" @@ -7089,16 +7137,16 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Report Misuse" -msgstr "" +msgstr "Reportar un abuso" #: lms/templates/discussion/_underscore_templates.html msgid "Pin Thread" -msgstr "" +msgstr "Marcar conversación" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache msgid "Pinned" -msgstr "" +msgstr "Promocionado" #: lms/templates/discussion/_underscore_templates.html msgid "(this post is about %(courseware_title_linked)s)" @@ -7106,7 +7154,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html msgid "Editing post" -msgstr "" +msgstr "Editando entrada" #: lms/templates/discussion/_underscore_templates.html msgid "Edit post title" @@ -7114,7 +7162,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html msgid "Update post" -msgstr "" +msgstr "Actualizar entrada" #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" @@ -7126,15 +7174,15 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html msgid "endorse" -msgstr "" +msgstr "respaldar" #: lms/templates/discussion/_underscore_templates.html msgid "Editing response" -msgstr "" +msgstr "Editando respuesta" #: lms/templates/discussion/_underscore_templates.html msgid "Update response" -msgstr "" +msgstr "Actualizar respuesta" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html @@ -7169,11 +7217,11 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html msgid "DISCUSSION HOME:" -msgstr "" +msgstr "PÁGINA DE INICIO DE LOS FOROS:" #: lms/templates/discussion/_underscore_templates.html msgid "HOW TO USE EDX DISCUSSIONS" -msgstr "" +msgstr "CÓMO USAR LOS FOROS DE EDX" #: lms/templates/discussion/_underscore_templates.html msgid "Find discussions" @@ -7185,7 +7233,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html msgid "Search for specific posts " -msgstr "" +msgstr "Busca hilos específicos" #: lms/templates/discussion/_underscore_templates.html msgid "Sort by date, vote, or comments" @@ -7240,21 +7288,23 @@ msgstr[1] "" #: lms/templates/discussion/index.html #: lms/templates/discussion/user_profile.html msgid "Discussion - {course_number}" -msgstr "" +msgstr "Discusión - {course_number}" #: lms/templates/discussion/maintenance.html msgid "We're sorry" -msgstr "" +msgstr "Lo sentimos" #: lms/templates/discussion/maintenance.html msgid "" "The forums are currently undergoing maintenance. We'll have them back up " "shortly!" msgstr "" +"Los foros están en proceso de mantenimiento. Estarán nuevamente en línea " +"pronto!" #: lms/templates/discussion/user_profile.html msgid "User Profile" -msgstr "" +msgstr "Perfil de Usuario" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache @@ -7273,7 +7323,7 @@ msgstr "" #: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" -msgstr "" +msgstr "..." #: lms/templates/discussion/mustache/_profile_thread.mustache msgid "View discussion" @@ -7281,7 +7331,7 @@ msgstr "" #: lms/templates/discussion/mustache/_user_profile.mustache msgid "Active Threads" -msgstr "" +msgstr "Hilos Activos" #: lms/templates/emails/activation_email.txt msgid "" @@ -7379,7 +7429,7 @@ msgstr "" #: lms/templates/emails/enroll_email_allowedmessage.txt msgid "Dear student," -msgstr "" +msgstr "Estimado estudiante," #: lms/templates/emails/enroll_email_allowedmessage.txt msgid "" @@ -7440,7 +7490,7 @@ msgstr "" #: lms/templates/emails/order_confirmation_email.txt msgid "Hi {name}" -msgstr "" +msgstr "Hola {name}" #: lms/templates/emails/order_confirmation_email.txt msgid "" @@ -7542,7 +7592,7 @@ msgstr "" #: lms/templates/instructor/staff_grading.html msgid "{course_number} Staff Grading" -msgstr "" +msgstr "Calificación del Personal de soporte para el curso {course_number}" #: lms/templates/instructor/staff_grading.html msgid "" @@ -7557,7 +7607,7 @@ msgstr "" #: lms/templates/instructor/staff_grading.html msgid "Problem List" -msgstr "" +msgstr "Lista de problemas" #: lms/templates/instructor/staff_grading.html msgid "" @@ -7570,11 +7620,11 @@ msgstr "" #: lms/templates/instructor/staff_grading.html msgid "Prompt" -msgstr "" +msgstr "Prompt" #: lms/templates/instructor/staff_grading.html msgid "(Hide)" -msgstr "" +msgstr "(Ocultar)" #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html @@ -7596,7 +7646,7 @@ msgstr "" #: lms/templates/instructor/staff_grading.html msgid "Skip" -msgstr "" +msgstr "Omitir" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "Score Distribution" @@ -8018,7 +8068,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add Discussion Admin" -msgstr "" +msgstr "Añade un administrador de debates" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Discussion Moderators" @@ -8050,7 +8100,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add Community TA" -msgstr "" +msgstr "Añadir Profesores asistentes comunitarios TA" #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Reload Graphs" @@ -8075,11 +8125,11 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade" -msgstr "" +msgstr "Nota" #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Percent" -msgstr "" +msgstr "Por ciento" #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html @@ -8088,7 +8138,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Message:" -msgstr "" +msgstr "Mensaje:" #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "" @@ -8179,7 +8229,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Show Background Task History for Student" -msgstr "" +msgstr "Mostrar Antecedentes Historia Tarea para Estudiante" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Then select an action" @@ -8187,11 +8237,11 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Reset ALL students' attempts" -msgstr "" +msgstr "Reiniciar TODOS los intentos de los estudiantes" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Rescore ALL students' problem submissions" -msgstr "" +msgstr "Repuntuar TODOS los envíos de problemas de los estudiantes" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" @@ -8206,7 +8256,7 @@ msgstr "" #: lms/templates/licenses/serial_numbers.html msgid "None Available" -msgstr "" +msgstr "No hay ninguno disponible" #: lms/templates/modal/_modal-settings-language.html msgid "Change Preferred Language" @@ -8264,15 +8314,15 @@ msgstr "" #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "No flagged problems exist." -msgstr "" +msgstr "No existen problemas marcados." #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Unflag" -msgstr "" +msgstr "Desmarcar" #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Ban" -msgstr "" +msgstr "Prohibir" #: lms/templates/open_ended_problems/open_ended_problems.html msgid "{course_number} Open Ended Problems" @@ -8280,7 +8330,7 @@ msgstr "" #: lms/templates/open_ended_problems/open_ended_problems.html msgid "Open Ended Problems" -msgstr "" +msgstr "Abrir problemas finalizados" #: lms/templates/open_ended_problems/open_ended_problems.html msgid "Here is a list of open ended problems for this course." @@ -8293,11 +8343,11 @@ msgstr "" #: lms/templates/open_ended_problems/open_ended_problems.html #: lms/templates/peer_grading/peer_grading.html msgid "Problem Name" -msgstr "" +msgstr "Nombre del problema" #: lms/templates/open_ended_problems/open_ended_problems.html msgid "Grader Type" -msgstr "" +msgstr "Tipo de calificador" #: lms/templates/peer_grading/peer_grading.html msgid "" @@ -8316,7 +8366,7 @@ msgstr "" #: lms/templates/peer_grading/peer_grading_closed.html #: lms/templates/peer_grading/peer_grading_problem.html msgid "Peer Grading" -msgstr "" +msgstr "Calificación de pares" #: lms/templates/peer_grading/peer_grading.html msgid "" @@ -8329,19 +8379,19 @@ msgstr "" #: lms/templates/peer_grading/peer_grading.html msgid "Graded" -msgstr "" +msgstr "Calificado" #: lms/templates/peer_grading/peer_grading.html msgid "Available" -msgstr "" +msgstr "Disponible" #: lms/templates/peer_grading/peer_grading.html msgid "Required" -msgstr "" +msgstr "Requerido" #: lms/templates/peer_grading/peer_grading.html msgid "No due date" -msgstr "" +msgstr "Sin fecha de entrega" #: lms/templates/peer_grading/peer_grading_closed.html msgid "" @@ -8369,15 +8419,15 @@ msgstr "" #: lms/templates/peer_grading/peer_grading_problem.html msgid "How did I do?" -msgstr "" +msgstr "¿Como estuve?" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Continue" -msgstr "" +msgstr "Continuar" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Ready to grade!" -msgstr "" +msgstr "Listo para calificar!" #: lms/templates/peer_grading/peer_grading_problem.html msgid "" @@ -8387,11 +8437,11 @@ msgstr "" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Start Grading!" -msgstr "" +msgstr "Comenzar a calificar!" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Learning to grade" -msgstr "" +msgstr "Aprendiendo a calificar" #: lms/templates/peer_grading/peer_grading_problem.html msgid "You have not yet finished learning to grade this problem." @@ -8411,7 +8461,7 @@ msgstr "" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Start learning to grade" -msgstr "" +msgstr "Comenzar a aprender a calificar" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Are you sure that you want to flag this submission?" @@ -8427,19 +8477,19 @@ msgstr "" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Remove Flag" -msgstr "" +msgstr "Eliminar la marca" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Keep Flag" -msgstr "" +msgstr "Mantener la marca" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Go Back" -msgstr "" +msgstr "Volver Atrás" #: lms/templates/registration/activate_account_notice.html msgid "Thanks For Registering!" -msgstr "" +msgstr "Gracias por Registrarse!" #: lms/templates/registration/activate_account_notice.html msgid "" @@ -8480,7 +8530,7 @@ msgstr "También puede volver a la {link_start}página de inicio{link_end}." #: lms/templates/registration/password_reset_done.html msgid "Password reset successful" -msgstr "" +msgstr "La contraseña fue restablecida con éxito" #: lms/templates/registration/password_reset_done.html msgid "" @@ -8560,7 +8610,7 @@ msgstr "" #: lms/templates/shoppingcart/receipt.html msgid "Thank you for your Purchase!" -msgstr "" +msgstr "¡Gracias por su compra!" #: lms/templates/shoppingcart/receipt.html msgid "" @@ -8911,7 +8961,7 @@ msgstr "" #: lms/templates/verify_student/_verification_header.html msgid "You are re-verifying for" -msgstr "" +msgstr "Estás re-verificando tu identidad para" #: lms/templates/verify_student/_verification_header.html msgid "You are registering for" @@ -8923,7 +8973,7 @@ msgstr "" #: lms/templates/verify_student/_verification_header.html msgid "Re-verifying for:" -msgstr "" +msgstr "Re-verificando tu identidad para:" #: lms/templates/verify_student/_verification_header.html msgid "Registering as: " @@ -8964,7 +9014,7 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html msgid "Re-Verify" -msgstr "" +msgstr "Re-Verificando" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9172,7 +9222,7 @@ msgstr "" #: lms/templates/verify_student/midcourse_photo_reverification.html msgid "Submit photos & re-verify" -msgstr "" +msgstr "Enviar fotos y re-verificar" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/reverification_confirmation.html @@ -9205,11 +9255,11 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" -msgstr "" +msgstr "Volver al punto donde lo dejaste" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Reverification Status" -msgstr "" +msgstr "Estado de la re-verificación de identidad" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "You are in the ID Verified track" @@ -9241,7 +9291,7 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Failed" -msgstr "" +msgstr "Falló" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Don't want to re-verify right now?" @@ -9722,7 +9772,7 @@ msgstr "" #: lms/templates/wiki/includes/article_menu.html msgid "Changes" -msgstr "" +msgstr "Cambios" #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}active{span_end}" @@ -9730,7 +9780,7 @@ msgstr "" #: lms/templates/wiki/includes/breadcrumbs.html msgid "Add article" -msgstr "" +msgstr "Añadir artículo" #: cms/templates/404.html msgid "The page that you were looking for was not found." diff --git a/conf/locale/es_ES/LC_MESSAGES/djangojs.mo b/conf/locale/es_ES/LC_MESSAGES/djangojs.mo index 4c165a672f..b7cde5e01b 100644 Binary files a/conf/locale/es_ES/LC_MESSAGES/djangojs.mo and b/conf/locale/es_ES/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/es_ES/LC_MESSAGES/djangojs.po b/conf/locale/es_ES/LC_MESSAGES/djangojs.po index f927bf0075..d9804d60f2 100644 --- a/conf/locale/es_ES/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_ES/LC_MESSAGES/djangojs.po @@ -31,7 +31,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-26 10:59+0000\n" "Last-Translator: spentamanyu \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/edx-platform/language/es_ES/)\n" @@ -554,6 +554,8 @@ msgstr "¿Está seguro de querer borrar esta entrada?" #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js msgid "We had some trouble loading the page you requested. Please try again." msgstr "" +"Tenemos algunos problemas cargando la página que solicitó. Por favor, " +"inténtelo de nuevo." #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" diff --git a/conf/locale/es_MX/LC_MESSAGES/django.mo b/conf/locale/es_MX/LC_MESSAGES/django.mo index 4b0d1c5f64..33e118e434 100644 Binary files a/conf/locale/es_MX/LC_MESSAGES/django.mo and b/conf/locale/es_MX/LC_MESSAGES/django.mo differ diff --git a/conf/locale/es_MX/LC_MESSAGES/django.po b/conf/locale/es_MX/LC_MESSAGES/django.po index 0f1dc4d87d..11dc24d723 100644 --- a/conf/locale/es_MX/LC_MESSAGES/django.po +++ b/conf/locale/es_MX/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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-03-28 00:00+0000\n" "Last-Translator: preteric\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/edx-platform/language/es_MX/)\n" @@ -179,6 +179,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -189,6 +199,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -315,7 +332,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -327,6 +344,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -775,7 +808,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -796,6 +829,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -808,6 +845,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -902,6 +961,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -934,11 +997,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -988,6 +1069,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1272,10 +1365,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1703,10 +1810,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1749,6 +1860,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2036,7 +2156,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2263,37 +2383,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2393,6 +2482,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3085,6 +3178,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3151,6 +3245,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3692,35 +3787,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3738,6 +3809,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3762,23 +3846,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3819,14 +3921,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 "" @@ -4034,12 +4128,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4050,12 +4143,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4096,11 +4188,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4209,6 +4337,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4264,18 +4396,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4383,14 +4503,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4433,7 +4549,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4660,10 +4777,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4673,6 +4819,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4716,15 +4870,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4776,6 +4930,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4833,8 +4991,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4891,10 +5050,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4975,6 +5136,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5065,33 +5246,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5100,6 +5265,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5116,14 +5285,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5163,7 +5324,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5208,43 +5369,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5493,8 +5622,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5732,6 +5861,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5740,6 +5873,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5783,17 +5930,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5923,6 +6064,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5943,12 +6088,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6283,12 +6428,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6402,10 +6541,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6578,6 +6725,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6696,6 +6850,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7058,24 +7216,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7087,6 +7235,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7126,10 +7282,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7210,6 +7375,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7220,10 +7389,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7647,7 +7812,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7658,9 +7824,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7678,6 +7845,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7699,7 +7870,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7708,6 +7879,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7839,6 +8020,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8070,6 +8272,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8306,6 +8514,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8545,20 +8763,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8568,7 +8784,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8939,6 +9155,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8979,13 +9197,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9674,19 +9886,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9700,23 +9909,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9751,6 +9977,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11385,6 +11618,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11473,15 +11710,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/es_MX/LC_MESSAGES/djangojs.mo b/conf/locale/es_MX/LC_MESSAGES/djangojs.mo index 1f7146130c..5c5bedb351 100644 Binary files a/conf/locale/es_MX/LC_MESSAGES/djangojs.mo and b/conf/locale/es_MX/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/es_MX/LC_MESSAGES/djangojs.po b/conf/locale/es_MX/LC_MESSAGES/djangojs.po index 47dca25058..3e034ebe15 100644 --- a/conf/locale/es_MX/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_MX/LC_MESSAGES/djangojs.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-27 23:21+0000\n" -"Last-Translator: preteric\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:20+0000\n" +"Last-Translator: sarina \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/edx-platform/language/es_MX/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,6 +30,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -38,6 +39,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -337,6 +340,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -393,16 +398,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -464,6 +467,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -500,6 +508,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -878,9 +890,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -888,7 +901,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1222,15 +1235,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1340,18 +1354,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1367,6 +1376,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1374,19 +1384,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1533,6 +1543,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1548,6 +1562,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1609,6 +1627,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1638,6 +1660,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1662,3 +1704,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/es_PE/LC_MESSAGES/django.mo b/conf/locale/es_PE/LC_MESSAGES/django.mo index 8bcd183e85..8622e17680 100644 Binary files a/conf/locale/es_PE/LC_MESSAGES/django.mo and b/conf/locale/es_PE/LC_MESSAGES/django.mo differ diff --git a/conf/locale/es_PE/LC_MESSAGES/django.po b/conf/locale/es_PE/LC_MESSAGES/django.po index b5deb715a9..f1c1f5533d 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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -171,6 +171,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -181,6 +191,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -307,7 +324,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -319,6 +336,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -767,7 +800,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -788,6 +821,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -800,6 +837,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -894,6 +953,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -926,11 +989,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -980,6 +1061,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1264,10 +1357,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1695,10 +1802,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1741,6 +1852,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2028,7 +2148,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2255,37 +2375,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2385,6 +2474,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3077,6 +3170,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3143,6 +3237,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3684,35 +3779,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3730,6 +3801,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3754,23 +3838,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3811,14 +3913,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 "" @@ -4026,12 +4120,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4042,12 +4135,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4088,11 +4180,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4201,6 +4329,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4256,18 +4388,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4375,14 +4495,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4425,7 +4541,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4652,10 +4769,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4665,6 +4811,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4708,15 +4862,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4768,6 +4922,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4825,8 +4983,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4883,10 +5042,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4967,6 +5128,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5057,33 +5238,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5092,6 +5257,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5108,14 +5277,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5155,7 +5316,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5200,43 +5361,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5485,8 +5614,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5724,6 +5853,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5732,6 +5865,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5775,17 +5922,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5915,6 +6056,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5935,12 +6080,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6275,12 +6420,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6394,10 +6533,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6570,6 +6717,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6688,6 +6842,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7050,24 +7208,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7079,6 +7227,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7118,10 +7274,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7202,6 +7367,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7212,10 +7381,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7639,7 +7804,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7650,9 +7816,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7670,6 +7837,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7691,7 +7862,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7700,6 +7871,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7831,6 +8012,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8062,6 +8264,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8298,6 +8506,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8537,20 +8755,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8560,7 +8776,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8931,6 +9147,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8971,13 +9189,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9666,19 +9878,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9692,23 +9901,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9743,6 +9969,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11377,6 +11610,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11465,15 +11702,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/es_PE/LC_MESSAGES/djangojs.mo b/conf/locale/es_PE/LC_MESSAGES/djangojs.mo index 603ab2e0ca..04d978641c 100644 Binary files a/conf/locale/es_PE/LC_MESSAGES/djangojs.mo and b/conf/locale/es_PE/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/es_PE/LC_MESSAGES/djangojs.po b/conf/locale/es_PE/LC_MESSAGES/djangojs.po index 06def1ca55..5c2119b0a3 100644 --- a/conf/locale/es_PE/LC_MESSAGES/djangojs.po +++ b/conf/locale/es_PE/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-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Spanish (Peru) (http://www.transifex.com/projects/p/edx-platform/language/es_PE/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -34,6 +35,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -333,6 +336,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -389,16 +394,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -460,6 +463,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -496,6 +504,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -874,9 +886,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -884,7 +897,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1218,15 +1231,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1336,18 +1350,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1363,6 +1372,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1370,19 +1380,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1529,6 +1539,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1544,6 +1558,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1605,6 +1623,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1634,6 +1656,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1658,3 +1700,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/et_EE/LC_MESSAGES/django.mo b/conf/locale/et_EE/LC_MESSAGES/django.mo index fbbdb66f38..f216b85982 100644 Binary files a/conf/locale/et_EE/LC_MESSAGES/django.mo and b/conf/locale/et_EE/LC_MESSAGES/django.mo differ diff --git a/conf/locale/et_EE/LC_MESSAGES/django.po b/conf/locale/et_EE/LC_MESSAGES/django.po index bd5e8e93ac..872b424ef5 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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -175,6 +175,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -185,6 +195,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -311,7 +328,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -323,6 +340,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -771,7 +804,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -792,6 +825,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -804,6 +841,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -898,6 +957,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -930,11 +993,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -984,6 +1065,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1268,10 +1361,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1699,10 +1806,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1745,6 +1856,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2032,7 +2152,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2259,37 +2379,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2389,6 +2478,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3081,6 +3174,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3147,6 +3241,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3688,35 +3783,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3734,6 +3805,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3758,23 +3842,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3815,14 +3917,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 "" @@ -4030,12 +4124,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4046,12 +4139,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4092,11 +4184,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4205,6 +4333,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4260,18 +4392,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4379,14 +4499,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4429,7 +4545,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4656,10 +4773,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4669,6 +4815,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4712,15 +4866,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4772,6 +4926,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4829,8 +4987,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4887,10 +5046,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4971,6 +5132,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5061,33 +5242,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5096,6 +5261,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5112,14 +5281,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5159,7 +5320,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5204,43 +5365,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5489,8 +5618,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5728,6 +5857,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5736,6 +5869,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5779,17 +5926,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5919,6 +6060,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5939,12 +6084,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6279,12 +6424,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6398,10 +6537,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6574,6 +6721,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6692,6 +6846,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7054,24 +7212,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7083,6 +7231,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7122,10 +7278,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7206,6 +7371,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7216,10 +7385,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7643,7 +7808,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7654,9 +7820,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7674,6 +7841,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7695,7 +7866,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7704,6 +7875,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7835,6 +8016,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8066,6 +8268,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8302,6 +8510,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8541,20 +8759,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8564,7 +8780,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8935,6 +9151,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8975,13 +9193,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9670,19 +9882,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9696,23 +9905,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9747,6 +9973,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11381,6 +11614,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11469,15 +11706,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/et_EE/LC_MESSAGES/djangojs.mo b/conf/locale/et_EE/LC_MESSAGES/djangojs.mo index cf2460e6f8..8d3bba78a1 100644 Binary files a/conf/locale/et_EE/LC_MESSAGES/djangojs.mo and b/conf/locale/et_EE/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/et_EE/LC_MESSAGES/djangojs.po b/conf/locale/et_EE/LC_MESSAGES/djangojs.po index 54d9daf513..d1e9c8a91b 100644 --- a/conf/locale/et_EE/LC_MESSAGES/djangojs.po +++ b/conf/locale/et_EE/LC_MESSAGES/djangojs.po @@ -4,6 +4,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Triple , 2014 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# # edX translation file. # Copyright (C) 2014 EdX @@ -14,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/edx-platform/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -26,6 +27,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -34,10 +36,12 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" -msgstr "" +msgstr "Katkesta" #: cms/static/js/base.js lms/static/js/verify_student/photocapture.js msgid "This link will open in a new browser window/tab" @@ -333,6 +337,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -389,16 +395,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -460,6 +464,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -496,6 +505,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -874,9 +887,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -884,7 +898,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1218,15 +1232,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1336,18 +1351,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1363,6 +1373,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1370,19 +1381,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1529,6 +1540,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1544,6 +1559,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1605,6 +1624,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1634,6 +1657,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1658,3 +1701,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/eu_ES/LC_MESSAGES/django.mo b/conf/locale/eu_ES/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..b56cead390 Binary files /dev/null and b/conf/locale/eu_ES/LC_MESSAGES/django.mo differ diff --git a/conf/locale/eu_ES/LC_MESSAGES/django.po b/conf/locale/eu_ES/LC_MESSAGES/django.po new file mode 100644 index 0000000000..0a876c6858 --- /dev/null +++ b/conf/locale/eu_ES/LC_MESSAGES/django.po @@ -0,0 +1,12580 @@ +# #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Basque (Spain) (http://www.transifex.com/projects/p/edx-platform/language/eu_ES/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Basque (Spain) (http://www.transifex.com/projects/p/edx-platform/language/eu_ES/) +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# messages.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2013 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-03 12:47+0000\n" +"Last-Translator: sarina \n" +"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/edx-platform/language/eu_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 1.3\n" +"Language: eu_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Translators: "Open Ended Panel" appears on a tab that, when clicked, opens +#. up a panel that +#. displays information about open-ended problems that a user has submitted or +#. needs to grade +#: cms/djangoapps/contentstore/utils.py common/lib/xmodule/xmodule/tabs.py +msgid "Open Ended Panel" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "Honor Code Certificate" +msgstr "" + +#: common/djangoapps/course_modes/views.py common/djangoapps/student/views.py +msgid "Enrollment is closed" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment mode not supported" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Invalid amount selected." +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "No selected price or selected price is too low." +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Community TA" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "" +"Your account has been disabled. If you believe this was done in error, " +"please contact us at {link_start}{support_email}{link_end}" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "Disabled Account" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Male" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Female" +msgstr "" + +#. Translators: 'Other' refers to the student's gender +#. Translators: 'Other' refers to the student's level of education +#: common/djangoapps/student/models.py common/djangoapps/student/models.py +msgid "Other" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Doctorate" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Master's or professional degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Bachelor's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Associate's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Secondary/high school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Junior secondary/junior high/middle school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Elementary/primary school" +msgstr "" + +#. Translators: 'None' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "None" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id not specified" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id is invalid" +msgstr "" + +#: common/djangoapps/student/views.py +#: lms/templates/courseware/course_about.html +msgid "Course is full" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You are not enrolled in this course" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Enrollment action is invalid" +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "There was an error receiving your login information. Please email us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has been temporarily locked due to excessive login failures. " +"Try again later." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Too many failed login attempts. Try again later." +msgstr "" + +#: common/djangoapps/student/views.py lms/templates/provider_login.html +msgid "Email or password is incorrect." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has not been activated. We have sent another activation " +"message. Please check your e-mail for the activation instructions." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please enter a username" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please choose an option" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "User with username {} does not exist" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully disabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully reenabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unexpected account status" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Public Username '{username}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Email '{email}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Error (401 {field}). E-mail us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Accepting Terms of Service is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Agreeing to the Honor Code is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Email cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail is required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Could not send activation e-mail." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unknown error. Please e-mail us to let us know how it happened." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "No inactive user with this e-mail exists" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unable to send reactivation email" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Invalid password" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail address required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with this e-mail already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Old email is the same as the new email." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Name required" +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Invalid ID" +msgstr "" + +#. Translators: the translation for "LONG_DATE_FORMAT" must be a format +#. string for formatting dates in a long form. For example, the +#. American English form is "%A, %B %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "LONG_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "DATE_TIME_FORMAT" must be a format +#. string for formatting dates with times. For example, the American +#. English form is "%b %d, %Y at %H:%M". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "DATE_TIME_FORMAT" +msgstr "" + +#. Translators: the translation for "SHORT_DATE_FORMAT" must be a +#. format string for formatting dates in a brief form. For example, +#. the American English form is "%b %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "SHORT_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "TIME_FORMAT" must be a format +#. string for formatting times. For example, the American English +#. form is "%H:%M:%S". See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "TIME_FORMAT" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "AM" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "PM" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Monday Februrary 10, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Monday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Tuesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Wednesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Thursday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Friday Februrary 14, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Friday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Saturday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Sunday" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jan 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Feb 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Mar 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Apr 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "May 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "May" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jun 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jul 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Aug 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Sep 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Oct 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Nov 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Dec 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "January 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "January" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "February 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "February" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "March 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "March" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "April 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "April" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "May 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "May" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "June 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "June" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "July 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "July" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "August 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "August" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "September 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "September" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "October 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "October" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "November 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "November" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "December 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "December" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Invalid Length ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or more" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or less" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Must be more complex ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more uppercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more lowercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more digits" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more punctuation characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more non ascii characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more unique words" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Too similar to a restricted dictionary word." +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +msgid "Cannot rescore problems with possible file submissions" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "correct" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incorrect" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incomplete" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +msgid "unanswered" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "processing" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your file(s) have been submitted. As soon as your submission is graded, this" +" message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your answer has been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Submitted. As soon as a response is returned, this message will be replaced " +"by that feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Error {err} in evaluating hint function {hintfn}." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "(Source code line unavailable)" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "See XML source line {sourcenum}." +msgstr "" + +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +msgid "There was a problem with the staff answer to this problem." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{student_answer}' as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use variables ({bad_variables}) in numerical problems." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "factorial function evaluated outside its domain:'{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid math syntax: '{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use complex numbers in range tolerance problems" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: complex boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: empty boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "CustomResponse: check function returned an invalid dictionary!" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"Unable to deliver your submission to grader (Reason: {error_msg}). Please " +"try again later." +msgstr "" + +#. Translators: 'grader' refers to the edX automatic code grader. +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/capa/capa/responsetypes.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Invalid grader reply. Please contact the course staff." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: {bad_input} not permitted in answer." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"factorial function not permitted in answer for this problem. Provided answer" +" was: {bad_input}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula" +msgstr "" + +#. Translators: 'SchematicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "The Staff answer could not be interpreted as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{given_answer}' as a number." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Final Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Warning: The problem has been reset to its initial state!" +msgstr "" + +#. Translators: Following this message, there will be a bulleted list of +#. items. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"The problem's state was corrupted by an invalid submission. The submission " +"consisted of:" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "If this error persists, please contact the course staff." +msgstr "" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem is closed." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be reset before it can be checked again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You must wait at least {wait} seconds between submissions." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + +#. Translators: {msg} will be replaced with a problem's error message. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Error: {msg}" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + +#. Translators: 'rescoring' refers to the act of re-submitting a student's +#. solution so it can get a new score. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem's definition does not support rescoring." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be answered before it can be graded again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem needs to be reset prior to save." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Your answers have been saved." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Your answers have been saved but not graded. Click 'Check' to grade them." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Refresh the page and make an attempt before resetting." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"We're sorry, there was an error with processing your request. Please try " +"reloading your page and trying again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"The state of this problem has changed since you loaded this page. Please " +"refresh your page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "General" +msgstr "" + +#. Translators: TBD stands for 'To Be Determined' and is used when a course +#. does not yet have an announced start date. +#: common/lib/xmodule/xmodule/course_module.py +msgid "TBD" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: 'Courseware' refers to the tab in the courseware that leads to +#. the content of a course +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/courseware/courseware-error.html +msgid "Courseware" +msgstr "" + +#. Translators: "Course Info" is the name of the course's information and +#. updates page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Course Info" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Progress" is the name of the student's course progress page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/peer_grading/peer_grading.html +msgid "Progress" +msgstr "" + +#. Translators: "Wiki" is the name of the course's wiki page +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/course_wiki/views.py +#: lms/templates/wiki/base.html +msgid "Wiki" +msgstr "" + +#. Translators: "Discussion" is the title of the course forum page +#. Translators: 'Discussion' refers to the tab in the courseware that leads to +#. the discussion forums +#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +msgid "Discussion" +msgstr "" + +#: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Textbooks" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Staff grading" appears on a tab that allows +#. staff to view open-ended problems that require staff grading +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/instructor/staff_grading.html +msgid "Staff grading" +msgstr "" + +#. Translators: "Peer grading" appears on a tab that allows +#. students to view open-ended problems that require grading +#: common/lib/xmodule/xmodule/tabs.py +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 +msgid "Syllabus" +msgstr "" + +#. Translators: 'Instructor' appears on the tab that leads to the instructor +#. dashboard, which is +#. a portal where an instructor can get data and perform various actions on +#. their course +#: common/lib/xmodule/xmodule/tabs.py +msgid "Instructor" +msgstr "" + +#. Translators: "Self" is used to denote an openended response that is self- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Self" +msgstr "" + +#. Translators: "AI" is used to denote an openended response that is machine- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "AI" +msgstr "" + +#. Translators: "Peer" is used to denote an openended response that is peer- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Peer" +msgstr "" + +#. Translators: "Not started" is used to communicate to a student that their +#. response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Not started." +msgstr "" + +#. Translators: "Being scored." is used to communicate to a student that their +#. response +#. are in the process of being scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Being scored." +msgstr "" + +#. Translators: "Scoring finished" is used to communicate to a student that +#. their response +#. have been scored, but the full scoring process is not yet complete +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scoring finished." +msgstr "" + +#. Translators: "Complete" is used to communicate to a student that their +#. openended response has been fully scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Complete." +msgstr "" + +#. Translators: "Scored rubric" appears to a user as part of a longer +#. string that looks something like: "Scored rubric from grader 1". +#. "Scored" is an adjective that modifies the noun "rubric". +#. That longer string appears when a user is viewing a graded rubric +#. returned from one of the graders of their openended response problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scored rubric" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "" +"You have attempted this question {number_of_student_attempts} times. You are" +" only allowed to attempt it {max_number_of_attempts} times." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "The problem state got out-of-sync. Please try reloading the page." +msgstr "" + +#. Translators: "Self-Assessment" refers to the self-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Self-Assessment" +msgstr "" + +#. Translators: "Peer-Assessment" refers to the peer-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Peer-Assessment" +msgstr "" + +#. Translators: "Instructor-Assessment" refers to the instructor-assessed mode +#. of openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Instructor-Assessment" +msgstr "" + +#. Translators: "AI-Assessment" refers to the machine-graded mode of openended +#. evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "AI-Assessment" +msgstr "" + +#. Translators: 'tag' is one of 'feedback', 'submission_id', +#. 'grader_id', or 'score'. They are categories that a student +#. responds to when filling out a post-assessment survey +#. of his or her grade from an openended problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Could not find needed tag {tag_name} in the survey responses. Please try " +"submitting again." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "There was an error saving your feedback. Please contact course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Couldn't submit feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Unable to save your feedback. Please try again later." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your submission." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Unable to submit your submission to the grader. Please try again later." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error getting feedback from grader." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "No feedback available from grader." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error handling action. Please try again." +msgstr "" + +#. Translators: this string appears once an openended response +#. is submitted but before it has been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: "Not started" communicates to a student that their response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Not started" +msgstr "" + +#. Translators: "In progress" communicates to a student that their response +#. is currently in the grading process +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "In progress" +msgstr "" + +#. Translators: "Done" communicates to a student that their response +#. has been fully graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Done" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We could not find a file in your submission. Please try choosing a file or " +"pasting a URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We are having trouble saving your file. Please try another file or paste a " +"URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/self_assessment_module.py +msgid "Error saving your score. Please notify course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Can't receive transcripts from Youtube for {youtube_id}. Status code: " +"{status_code}." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Can't find any transcripts on the Youtube service." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "We support only SubRip (*.srt) transcripts format." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Something wrong with SubRip transcripts file during parsing. Inner message " +"is {error_message}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Something wrong with SubRip transcripts file during parsing." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "A YouTube URL or a link to a file hosted anywhere on the web." +msgstr "" + +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Navigation" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "About these documents" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Index" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Search" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/copyright.html +msgid "Copyright" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: " +"{grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "students" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "questions" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{num_students} student(s) opened Subsection {subsection_num}: " +"{subsection_name}" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{problem_info_x} {problem_info_n} - {count_grade} {students} " +"({percent:.0f}%: {grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#. Translators: this string includes wiki markup. Leave the ** and the _ +#. alone. +#: lms/djangoapps/course_wiki/views.py +msgid "This is the wiki for **{organization}**'s _{course_name}_." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Course page automatically created." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Welcome to the edX Wiki" +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Visit a course wiki to add an article." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} does not exist." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} has never accessed problem {location}" +msgstr "" + +#: lms/djangoapps/courseware/features/video.py lms/templates/video.html +msgid "ERROR: No playable video sources found!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Path {0} doesn't exist, please create it, or configure a different path with" +" GIT_REPO_DIR" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Non usable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to get git log" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "git clone or pull failed!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to run import command." +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "The underlying module store does not support import." +msgstr "" + +#. Translators: This is an error message when they ask for a +#. particular version of a git repository and that version isn't +#. available from the remote source they specified +#: lms/djangoapps/dashboard/git_import.py +msgid "The specified remote branch is not available." +msgstr "" + +#. Translators: Error message shown when they have asked for a git +#. repository branch, a specific version within a repository, that +#. doesn't exist, or there is a problem changing to it. +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to switch to specified branch. Please check your branch name." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}, error {1}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "fixed password" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "All ok!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide full name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email must end in" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed - email {0} already exists as external_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Password must be supplied if not using certificates" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email address required (not username)" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Oops, failed to create user {0}, IntegrityError" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "User {0} created successfully!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with email address {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with username {0} - {1}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted user {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Statistic" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Value" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Site statistics" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Total number of users" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Courses loaded in the modulestore" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/templates/tracking_log.html +msgid "username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "email" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Repair Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Create User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Delete User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "The git repo location should end with '.git', and be a valid url" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Added Course" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Refusing to import. GIT_IMPORT_WITH_XMLMODULESTORE is not turned on, and it " +"is generally not safe to import into an XMLModuleStore with multithreaded. " +"We recommend you enable the MongoDB based module store instead, unless this " +"is a development environment." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "" +"The course {0} already exists in the data directory! (reloading anyway)" +msgstr "" + +#. Translators: unable to download the course content from +#. the source git repository. Clone occurs if this is brand +#. new, and pull is when it is being updated from the +#. source. +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Unable to clone or pull repository. Please check your url. Output was: {0!r}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed to clone repository to {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Successfully switched to branch: {branch_name}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Loaded course {0} {1}
Errors:" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: cms/templates/index.html cms/templates/settings.html +msgid "Course Name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Directory/ID" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Git Commit" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Change" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Editor" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Information about all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Error - cannot get course with ID {0}
{1}
" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "course_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# enrolled" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# staff" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "instructors" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Enrollment information for all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "role" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "full_name" +msgstr "" + +#: lms/djangoapps/dashboard/management/commands/git_add_course.py +msgid "" +"Import the specified git repository and optional branch into the modulestore" +" and optionally specified directory." +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with email address" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with username" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Failed in authenticating" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Unable to clone or pull repository" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Error - cannot get course with ID" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Re-open thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Close thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Title can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Body can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Comment level too deep" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "allowed file types are '%(file_types)s'" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "maximum upload file size is %(file_size)sK" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "" +"Error uploading file. Please contact the site administrator. Thank you." +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Good" +msgstr "" + +#: lms/djangoapps/django_comment_client/forum/views.py +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "All Groups" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "User does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Task is already running." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Username" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Name" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Email" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Language" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Location" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Birth Year" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "Gender" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Level of Education" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +msgid "Mailing Address" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Goals" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Complete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Incomplete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Your grade report is being generated! You can view the status of the " +"generation task in the 'Pending Instructor Tasks' section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"A grade report generation task is already in progress. Check the 'Pending " +"Instructor Tasks' table for the status of the task. When completed, the " +"report will be available for download in the table below." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully changed due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully reset due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Membership" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Student Admin" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Extensions" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Data Download" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/courseware/instructor_dashboard.html +msgid "Analytics" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Course Statistics At A Glance" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found a single student. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find student with that email or username." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Summary Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Raw Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for resetting \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found module. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname: {url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Deleted student module state for {state}!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to delete module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Module state successfully reset!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't reset module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{key}\" for student {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{key}\": {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Progress page for username: {username} with email address: {email}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Assignment Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Please enter an assignment name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Invalid assignment name '{name}'" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "External email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades for assignment \"{name}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Staff" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Instructors" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student profile data for course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found {num} records to dump." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student state for problem {problem}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Beta Testers" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades from {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook defined in course metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook url defined in settings.FEATURES" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No gradebook name defined in course remote_gradebook metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to communicate with gradebook server at {url}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: {err}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Remote gradebook response for {action}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Full name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Roles" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Forum {name}s in course {id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown rolename \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown username \"{username}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" does not have rolename \"{rolename}\", cannot " +"remove" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Removed \"{username}\" from \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: user \"{username}\" already has rolename \"{rolename}\", cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" should first be added as staff before adding as a" +" forum administrator, cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Added \"{username}\" to \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "{title} in course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "ID" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py cms/templates/register.html +#: lms/templates/dashboard.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "Full Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "edX email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Un-enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\", module " +"\"{problem}\" and student \"{student}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\" and module " +"\"{problem}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unable to parse date: " +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Couldn't find module for url: {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor/views/tools.py +msgid "Extended Due Date" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Users with due date extensions for {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unit" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Due date extensions for {0} {1} ({2})" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "rescored" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "reset" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/templates/wiki/plugins/attachments/index.html wiki/models/article.py +msgid "deleted" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "emailed" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks.py +msgid "graded" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#: lms/djangoapps/instructor_task/views.py +msgid "No status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No task_output information found for instructor_task {0}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No message provided" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "Invalid task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No progress status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_input information found for instructor_task {0}: {1}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} and {succeeded} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Progress: {action} {succeeded} of {attempted} so far" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find submission to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any students with submissions to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for any of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem {action} for {succeeded} of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any recipients to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message failed to be {action} for any of {attempted} recipients " +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message successfully {action} for {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Message {action} for {succeeded} of {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Status: {action} {succeeded} of {attempted}" +msgstr "" + +#. Translators: {skipped} is a count. This message is appended to task +#. progress status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (skipping {skipped})" +msgstr "" + +#. Translators: {total} is a count. This message is appended to task progress +#. status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (out of {total})" +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +"\n" +" Dear %(student_name)s,\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +" \n" +" Congratulations on earning your certificate in %(course_name)s!\n" +" Since you have an account on LinkedIn, you can display your hard earned\n" +" credential for your colleagues to see. Click the button below to add the\n" +" certificate to your profile.\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "Add to profile" +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Could not contact the external grading server. Please contact the " +"development team at {email}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Cannot find any open response problems in this course. Have you submitted " +"answers to any open response assessment questions? If not, please do so and " +"return to this page." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "AI Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Peer Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Not yet available" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Automatic Checker" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Instructor Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify course " +"staff." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify your edX" +" point of contact." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "for course {0} and student {1}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View all problems that require peer assessment in this particular course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View ungraded submissions submitted by students for the open ended problems " +"in the course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View open ended problems that you have previously submitted for grading." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "View submissions that have been flagged by students as inappropriate." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +#: lms/djangoapps/open_ended_grading/views.py +msgid "New submissions to grade" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "New grades have been returned" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "Submissions have been flagged for review" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"\n" +" Error with initializing peer grading.\n" +" There has not been a peer grading module created in the courseware that would allow you to grade others.\n" +" Please check back later for this.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Order Payment Confirmation" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Trying to add a different currency into the cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Please visit your dashboard to see your new" +" enrollments." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "[Refund] User-Requested Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Mode {mode} does not exist for {course_id}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Certificate of Achievement, {mode_name} for course {course}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Note - you have up to 2 weeks into the course to unenroll from the Verified " +"Certificate option and receive a full refund. To receive your refund, " +"contact {billing_email}. Please include your order number in your e-mail. " +"Please do NOT include your credit card information." +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order Number" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Customer Name" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Original Transaction" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Amount of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "Service Fees (if any)" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Purchase Time" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order ID" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Status" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +msgid "Quantity" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Unit Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Currency" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: wiki/plugins/attachments/forms.py +msgid "Description" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Comments" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "University" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html +#: cms/templates/widgets/header.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Course" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Announce Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html +msgid "Course Start Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Close Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Period" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Enrolled" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Audit Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Honor Code Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Verified Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue over the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Verified Students Contributing More than the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Dollars Refunded" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Transactions" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Payments Collected" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Successful Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Amount of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You must be logged-in to add to a shopping cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course you requested does not exist." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course {0} is already in your cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "You are already registered in course {0}." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Course added to cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You do not have permission to view this page." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor did not return a required parameter: {0}" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor returned a badly-typed value {0} for param {1}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The payment processor accepted an order whose number is not in our system." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The amount charged by the processor {0} {1} is different than the total cost" +" of the order {2} {3}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor did not accept your payment.\n" +" The decision they returned was {decision},\n" +" and the reason was {reason_code}:{reason_msg}.\n" +" You were not charged. Please try a different form of payment.\n" +" Contact us with payment-related questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a payment confirmation that had inconsistent data!\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" The specific error message is: {msg}.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Due to an error your purchase was charged for a different amount than the order total!\n" +" The specific error message is: {msg}.\n" +" Your credit card has probably been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a corrupted message regarding your charge, so we are\n" +" unable to validate that the message actually came from the payment processor.\n" +" The specific error message is: {msg}.\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Successful transaction." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request is missing one or more required fields." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "One or more fields in the request contains invalid data." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The merchantReferenceCode sent with this authorization request matches the\n" +" merchantReferenceCode of another authorization request that you sent in the last 15 minutes.\n" +" Possible fix: retry the payment after 15 minutes.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Error: General system failure. Possible fix: retry the payment after a few " +"minutes." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received but there was a server timeout.\n" +" This error does not include timeouts between the client and the server.\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but a service did not finish running in time\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The issuing bank has questions about the request. Possible fix: retry with " +"another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Expired card. You might also receive this if the expiration date you\n" +" provided does not match the date the issuing bank has on file.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" General decline of the card. No other information provided by the issuing bank.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Insufficient funds in the account. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Unknown reason" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Issuing bank unavailable. Possible fix: retry again after a few minutes" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Inactive card or card not authorized for card-not-present transactions.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The card has reached the credit limit. Possible fix: retry with another form" +" of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid card verification number. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid account number. Possible fix: retry with another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type is not accepted by the payment processor.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"General decline by the processor. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" There is a problem with our CyberSource merchant configuration. Please let us know at {0}\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The requested amount exceeds the originally authorized amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Processor Failure. Possible fix: retry the payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The authorization has already been captured" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The requested transaction amount must match the previous transaction amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type sent is invalid or does not correlate with the credit card number.\n" +" Possible fix: retry with the same card or another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request ID is invalid." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" You requested a capture through the API, but there is no corresponding, unused authorization record.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The transaction has already been settled or reversed." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The capture or credit is not voidable because the capture or credit information has already been\n" +" submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "You requested a credit for a capture that was previously voided" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but there was a timeout at the payment processor.\n" +" Possible fix: retry the payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource.'\n" +" Possible fix: retry with a different form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Reports" +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "" +"There was an error in your date input. It should be formatted as YYYY-MM-DD" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "No photo ID was provided." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "We couldn't read your name from your photo ID image." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "" +"The name associated with your account and the name on your ID do not match." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "The image of your face was not clear." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "Your face was not visible in your self-photo" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "There was an error verifying your ID photos." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Selected price is not valid number." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "This course doesn't support verified certificates" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "No selected price or selected price is below minimum." +msgstr "" + +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html +msgid "Skip to this view's content" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +#: lms/templates/registration/password_reset_complete.html +msgid "Your Password Reset is Complete" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +msgid "" +"\n" +" Your password has been set. You may go ahead and %(link_start)slog in%(link_end)s now.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Form" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" We're sorry, %(platform_name)s enrollment is not available in your region\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The following errors occurred while processing your registration: " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "You must complete all fields." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The two password fields didn't match." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"We're sorry, our systems seem to be having trouble processing your password " +"reset" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Someone has been made aware of this issue. Please try again shortly. Please %(start_link)scontact us%(end_link)s about any concerns you have.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"Please enter your new password twice so we can verify you typed it in " +"correctly.
Required fields are noted by bold text and an asterisk (*)." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: lms/templates/forgot_password_modal.html lms/templates/login.html +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Required Information" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password Again" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Change My Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your Password Reset Was Unsuccessful" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" The password reset link was invalid, possibly because the link has already been used. Please return to the %(start_link)slogin page%(end_link)s and start the password reset process again.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Help" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: cms/templates/login.html lms/templates/login-sidebar.html +#: lms/templates/register-sidebar.html +msgid "Need Help?" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" View our %(start_link)shelp section for contact information and answers to commonly asked questions%(end_link)s\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"You're receiving this e-mail because you requested a password reset for your" +" user account at edx.org." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet reset your password." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Thanks for using our site!" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "The edX Team" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "Last modified:" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "See all children" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "This article was last modified:" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/create.html.py +msgid "Add new article" +msgstr "" + +#: lms/templates/wiki/create.html +msgid "Create article" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/delete.html +#: lms/templates/wiki/delete.html.py +msgid "Go back" +msgstr "" + +#: lms/templates/wiki/delete.html lms/templates/wiki/delete.html.py +#: lms/templates/wiki/edit.html +msgid "Delete article" +msgstr "" + +#: lms/templates/wiki/delete.html +#: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Delete" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You cannot delete a root article." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You cannot delete this article because you do not have permission to delete " +"articles with children. Try to remove the children manually one-by-one." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You are deleting an article. This means that its children will be deleted as" +" well. If you choose to purge, children will also be purged!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "Articles that will be deleted" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "...and more!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You are deleting an article. Please confirm." +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/wiki/includes/article_menu.html +msgid "Edit" +msgstr "" + +#: lms/templates/wiki/edit.html lms/templates/wiki/edit.html.py +msgid "Save changes" +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/unit.html +msgid "Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this is a control to allow users to exit out of this modal +#. interface (a menu or piece of UI that takes the full focus of the screen) +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/modal/_modal-settings-language.html +#: lms/templates/modal/accessible_confirm.html +msgid "Close" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Wiki Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html +#: lms/templates/modal/_modal-settings-language.html +msgid "window open" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Back to editor" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "History" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"Click each revision to see a list of edited lines. Click the Preview button " +"to see how the article looked at this stage. At the bottom of this page, you" +" can change to a particular revision or merge an old revision with the " +"current one." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "(no log message)" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Preview this revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Auto log:" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Change" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Merge selected with current..." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Switch to selected version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Wiki Revision Preview" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Back to history view" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Switch to this version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge Revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge with current" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"When you merge a revision with the current, all data will be retained from " +"both versions and merged at its approximate location from each revision." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "After this, it's important to do a manual review." +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Create new merged version" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing revision:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing a merge between two revisions:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "This revision has been deleted." +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Restoring to this revision will mark the article as deleted." +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "" +"\n" +" You need to log in or sign up to use this function.\n" +" " +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in or sign up to use this function." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Cheatsheet" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Syntax Help" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"This wiki uses Markdown for styling. There are several " +"useful guides online. See any of the links below for in-depth details:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Markdown: Basics" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quick Markdown Syntax Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Miniature Markdown Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"To create a new wiki article, create a link to it. Clicking the link gives " +"you the creation page." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "[Article Name](wiki:ArticleName)" +msgstr "" + +#. Translators: Do not translate "edX" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Additions:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Math Expression" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Useful examples:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wikipedia" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Wiki" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Huge Header" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Smaller Header" +msgstr "" + +#. Translators: Leave the punctuation, but translate "emphasis" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "*emphasis* or _emphasis_" +msgstr "" + +#. Translators: Leave the punctuation, but translate "strong" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "**strong** or __strong__" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Unordered List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 1" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 2" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Ordered" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quotes" +msgstr "" + +#: lms/templates/wiki/includes/editor_widget.html +msgid "" +"\n" +" Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for help.\n" +" " +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/wiki_plugin.py +msgid "Attachments" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload new file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search and add file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload File" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search files and articles" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"You can reuse files from other articles. These files are subject to updates " +"on other articles which may or may not be a good thing." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"The following files are available for this article. Copy the markdown tag to" +" directly refer to a file from the article text." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Markdown tag" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Uploaded by" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Size" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File History" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Detach" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Replace" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Restore" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "anonymous (IP logged)" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File history" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "revisions" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "There are no attachments for this article." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Invalid course update id." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Course update not found." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " +"configure a different path with GIT_REPO_EXPORT_DIR" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Non writable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"If using http urls, you must provide the username and password in the url. " +"Similar to https://user:pass@github.com/user/course." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to determine branch, repo in detached HEAD mode" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to update or clone git repository." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to export course to xml." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to configure git username and password" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to commit changes. This is usually because there are no changes to be" +" committed" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to push changes. This is usually because the remote repository " +"cannot be contacted" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Bad course location provided" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Missing branch on fresh clone" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command was: {0!r}. Working directory was: {1!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command output was: {0!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Directory already exists, doing a git reset and pull instead of git clone." +msgstr "" + +#: cms/djangoapps/contentstore/utils.py lms/templates/notes.html +msgid "My Notes" +msgstr "" + +#: cms/djangoapps/contentstore/management/commands/git_export.py +msgid "" +"Take the specified course and attempt to export it to a git repository\n" +". Course directory must already be a git repository. Usage: git_export " +msgstr "" + +#: cms/djangoapps/contentstore/views/assets.py +msgid "Upload completed" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Special characters not allowed in organization, course number, and course " +"run." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Unable to create course '{name}'.\n" +"\n" +"{err}" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization, course number," +" and course run. Please change either organization or course number to be " +"unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Please change either the organization or course number so that it is unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization and course " +"number. Please change at least one field to be unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/export_git.py +msgid "Course successfully exported to git repository" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "We only support uploading a .tar.gz file." +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "File upload corrupted. Please try again" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "Could not find the course.xml file in the package." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of {0}" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of '{0}'" +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Incoming video data is empty." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Can't find item by locator." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Transcripts are supported only for \"video\" modules." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Insufficient permissions" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Could not find user by email address '{email}'." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "User {email} has registered but has not yet activated his/her account." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "`role` is required" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Only instructors may create other instructors" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "You may not remove the last instructor from a course" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "unrequested" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "pending" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "granted" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "denied" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Studio user" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "The date when state was last updated" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Current course creator state" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "" +"Optional notes about this user (for example, why course creation access was " +"denied)" +msgstr "" + +#: cms/templates/404.html cms/templates/error.html +#: lms/templates/static_templates/404.html +msgid "Page Not Found" +msgstr "" + +#: cms/templates/404.html lms/templates/static_templates/404.html +msgid "Page not found" +msgstr "" + +#: cms/templates/asset_index.html lms/templates/courseware/courseware.html +#: lms/templates/verify_student/_modal_editname.html +msgid "close" +msgstr "" + +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." +msgstr "" + +#. Translators: this is a verb describing the action of viewing more details +#: cms/templates/container_xblock_component.html +#: lms/templates/wiki/includes/article_menu.html +msgid "View" +msgstr "" + +#: cms/templates/html_error.html lms/templates/module-error.html +msgid "Error:" +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +#: lms/templates/courseware/course_about.html +msgid "Course Number" +msgstr "" + +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Organization:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Number:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Pending" +msgstr "" + +#: cms/templates/login.html lms/templates/login.html +#: lms/templates/university_profile/edge.html +msgid "Forgot password?" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/login.html lms/templates/provider_login.html +#: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Password" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + +#: cms/templates/manage_users.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Admin" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + +#: cms/templates/register.html cms/templates/widgets/header.html +#: lms/templates/index.html +msgid "Sign Up" +msgstr "" + +#: cms/templates/register.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "Public Username" +msgstr "" + +#: cms/templates/register.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "Preferred Language" +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Thanks for activating your account." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "This account has already been activated." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Visit your {link_start}dashboard{link_end} to see your courses." +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html +#: lms/templates/static_templates/tos.html +msgid "Terms of Service" +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/footer.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/privacy.html +msgid "Privacy Policy" +msgstr "" + +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py +msgid "Help" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Register for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sorry, there was an error when trying to register you" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your track:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Certificate of Achievement (ID Verified)" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your contribution for this course (min. $" +msgstr "" + +#: common/templates/course_modes/choose.html +#: lms/templates/verify_student/photo_verification.html +msgid "):" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay? What if I don't meet all the requirements?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"As a not-for-profit, edX uses your contribution to support our mission to " +"provide quality education to everyone around the world, and to improve " +"learning through research. While we have established a minimum fee, we ask " +"that you contribute as much as you can." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"I'd like to pay more than the minimum. Is my contribution tax deductible?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please check with your tax advisor to determine whether your contribution is" +" tax deductible." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What if I can't afford it or don't have the necessary equipment?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"If you can't afford the minimum fee or don't meet the requirements, you can " +"audit the course or elect to pursue an honor code certificate at no cost. If" +" you would like to pursue the honor code certificate, please check the honor" +" code certificate box, tell us why you can't pursue the verified certificate" +" below, and then click the 'Select Certificate' button to complete your " +"registration." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Honor Code Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Explain your situation: " +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please write a few sentences about why you'd like to opt out of the paid " +"verified certificate to pursue the honor code certificate:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Verified Registration Requirements" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To upgrade your registration and work towards a Verified Certificate of " +"Achievement, you will need a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To register for a Verified Certificate of Achievement option, you will need " +"a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What is an ID Verified Certificate?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"An ID Verified Certificate requires proof of your identity through your " +"photo and ID and is checked throughout the course to verify that it is you " +"who earned the passing grade." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "or" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Audit This Course" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up to audit this course for free and track your own progress." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Audit" +msgstr "" + +#: lms/templates/admin_dashboard.html +msgid "{platform_name}-wide Summary" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/open_ended_problems/combined_notifications.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Instructions" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "Collapse Instructions" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Guided Discussion" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Hide Annotations" +msgstr "" + +#: lms/templates/contact.html lms/templates/static_templates/about.html +#: lms/templates/static_templates/about.html +msgid "Vision" +msgstr "" + +#: lms/templates/contact.html +msgid "Faq" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +msgid "Press" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/contact.html +msgid "Contact" +msgstr "" + +#: lms/templates/contact.html +msgid "Class Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"We are always seeking feedback to improve our courses. If you are an " +"enrolled student and have any questions, feedback, suggestions, or any other" +" issues specific to a particular class, please post on the discussion forums" +" of that class." +msgstr "" + +#: lms/templates/contact.html +msgid "General Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." +msgstr "" + +#: lms/templates/contact.html +msgid "Technical Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have suggestions/feedback about the overall {platform_name} platform," +" or are facing general technical issues with the platform (e.g., issues with" +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Media" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"Please visit our {link_start}media/press page{link_end} for more " +"information. For any media or press inquiries, please email {email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Universities" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you are a university wishing to collaborate with or if you have questions" +" about {platform_name}, please email {email}." +msgstr "" + +#: lms/templates/course.html +msgid "New" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Dashboard" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/courseware/course_about.html +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "An error occurred. Please try again later." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please verify your new email" +msgstr "" + +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "edit" +msgstr "" + +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Reset Password" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Current Courses" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't registered for any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Find courses now!" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't been enrolled in any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Course-loading errors" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Email Settings for {course_number}" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Receive course emails" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Save Settings" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Password Reset Email Sent" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"An email has been sent to {email}. Follow the link in the email to change " +"your password." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Change Email" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please enter your new email address:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please confirm your password:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"We will send a confirmation to both {email} and your new email as part of " +"the process." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change your name" +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"To uphold the credibility of your {platform} {cert_name_short}, all name " +"changes will be logged and recorded." +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"Enter your desired full name, as it will appear on your {platform} " +"{cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/verify_student/_modal_editname.html +msgid "Reason for name change:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change My Name" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +" {course_number}? " +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Unregister" +msgstr "" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +msgid "E-mail change failed" +msgstr "" + +#: lms/templates/email_change_failed.html +msgid "We were unable to send a confirmation email to {email}" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +#: lms/templates/invalid_email_key.html +msgid "Go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "E-mail change successful!" +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "You should see your new email in your {link_start}dashboard{link_end}." +msgstr "" + +#: lms/templates/email_exists.html +msgid "An account with the new e-mail address already exists." +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Student Enrollment Form" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Course: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Add new students" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Existing students:" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "New students added: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Students rejected: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Debug: " +msgstr "" + +#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +msgid "External Authentication failed" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Due:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Status:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have successfully gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have not yet gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Completed puzzles" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Level" +msgstr "" + +#: lms/templates/folditbasic.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Submitted" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Puzzle Leaderboard" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "User" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Score" +msgstr "" + +#: lms/templates/footer.html +msgid "About" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/jobs.html +msgid "Jobs" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/faq.html +#: lms/templates/static_templates/faq.html +msgid "FAQ" +msgstr "" + +#: lms/templates/footer.html +msgid "{platform_name} Logo" +msgstr "" + +#: lms/templates/footer.html +msgid "" +"{platform_name} is a non-profit created by founding partners {Harvard} and " +"{MIT} whose mission is to bring the best of higher education to students of " +"all ages anywhere in the world, wherever there is Internet access. " +"{platform_name}'s free online MOOCs are interactive and subjects include " +"computer science, public health, and artificial intelligence." +msgstr "" + +#: lms/templates/footer.html +msgid "© 2014 {platform_name}, some rights reserved." +msgstr "" + +#: lms/templates/footer.html +msgid "Terms of Service and Honor Code" +msgstr "" + +#: lms/templates/forgot_password_modal.html +#: lms/templates/forgot_password_modal.html +msgid "Password Reset" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "" +"Please enter your e-mail address below, and we will e-mail instructions for " +"setting a new password." +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Your E-mail Address" +msgstr "" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +msgid "This is the e-mail address you used to register with {platform}" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Reset My Password" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Email is incorrect." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +msgid "{platform_name} Help" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"For questions on course lectures, homework, tools, or materials for " +"this course, post in the {link_start}course discussion " +"forum{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have general questions about {platform_name}? You can find " +"lots of helpful information in the {platform_name} " +"{link_start}FAQ{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have a question about something specific? You can contact " +"the {platform_name} general support team directly:" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Please note: The {platform_name} support team is English speaking. While we " +"will do our best to address your inquiry in any language, our responses will" +" be in English." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/login.html +#: lms/templates/provider_login.html lms/templates/provider_login.html +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "E-mail" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Briefly describe your issue" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Tell us the details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +#: lms/templates/instructor/staff_grading.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Submit" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Thank You!" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Thank you for your inquiry or feedback. We typically respond to a request " +"within one business day (Monday to Friday, {open_time} UTC to {close_time} " +"UTC.) In the meantime, please review our {link_start}detailed FAQs{link_end}" +" where most questions have already been answered." +msgstr "" + +#: lms/templates/help_modal.html +msgid "problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a Problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of the problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Details of the problem you are encountering" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc." +msgstr "" + +#: lms/templates/help_modal.html +msgid "suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a Suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of your suggestion" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/module-error.html +msgid "Details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a Question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief summary of your question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "An error has occurred." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please {link_start}send us e-mail{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please try again later." +msgstr "" + +#: lms/templates/index.html +msgid "Free courses from {university_name}" +msgstr "" + +#: lms/templates/index.html +msgid "The Future of Online Education" +msgstr "" + +#: lms/templates/index.html +msgid "For anyone, anywhere, anytime" +msgstr "" + +#: lms/templates/index.html +msgid "Stay up to date with all {platform_name} has to offer!" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Invalid email change key" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "This e-mail key is not valid. Please check:" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "" +"Was this key already used? Check whether the e-mail change has already " +"happened." +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Did your e-mail client break the URL into two lines?" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "The keys are valid for a limited amount of time. Has the key expired?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Helpful Information" +msgstr "" + +#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +msgid "Login via OpenID" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "" +"You can now start learning with {platform_name} by logging in with your OpenID account." +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Not Enrolled?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Sign up for {platform_name} today!" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Looking for help in logging in or with your {platform_name} account?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "View our help section for answers to commonly asked questions." +msgstr "" + +#: lms/templates/login.html +msgid "Log into your {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Log into My {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Access My Courses" +msgstr "" + +#: lms/templates/login.html lms/templates/register.html +msgid "Processing your account information…" +msgstr "" + +#: lms/templates/login.html +msgid "Please log in" +msgstr "" + +#: lms/templates/login.html +msgid "to access your account and courses" +msgstr "" + +#: lms/templates/login.html +msgid "We're Sorry, {platform_name} accounts are unavailable currently" +msgstr "" + +#: lms/templates/login.html +msgid "The following errors occurred while logging you in:" +msgstr "" + +#: lms/templates/login.html +msgid "Your email or password is incorrect" +msgstr "" + +#: lms/templates/login.html +msgid "" +"Please provide the following information to log into your {platform_name} " +"account. Required fields are noted by bold text " +"and an asterisk (*)." +msgstr "" + +#: lms/templates/login.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +msgid "example: username@domain.com" +msgstr "" + +#: lms/templates/login.html +msgid "Account Preferences" +msgstr "" + +#: lms/templates/login.html +msgid "Remember me" +msgstr "" + +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS +#: lms/templates/lti.html +msgid "External resource" +msgstr "" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + +#: lms/templates/lti.html +msgid "View resource in a new window" +msgstr "" + +#: lms/templates/lti.html +msgid "" +"Please provide launch_url. Click \"Edit\", and fill in the required fields." +msgstr "" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable or Reenable student accounts" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Username:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Reenable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Students whose accounts have been disabled" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "(reload your page to refresh)" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "working..." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"This page features MathJax technology to render mathematical formulae. To " +"make math accessibile, we suggest using the MathPlayer plugin. Please visit " +"the {link_start}MathPlayer Download Page{link_end} to download the plugin " +"for your browser." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"Your browser does not support the MathPlayer plugin. To use MathPlayer, " +"please use Internet Explorer 6 through 9." +msgstr "" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" +msgstr "" + +#: lms/templates/module-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/module-error.html +msgid "Raw data:" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Accepted" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Error" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Rejected" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Pending name changes" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/modal/accessible_confirm.html +msgid "Confirm" +msgstr "" + +#: lms/templates/name_changes.html +msgid "[Reject]" +msgstr "" + +#: lms/templates/navigation.html +msgid "Global Navigation" +msgstr "" + +#: lms/templates/navigation.html +msgid "Find Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Dashboard for:" +msgstr "" + +#: lms/templates/navigation.html +msgid "More options dropdown" +msgstr "" + +#: lms/templates/navigation.html +msgid "Log Out" +msgstr "" + +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + +#: lms/templates/navigation.html +msgid "How it Works" +msgstr "" + +#: lms/templates/navigation.html lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/courseware/courses.html +msgid "Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Schools" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Register Now" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Log in" +msgstr "" + +#: lms/templates/navigation.html +msgid "" +"Warning: Your browser is not fully supported. We strongly " +"recommend using {chrome_link_start}Chrome{chrome_link_end} or " +"{ff_link_start}Firefox{ff_link_end}." +msgstr "" + +#: lms/templates/notes.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "You do not have any notes." +msgstr "" + +#: lms/templates/problem.html +msgid "Reset" +msgstr "" + +#: lms/templates/problem.html +msgid "Show Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "Reveal Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "You have used {num_used} of {num_total} submissions" +msgstr "" + +#: lms/templates/provider_login.html +#: lms/templates/university_profile/edge.html +msgid "Log In" +msgstr "" + +#: lms/templates/provider_login.html +msgid "" +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." +msgstr "" + +#: lms/templates/provider_login.html +msgid "Return To %s" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Preferences for {platform_name}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update my {platform_name} Account" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Processing your account information …" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Welcome {username}! Please set your preferences below" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"We're sorry, {platform_name} enrollment is not available in your region" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "The following errors occurred while processing your registration:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"Required fields are noted by bold text and an " +"asterisk (*)." +msgstr "" + +#: lms/templates/register-shib.html lms/templates/signup_modal.html +msgid "Enter a public username:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "example: JaneDoe" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "Will be shown in any discussions or forums you participate in" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Account Acknowledgements" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Terms of Service{link_end}" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Honor Code{link_end}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update My Account" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Registration Help" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Already registered?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Click here to log in." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Registering with {platform_name} gives you access to all of our current and " +"future free courses. Not ready to take a course just yet? Registering puts " +"you on our mailing list - we will update you as courses are added." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Next Steps" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"You will receive an activation email. You must click on the activation link" +" to complete the process. Don't see the email? Check your spam folder and " +"mark emails from class.stanford.edu as 'not spam', since you'll want to be " +"able to receive email from your courses." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"As part of joining {platform_name}, you will receive an activation email. " +"You must click on the activation link to complete the process. Don't see " +"the email? Check your spam folder and mark {platform_name} emails as 'not " +"spam'. At {platform_name}, we communicate mostly through email." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Need help in registering with {platform_name}?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "View our FAQs for answers to commonly asked questions." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Once registered, most questions can be answered in the course specific " +"discussion forums or through the FAQs." +msgstr "" + +#: lms/templates/register.html +msgid "Register for {platform_name}" +msgstr "" + +#: lms/templates/register.html +msgid "Create My {platform_name} Account" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome!" +msgstr "" + +#: lms/templates/register.html +msgid "Register below to create your {platform_name} account" +msgstr "" + +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + +#: lms/templates/register.html +msgid "Please complete the following fields to register for an account. " +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "cannot be changed later" +msgstr "" + +#: lms/templates/register.html lms/templates/verify_student/face_upload.html +msgid "example: Jane Doe" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Needed for any certificates you may earn" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome {username}" +msgstr "" + +#: lms/templates/register.html +msgid "Enter a Public Display Name:" +msgstr "" + +#: lms/templates/register.html +msgid "Public Display Name" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Extra Personal Information" +msgstr "" + +#: lms/templates/register.html +msgid "City" +msgstr "" + +#: lms/templates/register.html +msgid "example: New York" +msgstr "" + +#: lms/templates/register.html +msgid "Country" +msgstr "" + +#: lms/templates/register.html +msgid "Highest Level of Education Completed" +msgstr "" + +#: lms/templates/register.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Year of Birth" +msgstr "" + +#: lms/templates/register.html +msgid "Please share with us your reasons for registering with {platform_name}" +msgstr "" + +#: lms/templates/register.html lms/templates/university_profile/edge.html +msgid "Register" +msgstr "" + +#: lms/templates/register.html lms/templates/signup_modal.html +msgid "Create My Account" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "Re-subscribe Successful!" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "" +"You have re-enabled forum notification emails from {platform_name}. Click " +"{dashboard_link_start}here{link_end} to return to your dashboard. " +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Previous" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +msgid "Section Navigation" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Next" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Sign Up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname@domain.com" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname (shown on forums)" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. Your Name (for certificates)" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Welcome {name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Ed. Completed" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Year of birth" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Mailing address" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Goals in signing up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Already have an account?" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Login." +msgstr "" + +#. Translators: The 'Group' here refers to the group of users that has been +#. sorted into group_id +#: lms/templates/split_test_staff_view.html +msgid "Group {group_id}" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug Info" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission history" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "{platform_name} Content Quality Assessment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Optional tag (eg \"done\" or \"broken\"):" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Add comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug" +msgstr "" + +#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +msgid "Module Fields" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "XML attributes" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission History Viewer" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "User:" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "View History" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "{course_number} Textbook" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "Textbook Navigation" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Previous page" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Next page" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Sysadmin Dashboard" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Users" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Staffing and Enrollment" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Logs" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "User Management" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Email or username" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Create user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download list of all users (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Check and repair external authentication map" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "" +"Go to each individual course's Instructor dashboard to manage course " +"enrollment." +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Manage course staff and instructors" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download staff and instructor list (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Administer Courses" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Location" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware and branch is a specific version within that repository +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Branch (optional)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Load new course from github" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Course ID or dir" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete course from site" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Django PID" +msgstr "" + +#. Translators: A version number appears after this string +#: lms/templates/sysadmin_dashboard.html +msgid "Platform Version" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Date" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Course ID" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Action" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Recent git load activity for" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "git action" +msgstr "" + +#: lms/templates/textannotation.html +msgid "Source:" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "Tracking Log" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "datetime" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "ipaddr" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "source" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "type" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "Unsubscribe Successful!" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "" +"You will no longer receive forum notification emails from {platform_name}. " +"Click {dashboard_link_start}here{link_end} to return to your dashboard. If " +"you did not mean to do this, click {undo_link_start}here{link_end} to re-" +"subscribe." +msgstr "" + +#: lms/templates/using.html +msgid "Using the system" +msgstr "" + +#: lms/templates/using.html +msgid "" +"During video playback, use the subtitles and the scroll bar to navigate. " +"Clicking the subtitles is a fast way to skip forwards and backwards by small" +" amounts." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you are on a low-resolution display, the left navigation bar can be " +"hidden by clicking on the set of three left arrows next to it." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you need bigger or smaller fonts, use your browsers settings to scale " +"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" +" ctrl-minus at the same time." +msgstr "" + +#: lms/templates/video.html +msgid "Skip to a navigable version of this video's transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Loading video player" +msgstr "" + +#: lms/templates/video.html +msgid "Play video" +msgstr "" + +#: lms/templates/video.html +msgid "Video position" +msgstr "" + +#: lms/templates/video.html +msgid "Play" +msgstr "" + +#: lms/templates/video.html +msgid "Speeds" +msgstr "" + +#: lms/templates/video.html +msgid "Speed" +msgstr "" + +#: lms/templates/video.html +msgid "Volume" +msgstr "" + +#: lms/templates/video.html +msgid "Fill browser" +msgstr "" + +#: lms/templates/video.html +msgid "HD off" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Turn off captions" +msgstr "" + +#: lms/templates/video.html +msgid "Skip to end of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "" +"Activating an item in this group will spool the video to the corresponding " +"time point. To skip transcript, go to previous item." +msgstr "" + +#: lms/templates/video.html +msgid "Go back to start of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Download video" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Download transcript" +msgstr "" + +#: lms/templates/video.html +msgid "Download Handout" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Your words:" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Total number of words:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Open Response" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Assessments:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Hide Question" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "New Submission" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Next Step" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "" +"Staff Warning: Please note that if you submit a duplicate of text that has " +"already been submitted for grading, it will not show up in the staff grading" +" view. It will be given the same grade that the original received " +"automatically, and will be returned within 30 minutes if the original is " +"already graded, or when the original is graded if not." +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_legend.html +msgid "Legend" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Submitted Rubric" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Toggle Full Rubric" +msgstr "" + +#. Translators: an example of what this string will look +#. like is: "Scored rubric from grader 1", where +#. "Scored rubric" replaces {result_of_task} and +#. "1" replaces {number}. +#. This string appears when a user is viewing one of +#. their graded rubrics for an openended response problem. +#. the number distinguishes between the different +#. graded rubrics the user might have received +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "{result_of_task} from grader {number}" +msgstr "" + +#. Translators: "See full feedback" is the text of +#. a link that allows a user to see more detailed +#. feedback from a self, peer, or instructor +#. graded openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +msgid "See full feedback" +msgstr "" + +#. Translators: this text forms a link that, when +#. clicked, allows a user to respond to the feedback +#. the user received on his or her openended problem +#. Translators: when "Respond to Feedback" is clicked, a survey +#. appears on which a user can respond to the feedback the user +#. received on an openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Respond to Feedback" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "How accurate do you find this feedback?" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "No Opinion" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Additional comments:" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Submit Feedback" +msgstr "" + +#. Translators: "Response" labels an area that contains the user's +#. Response to an openended problem. It is a noun. +#. Translators: "Response" labels a text area into which a user enters +#. his or her response to a prompt from an openended problem. +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Response" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Unanswered" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Skip Post-Assessment" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_combined_rubric.html +msgid "{num} point: {explanatory_text}" +msgid_plural "{num} points: {explanatory_text}" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/combinedopenended/openended/open_ended_error.html +msgid "There was an error with your submission. Please contact course staff." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "Rubric" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "" +"Select the criteria you feel best represents this submission in each " +"category." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "{num} point: {text}" +msgid_plural "{num} points: {text}" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/combinedopenended/selfassessment/self_assessment_hint.html +msgid "Please enter a hint below:" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohort groups" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Show cohorts" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohorts in the course" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add users by username or email. One per line or comma-separated." +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort members" +msgstr "" + +#: lms/templates/courseware/accordion.html +msgid "{chapter}, current chapter" +msgstr "" + +#: lms/templates/courseware/accordion.html +#: lms/templates/courseware/progress.html +msgid "due {date}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"The currently logged-in user account does not have permission to enroll in " +"this course. You may need to {start_logout_tag}log out{end_tag} then try the" +" register button again. Please visit the {start_help_tag}help page{end_tag} " +"for a possible solution." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "About {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "You are registered for this course" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View Courseware" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "This course is in your cart." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"Add {course.display_number_with_default} to Cart ({currency_symbol}{cost})" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Register for {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Overview" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Share with friends and family!" +msgstr "" + +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes Start" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes End" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Estimated Effort" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Prerequisites" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Additional Resources" +msgstr "" + +#. Translators: 'needs attention' is an alternative string for the +#. notification image that indicates the tab "needs attention". +#: lms/templates/courseware/course_navigation.html +msgid "needs attention" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/course_navigation.html +msgid "Staff view" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +msgid "Student view" +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from leading universities." +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from {university_name}." +msgstr "" + +#: lms/templates/courseware/courseware-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "{course_number} Courseware" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Return to Exam" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Course Navigation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Open Calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Input Field" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "" +"Use the arrow keys to navigate the tips or use the tab key to return to the " +"calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Hints" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Integers" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Decimals" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Scientific notation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Appending SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Supported SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Operators" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "parallel resistors function" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Functions" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Constants" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Euler's number" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "ratio of a circle's circumference to it's diameter" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Boltzmann constant" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "speed of light" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "freezing point of water in degrees Kelvin" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "fundamental charge" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculate" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Output Field" +msgstr "" + +#: lms/templates/courseware/error-message.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {link_to_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/grade_summary.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade summary" +msgstr "" + +#: lms/templates/courseware/grade_summary.html +msgid "Not implemented yet" +msgstr "" + +#: lms/templates/courseware/gradebook.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "Search students" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "{course_number} Course Info" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + +#: lms/templates/courseware/info.html lms/templates/courseware/info.html +msgid "Course Updates & News" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Handout Navigation" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Course Handouts" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Instructor Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Try New Beta Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Psychometrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Forum Admin" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "DataDump" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Manage Groups" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Metrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade Downloads" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Note: some of these buttons are known to time out for larger courses. We " +"have temporarily disabled those features for courses with more than " +"{max_enrollment} students. We are urgently working on fixing this issue. " +"Thank you for your patience as we continue working to improve the platform!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Export grades to remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"The assignments defined for this course should match the ones stored in the " +"gradebook, for this to work properly!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Assignment name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Course-specific grade adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Specify a particular problem in the course here by its url:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is " +"i4x://university/course/problem/problemname, then just provide the " +"problemname. If the location is " +"i4x://university/course/notaproblem/someothername, then provide " +"notaproblem/someothername.)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Then select an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"These actions run in the background, and status for active tasks will appear" +" in a table below. To see status for all tasks submitted for this problem, " +"click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student-specific grade inspection and adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Specify the {platform_name} email address or username of a student here:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Click this, and a link to student's progress page will appear below:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may also delete the entire state of a student for the specified module:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" a table below. To see status for all tasks submitted for this problem and " +"student, click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Select a problem and an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"User requires forum administrator privileges to perform administration " +"tasks. See instructor." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Explanation of Roles:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Moderators: can edit or delete any post, remove misuse flags, close " +"and re-open threads, endorse responses, and see posts from all cohorts (if " +"the course is cohorted). Moderators' posts are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Admins: have moderator privileges, as well as the ability to edit the " +"list of forum moderators (e.g. to appoint a new moderator). Admins' posts " +"are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Community TAs: have forum moderator privileges, and their posts are labelled" +" 'Community TA'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment Data" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Pull enrollment from remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Section:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enroll or un-enroll one or many students: enter emails, separated by new " +"lines or commas;" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Notify students by email" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Auto-enroll students when they activate" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Problem urlname:" +msgstr "" + +#. Translators: days_early_for_beta should not be translated +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enter usernames or emails for students who should be beta-testers, one per " +"line, or separated by commas. They will get to see course materials early, " +"as configured via the days_early_for_beta option in the course " +"policy." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send to:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Myself" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Staff and instructors" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "All (students, staff and instructors)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Subject: " +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Max 128 characters)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Please try not to email students more than once per week. Important things " +"to consider before sending:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you read over the email to make sure it says everything you want to " +"say?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you sent the email to yourself first to make sure you're happy with how" +" it's displayed, and that embedded links and images work properly?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "CAUTION!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Once the 'Send Email' button is clicked, your email will be queued for " +"sending." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "A queued email CANNOT be cancelled." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "No Analytics are available at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Students enrolled (historical count, includes those who have since " +"unenrolled):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students active in the last week:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student activity day by day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Score distribution for problems" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Max" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Points Earned (Num Students)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There is no data available to display at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"Loading the latest graphs for you; depending on your class size, this may " +"take a few minutes." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Count of Students that Opened a Subsection" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution per Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There are no problems in this section." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students answering correctly" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Number of students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Student distribution per country, all courses, Sep-12 to Oct-17, 1 server " +"(shown here as an example):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Pending Instructor Tasks" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Type" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task inputs" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Id" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Requester" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task State" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Duration (sec)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Progress" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "unknown" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Course errors" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "About {course_id}" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "Coming Soon" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "About {course_number}" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Access Courseware" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "You Are Registered" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Register for" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Registration Is Closed" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "News - MITx 6.002x" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "Updates to Discussion Posts You Follow" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{course_number} Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress for Student '{username}' ({email})" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{earned:.3n} of {total:.3n} possible points" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Problem Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Practice Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "No problem scores in this section" +msgstr "" + +#: lms/templates/courseware/syllabus.html +msgid "{course.display_number_with_default} Course Info" +msgstr "" + +#: lms/templates/courseware/welcome-back.html +msgid "" +"You were most recently in {section_link}. If you're done with that, choose " +"another section on the left." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Final course details are being wrapped up at this time. Your final standing " +"will be available shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final grade:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required for a {cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your verified {cert_name_long} is being held pending confirmation that the " +"issuance of your {cert_name_short} is in compliance with strict U.S. " +"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " +"mistakenly identified you as being connected with one of those countries, " +"please let us know by contacting {email}. If you would like a refund on your" +" {cert_name_long}, please contact our billing address {billing_email}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your {cert_name_long} is being held pending confirmation that the issuance " +"of your {cert_name_short} is in compliance with strict U.S. embargoes on " +"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " +"identified you as being connected with one of those countries, please let us" +" know by contacting {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your {cert_name_short} is Generating" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open/download a PDF document" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"This link will open/download a PDF document of your verified " +"{cert_name_long}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your ID Verified {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Complete our course feedback survey" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Cover Image" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Enrolled as: " +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +msgid "ID Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Completed - {end_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Started - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course has not yet started" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Starts - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Document your accomplishment!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Challenge Yourself!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Take this course as an ID-verified student." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can still sign up for an ID verified {cert_name_long} for this course. " +"If you plan to complete the whole course, it is a great way to recognize " +"your achievement. {link_start}Learn more about the verified " +"{cert_name_long}{link_end}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Upgrade to Verified Track" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Archived Course" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Course" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Are you sure you want to unregister from" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Are you sure you want to unregister from the verified {cert_name_long} track" +" of" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Email Settings" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "You need to re-verify to continue" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in the following courses, you need to " +"re-verify your identity:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "{course_name}: Re-verify by {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Notification Actions" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course_name}, you need to re-verify" +" your identity by {date}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Your re-verification failed" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"Your re-verification for {course_name} failed and you are no longer eligible" +" for a Verified Certificate. If you think this is in error, please contact " +"us at {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Dismiss" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verification now open for:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verify now:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Pending:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Denied:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Approved:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "ID-Verification Status" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Reviewed and Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Your verification status is good for one year after submission." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification photos have been submitted and will be reviewed shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Re-verify Yourself" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"If you fail to pass a verification attempt before your course ends, you will" +" not receive a verified certificate." +msgstr "" + +#: lms/templates/debug/run_python_form.html +msgid "Results:" +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "" +"Sorry! We can't find anything matching your search. Please try another " +"search." +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "There are no posts here yet. Be the first one to post!" +msgstr "" + +#: lms/templates/discussion/_discussion_course_navigation.html +#: lms/templates/discussion/_discussion_module.html +msgid "New Post" +msgstr "" + +#: lms/templates/discussion/_discussion_module.html +msgid "Show Discussion" +msgstr "" + +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Filter Topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "filter topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Show All Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Show Flagged Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Posts I'm Following" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "follow this post" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously to classmates" +msgstr "" + +#. Translators: This labels the selector for which group of students can view +#. a +#. post +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Make visible to:" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +msgid "My Cohort" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "new post title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: wiki/forms.py wiki/forms.py wiki/forms.py +msgid "Title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Enter your question or comment…" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Add post" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Create new post about:" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter List" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter discussion areas" +msgstr "" + +#: lms/templates/discussion/_recent_active_posts.html +msgid "Following" +msgstr "" + +#: lms/templates/discussion/_search_bar.html +msgid "Search posts" +msgstr "" + +#: lms/templates/discussion/_similar_posts.html +msgid "Hide" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Home" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Topics" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion topics; current selection is: " +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Search all discussions" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Sort by:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "date" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "votes" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "comments" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Show:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View All" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View as {name}" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Add A Response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Post a response:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "anonymous" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "• This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "follow" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow this post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Pin Thread" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Pinned" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "(this post is about %(courseware_title_linked)s)" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Edit post title" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment..." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "endorse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Delete Comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "-posted %(time_ago)s by" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"%(comments_count)s %(span_sr_open)scomments (%(unread_comments_count)s " +"unread comments)%(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(comments_count)s %(span_sr_open)scomments %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(votes_up_count)s%(span_sr_open)s votes %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "DISCUSSION HOME:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "HOW TO USE EDX DISCUSSIONS" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Find discussions" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Focus in on specific topics" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Search for specific posts " +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Sort by date, vote, or comments" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Engage with posts" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Upvote posts and good responses" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Forum Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow posts for updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Receive updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Toggle Notifications Setting" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"Check this box to receive an email digest once a day notifying you about " +"new, unread activity from posts you are following." +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid ", " +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s discussion started" +msgid_plural "%s discussions started" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/discussion/index.html +#: lms/templates/discussion/user_profile.html +msgid "Discussion - {course_number}" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "We're sorry" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "" +"The forums are currently undergoing maintenance. We'll have them back up " +"shortly!" +msgstr "" + +#: lms/templates/discussion/user_profile.html +msgid "User Profile" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Collapse discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "This thread has been pinned by course staff." +msgstr "" + +#: lms/templates/discussion/mustache/_pagination.mustache +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "…" +msgstr "" + +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + +#: lms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for {platform_name}! To activate your account, " +"please copy and paste this address into your web browser's address bar:" +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the about section of the {platform_name} Courses web site." +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the {platform_name} web site." +msgstr "" + +#: lms/templates/emails/activation_email_subject.txt +msgid "Your account for {platform_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Dear {full_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "" +"You have been invited to be a beta tester for {course_name} at {site_name} " +"by a member of the course staff." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {course_about_url} to join the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_allowedmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "This email was automatically sent from {site_name} to {email_address}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_subject.txt +msgid "You have been invited to a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us at" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us immediately. Contact information is listed at:" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "" + +#: lms/templates/emails/email_change.txt +msgid "" +"We received a request to change the e-mail associated with your " +"{platform_name} account from {old_email} to {new_email}. If this is correct," +" please confirm your new e-mail address by visiting:" +msgstr "" + +#: lms/templates/emails/email_change_subject.txt +msgid "Request to change {platform_name} account e-mail" +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "Dear student," +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"You have been invited to join {course_name} at {site_name} by a member of " +"the course staff." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "To access the course visit {course_url} and login." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To access the course visit {course_about_url} and register for the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To finish your registration, please visit {registration_url} and fill out " +"the registration form making sure to use {email_address} in the E-mail " +"field." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, you will see " +"{course_name} listed on your dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, visit " +"{course_about_url} to join the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedsubject.txt +msgid "You have been invited to register for {course_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "" +"You have been enrolled in {course_name} at {site_name} by a member of the " +"course staff. The course should now appear on your {site_name} dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "This email was automatically sent from {site_name} to {full_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledsubject.txt +msgid "You have been enrolled in {course_name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Hi {name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"Your payment was successful. You will see the charge below on your next " +"credit or debit card statement." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"The charge will show up on your statement under the company name " +"{merchant_name}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"If you have billing questions, please read the FAQ ({faq_url}) or contact " +"{billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "If you have billing questions, please contact {billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "-The {platform_name} Team" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Your order number is: {order_number}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "The items in your order are:" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Quantity - Description - Price" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/shoppingcart/receipt.html +msgid "#:" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the tech support at" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the course staff at ta@edx.org." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +msgid "" +"You have been removed as a beta tester for {course_name} at {site_name} by a" +" member of the course staff. The course will remain on your dashboard, but " +"you will no longer be part of the beta testing group." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Your other courses have not been affected." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_subject.txt +msgid "You have been removed from a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "Dear Student," +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "" +"You have been un-enrolled from course {course_name} by a member of the " +"course staff. Please disregard the invitation previously sent." +msgstr "" + +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "" +"You have been un-enrolled in {course_name} at {site_name} by a member of the" +" course staff. The course will no longer appear on your {site_name} " +"dashboard." +msgstr "" + +#: lms/templates/emails/unenroll_email_subject.txt +msgid "You have been un-enrolled from {course_name}" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "{course_number} Staff Grading" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"This is the list of problems that currently need to be graded in order to " +"train AI grading and create calibration essays for peer grading. Each " +"problem needs to be treated separately, and we have indicated the number of " +"student submissions that need to be graded. You can grade more than the " +"minimum required number of submissions--this will improve the accuracy of AI" +" grading, though with diminishing returns. You can see the current accuracy " +"of AI grading in the problem view." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Problem List" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"Please note that when you see a submission here, it has been temporarily " +"removed from the grading pool. The submission will return to the grading " +"pool after 30 minutes without any grade being submitted. Hitting the back " +"button will result in a 30 minute wait to be able to grade this submission " +"again." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Prompt" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "(Hide)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Student Response" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Written Feedback" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Feedback for student (optional)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Flag as inappropriate content for later review" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Skip" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Score Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"The chart below displays the score distribution for each standard problem in" +" your class, specified by the problem's url name." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"Scores are shown without weighting applied, so if your problem contains 2 " +"questions, it will display as having a total of 2 points." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Loading problem list..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Gender Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Enrollment Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Total number of enrollees (instructors, staff members, and students)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Basic Course Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Display Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course started?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Yes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course ended?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Grade Cutoffs:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "The status for any active tasks appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Warnings" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 +msgid "" +"For large courses, generating this report may take several hours. Please be " +"patient and do not click the button multiple times. Clicking the button " +"multiple times will significantly slow the grade generation process." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The report is generated in the background, meaning it is OK to navigate away" +" from this page while your report is generating." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Grade Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports Available for Download" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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. +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Note: To keep student data secure, you cannot save or email these " +"links for direct access. Copies of links expire within 5 minutes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Individual due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"In this section, you have the ability to grant extensions on specific units " +"to individual students. Please note that the latest date is always taken; " +"you cannot use this tool to make an assignment due earlier for a particular " +"student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Choose the graded unit:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the extension due date and time (in UTC; please specify MM/DD/YYYY " +"HH:MM)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Change due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Viewing granted extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Here you can see what extensions have been granted on particular units or " +"for a particular student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Choose a graded unit and click the button to obtain a list of all students " +"who have extensions for the given unit." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List all students with due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Specify a specific student to see all of that student's extensions." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List date extensions for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Resetting extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Resetting a problem's due date rescinds a due date extension for a student " +"on a particular unit. This will revert the due date for the student back to " +"the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reset due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Back to Standard Dashboard" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "section_display_name" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"You will not get notification for emails that bounce, so please double-check" +" spelling." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Email Addresses/Usernames" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Auto Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not yet registered for " +"{platform_name} will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is left unchecked, users who have not yet registered" +" for {platform_name} will not be enrolled, but will be allowed to enroll " +"once they make an account." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Notify users by email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users will receive an email " +"notification." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Unenroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Beta Tester Addition" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Note: Users must have an activated {platform_name} account before they can " +"be enrolled as a beta tester." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add beta testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Remove beta testers" +msgstr "" + +#. Translators: an "Administration List" is a list, such as Course Staff, that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Administration List Management" +msgstr "" + +#. Translators: an "Administrator Group" is a group, such as Course Staff, +#. that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Select an Administrator Group:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Getting available lists..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Staff cannot modify staff or beta tester lists. To modify these lists, " +"contact your instructor and ask them to add you as an instructor for staff " +"and beta lists, or a discussion admin for discussion management." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Course Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course staff can help you manage limited aspects of your course. Staff can " +"enroll and unenroll students, as well as modify their grades and see all " +"course data. Course staff are not automatically given access to Studio and " +"will not be able to edit your course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Instructors" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Instructors are the core administration of your course. Instructors can add " +"and remove course staff, as well as administer discussion access." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Instructor" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Beta Testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Beta testers can see course content before the rest of the students. They " +"can make sure that the content works, but have no additional privileges." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Beta Tester" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Admins" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion admins can edit or delete any post, clear misuse flags, close and" +" re-open threads, endorse responses, and see posts from all cohorts. They " +"CAN add/delete other moderators and their posts are marked as 'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Discussion Admin" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Moderators" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion moderators can edit or delete any post, clear misuse flags, close" +" and re-open threads, endorse responses, and see posts from all cohorts. " +"They CANNOT add/delete other moderators and their posts are marked as " +"'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Moderator" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Community TAs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Community TA's are members of the community whom you deem particularly " +"helpful on the discussion boards. They can edit or delete any post, clear " +"misuse flags, close and re-open threads, endorse responses, and see posts " +"from all cohorts. Their posts are marked 'Community TA'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Community TA" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Reload Graphs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Count of Students Opened a Subsection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send Email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Message:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Please try not to email students more than once per week. Before sending " +"your email, consider:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Email actions run in the background. The status for any active tasks - " +"including email tasks - appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"To see the status for all bulk email tasks ever submitted for this course, " +"click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade inspection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Email or Username" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Click this link to view the student's progress page:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Progress Page" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade adjustment" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem urlname" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is {location1}, then just provide the " +"{urlname1}. If the location is {location2}, then provide {urlname2}.)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Next, select an action to perform for the given user and problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset Student Attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Student Submission" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may also delete the entire state of a student for the specified problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Delete Student State for Problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" the 'Pending Instructor Tasks' table. To see status for all tasks submitted" +" for this problem and student, click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Then select an action" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset ALL students' attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore ALL students' problem submissions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"The above actions run in the background, and status for active tasks will " +"appear in a table on the Course Info tab. To see status for all tasks " +"submitted for this problem, click on this button" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Problem" +msgstr "" + +#: lms/templates/licenses/serial_numbers.html +msgid "None Available" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Change Preferred Language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Please choose your preferred language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Save Language Settings" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "" +"Don't see your preferred language? {link_start}Volunteer to become a " +"translator!{link_end}" +msgstr "" + +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/modal/accessible_confirm.html +msgid "modal open" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "{course_number} Combined Notifications" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Open Ended Console" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Here are items that could potentially need your attention." +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "No items require attention at the moment." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "{course_number} Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "" +"Here are a list of open ended problems for this course that have been " +"flagged by students as potentially inappropriate." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "No flagged problems exist." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Unflag" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Ban" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "{course_number} Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Here is a list of open ended problems for this course." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "You have not attempted any open ended problems yet." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Problem Name" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Grader Type" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"\n" +"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" +"{ul_tag}\n" +"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" +"{li_tag}The instructor needs to score the essays that are used to help you better understand the grading\n" +"criteria.{end_li_tag}\n" +"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"Here are a list of problems that need to be peer graded for this course." +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Graded" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Available" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Required" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "No due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "" +"The due date has passed, and peer grading for this problem is closed at this" +" time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "The due date has passed, and peer grading is closed at this time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to Grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Please include some written feedback as well." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"This submission has explicit, offensive, or (I suspect) plagiarized content." +" " +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "How did I do?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Continue" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Ready to grade!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You have finished learning to grade, which means that you are now ready to " +"start grading." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start Grading!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "You have not yet finished learning to grade this problem." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You will now be shown a series of instructor-scored essays, and will be " +"asked to score them yourself." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"Once you can score the essays similarly to an instructor, you will be ready " +"to grade your peers." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Are you sure that you want to flag this submission?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You are about to flag a submission. You should only flag a submission that " +"contains explicit, offensive, or (suspected) plagiarized content. If the " +"submission is not addressed to the question or is incorrect, you should give" +" it a score of zero and accompanying feedback instead of flagging it." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Remove Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Keep Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Go Back" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "Thanks For Registering!" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "" +"Your account is not active yet. An activation link has been sent to {email}," +" along with instructions for activating your account." +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Activation Complete!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Account already active!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "You can now {link_start}log in{link_end}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Activation Invalid" +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "" +"Something went wrong. Check to make sure the URL you went to was correct -- " +"e-mail programs will sometimes split it into two lines. If you still have " +"issues, e-mail us to let us know what happened at {email}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Or you can go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "Password reset successful" +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "" +"We've e-mailed you instructions for setting your password to the e-mail " +"address you submitted. You should be receiving it shortly." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Data" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "These reports are delimited by start and end dates." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"These reports are delimited alphabetically by university name. i.e., " +"generating a report with 'Start Letter' A and 'End Letter' C will generate " +"reports for all universities starting with A, B, and C." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Letter: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Letter: " +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "Payment Error" +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "There was an error processing your order!" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your Shopping Cart" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your selected items:" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Unit Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Total Amount" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "You have selected no items for purchase." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Register for [Course Name] | Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid " () Electronic Receipt" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Order #" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Date:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Items ordered:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Qty" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Note: items with strikethough like " +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid " have been refunded." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Billed To:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are now registered for: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Registered as: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Your Progress" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Current Step: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Intro" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take ID Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Review" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Make Payment" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Confirmation" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Congratulations! You are now verified on " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"You are now registered as a verified student! Your registration details are " +"below." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are registered for:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "A list of courses you have just registered for as a verified student" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Options" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Starts: {start_date}" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to Course" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to your Dashboard" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Verified Status" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"We have received your identification details to verify your identity. If " +"there is a problem with any of the items, we will contact you to resubmit. " +"You can now register for any of the verified certificate courses this " +"semester without having to re-verify." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"The professor will ask you to periodically submit a new photo to verify your" +" work during the course (usually at exam times)." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Payment Details" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"Please print this page for your records; it serves as your receipt. You will" +" also receive an email with the same information." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Order No." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Total" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "this" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Billed To" +msgstr "" + +#: lms/templates/static_templates/404.html +msgid "" +"The page that you were looking for was not found. Go back to the " +"{link_start}homepage{link_end} or let us know about any pages that may have " +"been moved at {email}." +msgstr "" + +#: lms/templates/static_templates/about.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/faq.html +#: lms/templates/static_templates/help.html +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/tos.html +msgid "" +"This page left intentionally blank. It is not used by edx.org but is left " +"here for possible use by installations of Open edX." +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "This Course Unavailable In Your Country" +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "" +"Our system indicates that you are trying to access an edX course from an IP " +"address associated with a country currently subjected to U.S. economic and " +"trade sanctions. Unfortunately, at this time edX must comply with export " +"controls, and we cannot allow you to access this particular course. Feel " +"free to browse our catalogue to find other courses you may be interested in " +"taking." +msgstr "" + +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/honor.html +msgid "Honor Code" +msgstr "" + +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/media-kit.html +msgid "Media Kit" +msgstr "" + +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/press.html +msgid "In the Press" +msgstr "" + +#: lms/templates/static_templates/server-down.html +msgid "Currently the {platform_name} servers are down" +msgstr "" + +#: lms/templates/static_templates/server-down.html +#: lms/templates/static_templates/server-overloaded.html +msgid "" +"Our staff is currently working to get the site back up as soon as possible. " +"Please email us at {tech_support_email} to report any problems or downtime." +msgstr "" + +#: lms/templates/static_templates/server-error.html +msgid "There has been a 500 error on the {platform_name} servers" +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}." +msgstr "" + +#: lms/templates/static_templates/server-overloaded.html +msgid "Currently the {platform_name} servers are overloaded" +msgstr "" + +#: lms/templates/university_profile/edge.html +#: lms/templates/university_profile/edge.html +msgid "edX edge" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Log in to your courses" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Register for classes" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Take free online courses from today's leading universities." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Edit Your Name" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "The following error occurred while editing your name:" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "" +"To uphold the credibility of {platform} certificates, all name changes will " +"be logged and recorded." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Change my name" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Why Do I Need to Re-Verify?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity. We will send the new photo to be matched up with the photo of the " +"original ID you submitted when you signed up for the course." +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Having Technical Trouble?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Have questions?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please read {a_start}our FAQs to view common questions about our " +"certificates{a_end}." +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are upgrading your registration for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are re-verifying for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are registering for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Upgrading to:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Re-verifying for:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Registering as: " +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Change your mind?" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "You can always continue to audit the course without verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You can always {a_start} audit the course for free {a_end} without " +"verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "Technical Requirements" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)." +msgstr "" + +#: lms/templates/verify_student/face_upload.html +msgid "Edit Your Full Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Re-Verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Webcam Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Flash Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have Flash installed. {a_start} Get Flash {a_end} to " +"continue your registration." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Error submitting your images" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Oops! Something went wrong. Please confirm your details and try again." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with your " +"original verification." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Don't see your picture? Make sure to allow your browser to use your camera " +"when it asks for permission." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Take photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Looks good" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Tips on taking a successful photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your face is well-lit" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be sure your entire face is inside the frame" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Can we match the photo you took with the one on your ID?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once in position, use the camera button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your picture" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Use the checkmark button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "once you are happy with the photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Common Questions" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need my photo?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"As part of the verification process, we need your photo to confirm that you " +"are you." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "What do you do with this picture?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "We only use it to verify your identity. It is not displayed anywhere." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches the ID " +"you originally submitted. We will also use this as the name on your " +"certificate." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Edit your name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Once you verify your photo looks good and your name is correct, you can " +"finish your re-verification and return to your course. Note: You " +"will not have another chance to re-verify." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Yes! You can confirm my identity with this information." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Submit photos & re-verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Verification Submission Confirmation" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Your Credentials Have Been Updated" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"We have received your re-verification details and submitted them for review." +" Your dashboard will show the notification status once the review is " +"complete." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"Please note: The professor may ask you to re-verify again at other key " +"points in the course." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "Complete your other re-verifications" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Return to where you left off" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Reverification Status" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You are in the ID Verified track" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following courses:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Re-verify by {date}" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following course:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You have no re-verifications at present." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "The status of your submitted re-verifications:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Failed" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Don't want to re-verify right now?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Why do I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity by submitting a new photo of your face. We will send the new photo " +"to be matched up with the photo of the original ID you submitted when you " +"signed up for the course. If you are taking multiple courses, you may need " +"to re-verify multiple times, once for every important point in each course " +"you are taking as a verified student." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What will I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because you are just confirming that you are still you, the only thing you " +"will need to do to re-verify is to submit a new photo of your face with " +"your webcam. The process is quick and you will be brought back to where " +"you left off so you can keep on learning." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"If you changed your name during the semester and it no longer matches the " +"original ID you submitted, you will need to re-edit your name to match as " +"well." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What if I have trouble with my re-verification?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because of the short time that re-verification is open, you will not" +" be able to correct a failed verification. If you think there was " +"an error in the review, please contact us at {email}" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Verification" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Please Resubmit Your Verification Information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"There was an error with your previous verification. In order proceed in the " +"verified certificate of achievement track of your current courses, please " +"complete the following steps." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with the " +"picture on your ID." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your photo looks good, you can move on to step 2." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Go to Step 2: Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show Us Your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your ID so we can match it with your " +"photo and the name on your account." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your ID is well-lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Acceptable IDs include drivers licenses, passports, or other goverment-" +"issued IDs that include your name and photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check that there isn't any glare" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Ensure that you can see your photo and read your name" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Try to keep your fingers at the edge to avoid covering important information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need a photo of my ID?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We need to match your ID with your photo and name to confirm that you are " +"you." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We encrypt it and send it to our secure authorization service for review. We" +" use the highest levels of security and do not save the photo or information" +" anywhere once the match has been completed." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your ID photo looks good, you can move on to step 3." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 3: Review Your Info" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Verify Your Submission" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure we can verify your identity with the photos and information below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Review the Photos You've Re-Taken" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Please review the photos and verify that they meet the requirements listed " +"below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo above needs to meet the following requirements:" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be well lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show your whole face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo on your ID must match the photo of your face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be readable (not too far away, no glare)" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The name on your ID must match the name on your account below" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Photos don't meet the requirements?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake Your Photos" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches your ID. " +"We will also use this as the name on your certificate." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"Once you verify your details match the requirements, you can move onto to " +"confirm your re-verification submisssion." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Yes! My details all match." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Upgrade Your Registration for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/verified.html +msgid "Register for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue registering, or select to {a_start} audit " +"the course for free {a_end} without verifying." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Error processing your order" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Oops! Something went wrong. Please confirm your details again and click the " +"button to move on to payment. If you are still having trouble, please try " +"again later." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "What if my camera isn't working?" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 2: Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Review the Photos You've Taken" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Contribution Level" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Please confirm your contribution for this course (min. $" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Once you verify your details match the requirements, you can move on to step" +" 4, payment on our secure server." +msgstr "" + +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course}, you need to re-verify your" +" identity by {date}. Go to URL." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +msgid "" +"We've captured your re-submitted information and will review it to verify " +"your identity shortly. You should receive an update to your veriication " +"status within 1-2 days. In the meantime, you still have access to all of " +"your course content." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Return to Your Dashboard" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Re-Verification Failed" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "" +"Your re-verification was submitted after the re-verification deadline, and " +"you can no longer be re-verified." +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Please contact support if you believe this message to be in error." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Upgrade Your Registration for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Register for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "You need to activate your edX account before proceeding" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please check your email for further instructions on activating your new " +"account." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Upgrade" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to upgrade to being an ID verified " +"student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Register" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to register as an ID verified student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Activate Your Account" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Check your email" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"you need an active edX account before registering - check your email for " +"instructions" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Identification" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A photo identification document" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"a drivers license, passport, or other goverment or school-issued ID with " +"your name and picture on it" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Webcam" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A webcam and a modern browser" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " +"{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please make sure your browser is updated to the most recent version possible" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Credit or Debit Card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A major credit or debit card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Visa, Master Card, American Express, Discover, Diners Club, JCB with " +"Discover logo" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always continue to audit this course instead." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always {a_start}audit this course instead{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Go to Step 1: Take my Photo" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "ID Verification" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You've Been Verified Previously" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "" +"We've already verified your identity (through the photos of you and your ID " +"you provided earlier). You can proceed to make your secure payment and " +"complete registration." +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You have decided to pay $ " +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}(active){span_end}" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "Changes" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}active{span_end}" +msgstr "" + +#: lms/templates/wiki/includes/breadcrumbs.html +msgid "Add article" +msgstr "" + +#: cms/templates/404.html +msgid "The page that you were looking for was not found." +msgstr "" + +#: cms/templates/404.html +msgid "" +"Go back to the {homepage} or let us know about any pages that may have been " +"moved at {email}." +msgstr "" + +#: cms/templates/500.html +msgid "Studio Server Error" +msgstr "" + +#: cms/templates/500.html +msgid "The Studio servers encountered an error" +msgstr "" + +#: cms/templates/500.html +msgid "" +"An error occurred in Studio and the page could not be loaded. Please try " +"again in a few moments." +msgstr "" + +#: cms/templates/500.html +msgid "" +"We've logged the error and our staff is currently working to resolve this " +"error as soon as possible." +msgstr "" + +#: cms/templates/500.html +msgid "If the problem persists, please email us at {email_link}." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +#: cms/templates/activation_invalid.html +msgid "Studio Account Activation" +msgstr "" + +#: cms/templates/activation_active.html +msgid "Your account is already active" +msgstr "" + +#: cms/templates/activation_active.html +msgid "" +"This account, set up using {0}, has already been activated. Please sign in " +"to start working within edX Studio." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +msgid "Sign into Studio" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "Your account activation is complete!" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "" +"Thank you for activating your account. You may now sign in and start using " +"edX Studio to author courses." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Your account activation is invalid" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"We're sorry. Something went wrong with your activation. Check to make sure " +"the URL you went to was correct — e-mail programs will sometimes split" +" it into two lines." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"If you still have issues, contact edX Support. In the meatime, you can also " +"return to" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Contact edX Support" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/widgets/header.html +msgid "Files & Uploads" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Uploading…" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +msgid "Choose File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/asset_index.html +msgid "Upload New File" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Load Another File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/course_info.html +#: cms/templates/edit-tabs.html cms/templates/overview.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Content" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/course_info.html cms/templates/edit-tabs.html +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/textbooks.html +msgid "Page Actions" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + +#: cms/templates/asset_index.html +msgid "What files are listed here?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"In addition to the files you upload on this page, any files that you add to " +"the course appear in this list. These files include your course image, " +"textbook chapters, and files that appear on your Course Handouts sidebar." +msgstr "" + +#: cms/templates/asset_index.html +msgid "File URLs" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the Embed URL value to link to the file or image from a component, a" +" course update, or a course handout." +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the External URL value to reference the file or image from outside " +"of your course. Do not use the External URL as a link value within your " +"course." +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/overview.html cms/templates/settings_graders.html +msgid "What can I do on this page?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You can upload new files or view, download, or delete existing files. You " +"can lock a file so that people who are not enrolled in your course cannot " +"access that file." +msgstr "" + +#: cms/templates/asset_index.html +msgid "Your file has been deleted." +msgstr "" + +#: cms/templates/asset_index.html +msgid "close alert" +msgstr "" + +#: cms/templates/checklists.html cms/templates/export.html +#: cms/templates/export_git.html cms/templates/import.html +#: cms/templates/widgets/header.html +msgid "Tools" +msgstr "" + +#: cms/templates/checklists.html +msgid "Course Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "Current Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "What are course checklists?" +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Course checklists are tools to help you understand and keep track of all the" +" steps necessary to get your course ready for students." +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Any changes you make to these checklists are saved automatically and are " +"immediately visible to other course team members." +msgstr "" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +msgid "Duplicate" +msgstr "" + +#: cms/templates/component.html +msgid "Duplicate this component" +msgstr "" + +#: cms/templates/component.html +msgid "Delete this component" +msgstr "" + +#: cms/templates/component.html cms/templates/container_xblock_component.html +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/overview.html cms/templates/overview.html +msgid "Drag to reorder" +msgstr "" + +#: cms/templates/container.html +msgid "Container" +msgstr "" + +#: cms/templates/container.html +msgid "This page has no content yet." +msgstr "" + +#: cms/templates/container.html cms/templates/container.html +msgid "Publishing Status" +msgstr "" + +#: cms/templates/container.html +msgid "Published" +msgstr "" + +#: cms/templates/container.html +msgid "" +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." +msgstr "" + +#: cms/templates/course_info.html cms/templates/course_info.html +msgid "Course Updates" +msgstr "" + +#: cms/templates/course_info.html +msgid "New Update" +msgstr "" + +#: cms/templates/course_info.html +msgid "" +"Use course updates to notify students of important dates or exams, highlight" +" particular discussions in the forums, announce schedule changes, and " +"respond to student questions. You add or edit updates in HTML." +msgstr "" + +#. Translators: Pages refer to the tabs that appear in the top navigation of +#. each course. +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/export.html cms/templates/widgets/header.html +msgid "Pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "New Page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit_subsection.html +#: cms/templates/index.html cms/templates/overview.html +#: cms/templates/unit.html +msgid "View Live" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Show this page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "Show/hide page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "This page cannot be reordered" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "You can add additional custom pages to your course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Add a New Page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "What are pages?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages are listed horizontally at the top of your course. Default pages " +"(Courseware, Course info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages that you create." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Custom pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"You can create and edit custom pages to provide students with additional " +"course content. For example, you can create pages for the grading policy, " +"course slides, and a course calendar. " +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "How do pages look to students in my course?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Students see the default and custom pages at the top of your course and use " +"these links to navigate." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "See an example" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Pages in Your Course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Preview of Pages in your course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages appear in your course's top navigation bar. The default pages " +"(Courseware, Course Info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages." +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/howitworks.html +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "close modal" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "CMS Subsection" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/unit.html +msgid "Display Name:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Units:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Subsection Settings" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Day" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Time" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/edit_subsection.html +#: cms/templates/overview.html +msgid "Coordinated Universal Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "UTC" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "" +"The date above differs from the release date of {name}, which is unset." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "The date above differs from the release date of {name} - {start_time}" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Sync to {name}." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Graded as:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Set a due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Day" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Remove due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Preview Drafts" +msgstr "" + +#: cms/templates/error.html +msgid "Internal Server Error" +msgstr "" + +#: cms/templates/error.html +msgid "The Page You Requested Page Cannot be Found" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. We couldn't find the Studio page you're looking for. You may " +"want to return to the Studio Dashboard and try again. If you are still " +"having problems accessing things, please feel free to {link_start}contact " +"Studio support{link_end} for further help." +msgstr "" + +#: cms/templates/error.html cms/templates/error.html +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Use our feedback tool, Tender, to share your feedback" +msgstr "" + +#: cms/templates/error.html +msgid "The Server Encountered an Error" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. There was a problem with the server while trying to process " +"your last request. You may want to return to the Studio Dashboard or try " +"this request again. If you are still having problems accessing things, " +"please feel free to {link_start}contact Studio support{link_end} for further" +" help." +msgstr "" + +#: cms/templates/error.html +msgid "Back to dashboard" +msgstr "" + +#: cms/templates/export.html cms/templates/export.html +msgid "Course Export" +msgstr "" + +#: cms/templates/export.html +msgid "About Exporting Courses" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export courses and edit them outside of Studio. The exported file is" +" a .tar.gz file (that is, a .tar file compressed with GNU Zip) that contains" +" the course structure and content. You can also re-import courses that " +"you've exported." +msgstr "" + +#: cms/templates/export.html +msgid "Export My Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Export Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}exported with{em_end} your course:" +msgstr "" + +#: cms/templates/export.html +msgid "Course Content (all Sections, Sub-sections, and Units)" +msgstr "" + +#: cms/templates/export.html +msgid "Course Structure" +msgstr "" + +#: cms/templates/export.html +msgid "Individual Problems" +msgstr "" + +#: cms/templates/export.html +msgid "Course Assets" +msgstr "" + +#: cms/templates/export.html +msgid "Course Settings" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}not exported{em_end} with your course:" +msgstr "" + +#: cms/templates/export.html +msgid "User Data" +msgstr "" + +#: cms/templates/export.html +msgid "Course Team Data" +msgstr "" + +#: cms/templates/export.html +msgid "Forum/discussion Data" +msgstr "" + +#: cms/templates/export.html +msgid "Certificates" +msgstr "" + +#: cms/templates/export.html +msgid "Why export a course?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your course directly, outside of Studio. You" +" may want to create a backup copy of your course. Or, you may want to create" +" a copy of your course that you can later import into another course " +"instance and customize." +msgstr "" + +#: cms/templates/export.html +msgid "What content is exported?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are exported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, is not exported." +msgstr "" + +#: cms/templates/export.html +msgid "Opening the downloaded file" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the course.xml file, as well as subfolders that contain course" +" content." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git" +msgstr "" + +#: cms/templates/export_git.html cms/templates/export_git.html +#: cms/templates/widgets/header.html +msgid "Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "About Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "Use this to export your course to its git repository." +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"This will then trigger an automatic update of the main LMS site and update " +"the contents of your course visible there to students if automatic git " +"imports are configured." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git:" +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"giturl must be defined in your course settings before you can export to git." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Failed" +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Succeeded" +msgstr "" + +#: cms/templates/export_git.html +msgid "Your course:" +msgstr "" + +#: cms/templates/export_git.html +msgid "Course git url:" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome to" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio helps manage your courses online, so you can focus on teaching them" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Studio's Many Features" +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "Studio Helps You Keep Your Courses Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Keeping Your Course Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"The backbone of your course is how it is organized. Studio offers an " +"Outline editor, providing a simple hierarchy and easy drag " +"and drop to help you and your students stay organized." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple Organization For Content" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio uses a simple hierarchy of sections and " +"subsections to organize your content." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Change Your Mind Anytime" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Draft your outline and build content anywhere. Simple drag and drop tools " +"let your reorganize quickly." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Go A Week Or A Semester At A Time" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Build and release sections to your students incrementally. " +"You don't have to have it all done at once." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html +msgid "Learning is More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio lets you weave your content together in a way that reinforces " +"learning — short video lectures interleaved with exercises and more. " +"Insert videos and author a wide variety of exercise types with just a few " +"clicks." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Create Learning Pathways" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Help your students understand a small interactive piece at a time with " +"multimedia, HTML, and exercises." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work Visually, Organize Quickly" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Work visually and see exactly what your students will see. Reorganize all " +"your content with drag and drop." +msgstr "" + +#: cms/templates/howitworks.html +msgid "A Broad Library of Problem Types" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"It's more than just multiple choice. Studio has nearly a dozen types of " +"problems to challenge your learners." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "" +"Studio Gives You Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio works like web applications you already know, yet understands how you" +" build curriculum. Instant publishing to the web when you want it, " +"incremental release when it makes sense. And with co-authors, you can have a" +" whole team building a course, together." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Instant Changes" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Caught a bug? No problem. When you want, your changes to live when you hit " +"Save." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Release-On Date Publishing" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"When you've finished a section, pick when you want it to go" +" live and Studio takes care of the rest. Build your course incrementally." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work in Teams" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Co-authors have full access to all the same authoring tools. Make your " +"course better through a team effort." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up for Studio Today!" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up & Start Making an edX Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Already have a Studio Account? Sign In" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Outlining Your Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simple two-level outline to organize your couse. Drag and drop, and see your" +" course at a glance." +msgstr "" + +#: cms/templates/howitworks.html +msgid "More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Quickly create videos, text snippets, inline discussions, and a variety of " +"problem types." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Publishing on Date" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simply set the date of a section or subsection, and Studio will publish it " +"to your students for you." +msgstr "" + +#: cms/templates/html_error.html +msgid "We're having trouble rendering your component" +msgstr "" + +#: cms/templates/html_error.html +msgid "" +"Students will not be able to access this component. Re-edit your component " +"to fix the error." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Course Import" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a course before continuing. Content of the " +"imported course replaces all the content of this course. {em_start}You " +"cannot undo a course import{em_end}. We recommend that you first export the " +"current course, so you have a backup copy of it." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "" +"The course that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " +"It may also contain other files." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your course until the import operation has completed." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Course Content" +msgstr "" + +#: cms/templates/import.html +msgid "Choose a File to Import" +msgstr "" + +#: cms/templates/import.html +msgid "File Chosen:" +msgstr "" + +#: cms/templates/import.html +msgid "Replace my course with the one above" +msgstr "" + +#: cms/templates/import.html +msgid "Course Import Status" +msgstr "" + +#: cms/templates/import.html +msgid "Uploading" +msgstr "" + +#: cms/templates/import.html +msgid "Transferring your file to our servers" +msgstr "" + +#: cms/templates/import.html +msgid "Unpacking" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Expanding and preparing folder/file structure (You can now leave this page " +"safely, but avoid making drastic changes to content until this import is " +"complete)" +msgstr "" + +#: cms/templates/import.html +msgid "Verifying" +msgstr "" + +#: cms/templates/import.html +msgid "Reviewing semantics, syntax, and required data" +msgstr "" + +#: cms/templates/import.html +msgid "Updating Course" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this course. This may take a while " +"with larger courses." +msgstr "" + +#: cms/templates/import.html +msgid "Success" +msgstr "" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this course" +msgstr "" + +#: cms/templates/import.html +msgid "View Updated Outline" +msgstr "" + +#: cms/templates/import.html +msgid "Why import a course?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"You may want to run a new version of an existing course, or replace an " +"existing course altogether. Or, you may have developed a course outside " +"Studio." +msgstr "" + +#: cms/templates/import.html +msgid "What content is imported?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are imported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, remains the same as it was in the existing course." +msgstr "" + +#: cms/templates/import.html +msgid "Warning: Importing while a course is running" +msgstr "" + +#: cms/templates/import.html +msgid "" +"If you perform an import while your course is running, and you change the " +"URL names (or url_name nodes) of any Problem components, the student data " +"associated with those Problem components may be lost. This data includes " +"students' problem scores." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error during the upload process." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while unpacking the file." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while verifying the file you submitted." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while importing the new course to our database." +msgstr "" + +#: cms/templates/import.html +msgid "Your import has failed." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Choose new file" +msgstr "" + +#: cms/templates/import.html +msgid "Your import is in progress; navigating away will abort it." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +#: cms/templates/widgets/header.html +msgid "My Courses" +msgstr "" + +#: cms/templates/index.html +msgid "New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Email staff to create course" +msgstr "" + +#: cms/templates/index.html +msgid "Welcome, {0}!" +msgstr "" + +#: cms/templates/index.html +msgid "Here are all of the courses you currently have access to in Studio:" +msgstr "" + +#: cms/templates/index.html +msgid "You currently aren't associated with any Studio Courses." +msgstr "" + +#: cms/templates/index.html +msgid "Please correct the highlighted fields below." +msgstr "" + +#: cms/templates/index.html +msgid "Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Required Information to Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. Introduction to Computer Science" +msgstr "" + +#: cms/templates/index.html +msgid "The public display name for your course." +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +msgid "Organization" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. UniversityX or OrganizationX" +msgstr "" + +#: cms/templates/index.html +msgid "The name of the organization sponsoring the course." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed." +msgstr "" + +#: cms/templates/index.html +msgid "" +"This cannot be changed, but you can set a different display name in Advanced" +" Settings later." +msgstr "" + +#: cms/templates/index.html +msgid "e.g. CS101" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The unique number that identifies your course within your organization." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed and it cannot be changed." +msgstr "" + +#: cms/templates/index.html +msgid "Course Run" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. 2014_T1" +msgstr "" + +#: cms/templates/index.html +msgid "The term in which your course will run." +msgstr "" + +#: cms/templates/index.html +msgid "Create" +msgstr "" + +#: cms/templates/index.html +msgid "Course Run:" +msgstr "" + +#: cms/templates/index.html +msgid "Are you staff on an existing Studio course?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"You will need to be added to the course in Studio by the course creator. " +"Please get in touch with the course creator or administrator for the " +"specific course you are helping to author." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Create Your First Course" +msgstr "" + +#: cms/templates/index.html +msgid "Your new course is just a click away!" +msgstr "" + +#: cms/templates/index.html +msgid "Becoming a Course Creator in Studio" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team will " +"evaluate your request and provide you feedback within 24 hours during the " +"work week." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status:" +msgstr "" + +#: cms/templates/index.html +msgid "Request the Ability to Create Courses" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is has " +"completed evaluating your request." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator request is:" +msgstr "" + +#: cms/templates/index.html +msgid "Denied" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request did not meet the criteria/guidelines specified by edX Staff." +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is " +"currently evaluating your request." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request is currently being reviewed by edX staff and should be updated " +"shortly." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Need help?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"If you are new to Studio and having trouble getting started, there are a few" +" things that may be of help:" +msgstr "" + +#: cms/templates/index.html +msgid "Get started by reading Studio's Documentation" +msgstr "" + +#: cms/templates/index.html +msgid "Request help with Studio" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Can I create courses in Studio?" +msgstr "" + +#: cms/templates/index.html +msgid "In order to create courses in Studio, you must" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX staff to help you create a course" +msgstr "" + +#: cms/templates/index.html +msgid "" +"In order to create courses in Studio, you must have course creator " +"privileges to create your own course." +msgstr "" + +#: cms/templates/index.html +msgid "Your request to author courses in studio has been denied. Please" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX Staff with further questions" +msgstr "" + +#: cms/templates/index.html +msgid "Thanks for signing up, %(name)s!" +msgstr "" + +#: cms/templates/index.html +msgid "We need to verify your email address" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Almost there! In order to complete your sign up we need you to verify your " +"email address (%(email)s). An activation message and next steps should be " +"waiting for you there." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Please check your Junk or Spam folders in case our email isn't in your " +"INBOX. Still can't find the verification email? Request help via the link " +"below." +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/header.html +msgid "Sign In" +msgstr "" + +#: cms/templates/login.html cms/templates/login.html +msgid "Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html +msgid "Don't have a Studio Account? Sign up!" +msgstr "" + +#: cms/templates/login.html +msgid "Required Information to Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +msgid "Email Address" +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/sock.html +msgid "Studio Support" +msgstr "" + +#: cms/templates/login.html +msgid "" +"Having trouble with your account? Use {link_start}our support " +"center{link_end} to look over self help steps, find solutions others have " +"found to the same problem, or let us know of your issue." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Settings" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Course Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a User to Your Course's Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member Information" +msgstr "" + +#: cms/templates/manage_users.html +msgid "User's Email Address" +msgstr "" + +#: cms/templates/manage_users.html +msgid "e.g. jane.doe@gmail.com" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Please provide the email address of the course staff member you'd like to " +"add" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add User" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "Current Role:" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "You!" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Staff" +msgstr "" + +#: cms/templates/manage_users.html +msgid "send an email message to {email}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Promote another member to Admin to remove your admin rights" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Remove Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Delete the user, {username}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Team Members to This Course" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Adding team members makes course authoring collaborative. Users must be " +"signed up for Studio and have an active account. " +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Roles" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Course team members, or staff, are course co-authors. They have full writing" +" and editing privileges on all course content." +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Admins are course team members who can add and remove other course team " +"members." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Transferring Ownership" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Every course must have an Admin. If you're the Admin and you want transfer " +"ownership of the course, click Add admin access to make another user the " +"Admin, then ask that user to remove you from the Course Team list." +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Course Outline" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html +msgid "Expand/collapse this section" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Section Name" +msgstr "" + +#: cms/templates/overview.html +msgid "Add a new section name" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Delete this section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to re-order" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Subsection" +msgstr "" + +#: cms/templates/overview.html cms/templates/widgets/units.html +msgid "New Unit" +msgstr "" + +#: cms/templates/overview.html +msgid "You haven't added any sections to your course outline yet." +msgstr "" + +#: cms/templates/overview.html +msgid "Add your first section" +msgstr "" + +#: cms/templates/overview.html +msgid "Collapse All Sections" +msgstr "" + +#: cms/templates/overview.html +msgid "New Section" +msgstr "" + +#: cms/templates/overview.html +msgid "This section is not scheduled for release" +msgstr "" + +#: cms/templates/overview.html +msgid "Schedule" +msgstr "" + +#: cms/templates/overview.html +msgid "Release date:" +msgstr "" + +#: cms/templates/overview.html +msgid "Edit section release date" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to reorder section" +msgstr "" + +#: cms/templates/overview.html +msgid "Expand/collapse this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"You can create new sections and subsections, set the release date for " +"sections, and create new units in existing subsections. You can set the " +"assignment type for subsections that are to be graded, and you can open a " +"subsection for further editing." +msgstr "" + +#: cms/templates/overview.html +msgid "" +"In addition, you can drag and drop sections, subsections, and units to " +"reorganize your course." +msgstr "" + +#: cms/templates/overview.html +msgid "Section Release Date" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"On the date set below, this section - {name} - will be released to students." +" Any units marked private will only be visible to admins." +msgstr "" + +#: cms/templates/overview.html +msgid "Form Actions" +msgstr "" + +#: cms/templates/register.html +msgid "Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "Already have a Studio Account? Sign in" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Ready to start creating online courses? Sign up below and start creating " +"your first edX course today." +msgstr "" + +#: cms/templates/register.html +msgid "Required Information to Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "" +"This will be used in public discussions with your courses and in our edX101 " +"support forums" +msgstr "" + +#: cms/templates/register.html +msgid "Your Location" +msgstr "" + +#: cms/templates/register.html +msgid "I agree to the {a_start} Terms of Service {a_end}" +msgstr "" + +#: cms/templates/register.html +msgid "Create My Account & Start Authoring Courses" +msgstr "" + +#: cms/templates/register.html +msgid "Common Studio Questions" +msgstr "" + +#: cms/templates/register.html +msgid "Who is Studio for?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is for anyone that wants to create online courses that leverage the " +"global edX platform. Our users are often faculty members, teaching " +"assistants and course staff, and members of instructional technology groups." +msgstr "" + +#: cms/templates/register.html +msgid "How technically savvy do I need to be to create courses in Studio?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is designed to be easy to use by almost anyone familiar with common " +"web-based authoring environments (Wordpress, Moodle, etc.). No programming " +"knowledge is required, but for some of the more advanced features, a " +"technical background would be helpful. As always, we are here to help, so " +"don't hesitate to dive right in." +msgstr "" + +#: cms/templates/register.html +msgid "I've never authored a course online before. Is there help?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Absolutely. We have created an online course, edX101, that describes some " +"best practices: from filming video, creating exercises, to the basics of " +"running an online course. Additionally, we're always here to help, just drop" +" us a note." +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details Settings" +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/settings.html +msgid "Basic Information" +msgstr "" + +#: cms/templates/settings.html +msgid "The nuts and bolts of your course" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "This field is disabled: this information cannot be changed." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Summary Page" +msgstr "" + +#: cms/templates/settings.html +msgid "(for student enrollment and access)" +msgstr "" + +#: cms/templates/settings.html +msgid "Send a note to students via email" +msgstr "" + +#: cms/templates/settings.html +msgid "Invite your students" +msgstr "" + +#: cms/templates/settings.html +msgid "Promoting Your Course with edX" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course summary page will not be viewable until your course has been " +"announced. To provide content for the page and preview it, follow the " +"instructions provided by your PM." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Schedule" +msgstr "" + +#: cms/templates/settings.html +msgid "Dates that control when your course can be viewed" +msgstr "" + +#: cms/templates/settings.html +msgid "First day the course begins" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day your course is active" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Date" +msgstr "" + +#: cms/templates/settings.html +msgid "First day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "These Dates Are Not Used When Promoting Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"These dates impact when your courseware can be viewed, but " +"they are not the dates shown on your course summary page. " +"To provide the course start and registration dates as shown on your course " +"summary page, follow the instructions provided by your PM or Conrad Warre (conrad@edx.org)." +msgstr "" + +#: cms/templates/settings.html +msgid "Introducing Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "Information for prospective students" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Short Description" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Appears on the course catalog page when students roll over the course name. " +"Limit to ~150 characters" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Overview" +msgstr "" + +#: cms/templates/settings.html +msgid "your course summary page" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"You can manage this image along with all of your other files " +"& uploads" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 375px wide by 200px tall)" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your course image (Note: only JPEG " +"or PNG format supported)" +msgstr "" + +#: cms/templates/settings.html +msgid "Upload Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Introduction Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Delete Current Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Enter your YouTube video's ID (along with any restriction parameters)" +msgstr "" + +#: cms/templates/settings.html +msgid "Requirements" +msgstr "" + +#: cms/templates/settings.html +msgid "Expectations of the students taking this course" +msgstr "" + +#: cms/templates/settings.html +msgid "Hours of Effort per Week" +msgstr "" + +#: cms/templates/settings.html +msgid "Time spent on all course work" +msgstr "" + +#: cms/templates/settings.html +msgid "How are these settings used?" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course's schedule determines when students can enroll in and begin a " +"course." +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Other information from this page appears on the About page for your course. " +"This information includes the course overview, course image, introduction " +"video, and estimated time requirements. Students use About pages to choose " +"new courses to take." +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html +msgid "Other Course Settings" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +msgid "Grading" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Advanced Settings" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "There was an error saving your information. Please see below." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Manual Policy Definition" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Warning: Do not modify these policies unless you are " +"familiar with their purpose." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "What do advanced settings do?" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Advanced settings control specific course functionality. On this page, you " +"can edit manual policies, which are JSON-based key and value pairs that " +"control specific course settings." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Any policies you modify here override all other information you've defined " +"elsewhere in Studio. Do not edit policies unless you are familiar with both " +"their purpose and syntax." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" +" you use double quotation marks (") around the string. Do not use " +"single quotation marks (')." +msgstr "" + +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +msgid "Details & Schedule" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Settings" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Overall Grade Range" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Your overall grading scale for student final grades" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Rules & Policies" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Deadlines, requirements, and logistics around grading student work" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grace Period on Deadline:" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Leeway on due dates" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Assignment Types" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Categories and labels for any exercises that are gradable" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "New Assignment Type" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can use the slider under Overall Grade Range to specify whether your " +"course is pass/fail or graded by letter, and to establish the thresholds for" +" each grade." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can specify whether your course offers students a grace period for late " +"assignments." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can also create assignment types, such as homework, labs, quizzes, and " +"exams, and specify how much of a student's grade each assignment type is " +"worth." +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +#: cms/templates/studio_vertical_wrapper.html +msgid "Expand or Collapse" +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + +#: cms/templates/textbooks.html +msgid "You have unsaved changes. Do you really want to leave this page?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "New Textbook" +msgstr "" + +#: cms/templates/textbooks.html +msgid "Why should I break my textbook into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"Breaking your textbook into multiple chapters reduces loading times for " +"students, especially those with slow Internet connections. Breaking up " +"textbooks into chapters can also help students more easily find topic-based " +"information." +msgstr "" + +#: cms/templates/textbooks.html +msgid "What if my book isn't divided into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"If your textbook doesn't have individual chapters, you can upload the entire" +" text as a single chapter and enter a name of your choice in the Chapter " +"Name field." +msgstr "" + +#: cms/templates/unit.html cms/templates/ux/reference/unit.html +msgid "Individual Unit" +msgstr "" + +#: cms/templates/unit.html +msgid "You are editing a draft." +msgstr "" + +#: cms/templates/unit.html +msgid "This unit was originally published on {date}." +msgstr "" + +#: cms/templates/unit.html +msgid "View the Live Version" +msgstr "" + +#: cms/templates/unit.html +msgid "Add New Component" +msgstr "" + +#: cms/templates/unit.html +msgid "Common Problem Types" +msgstr "" + +#: cms/templates/unit.html +msgid "Advanced" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Settings" +msgstr "" + +#: cms/templates/unit.html +msgid "Visibility:" +msgstr "" + +#: cms/templates/unit.html +msgid "Public" +msgstr "" + +#: cms/templates/unit.html +msgid "Private" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit has been published. To make changes, you must {link_start}edit a " +"draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This is a draft of the published unit. To update the live version, you must " +"{link_start}replace it with this draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "Delete Draft" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Location" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Identifier:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for edX Studio! To activate your account, please " +"copy and paste this address into your web browser's address bar:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the edX web site." +msgstr "" + +#: cms/templates/emails/activation_email_subject.txt +msgid "Your account for edX Studio" +msgstr "" + +#: cms/templates/emails/course_creator_admin_subject.txt +msgid "{email} has requested Studio course creator privileges on edge" +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "" +"User '{user}' with e-mail {email} has requested Studio course creator " +"privileges on edge." +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "To grant or deny this request, use the course creator admin table." +msgstr "" + +#: cms/templates/emails/course_creator_denied.txt +msgid "" +"Your request for course creation rights to edX Studio have been denied. If " +"you believe this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_granted.txt +msgid "" +"Your request for course creation rights to edX Studio have been granted. To " +"create your first course, visit:" +msgstr "" + +#: cms/templates/emails/course_creator_revoked.txt +msgid "" +"Your course creation rights to edX Studio have been revoked. If you believe " +"this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_subject.txt +msgid "Your course creator status for edX Studio" +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "You can now {link_start}login{link_end}." +msgstr "" + +#: cms/templates/registration/reg_complete.html +msgid "" +"An activation link has been sent to {email}, along with instructions for " +"activating your account." +msgstr "" + +#: cms/templates/widgets/footer.html +msgid "All rights reserved." +msgstr "" + +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Contact Us" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Current Course:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "{course_name}'s Navigation:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Outline" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Updates" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Checklists" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Import" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Export" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Help & Account Navigation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +msgid "This is a PDF Document" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Documentation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html +msgid "Studio Help Center" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Currently signed in as:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Sign Out" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "You're not currently signed in" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "How Studio Works" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Help" +msgstr "" + +#: cms/templates/widgets/metadata-edit.html +msgid "Launch Latex Source Compiler" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Heading 1" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Multiple Choice" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Checkboxes" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Text Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Numerical Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Dropdown" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Explanation" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Advanced Editor" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Toggle Cheatsheet" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Label" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "edX Studio Help" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Need help with Studio? Creating a course is complex, so we're here to help. " +"Take advantage of our documentation, help center, as well as our edX101 " +"introduction course for course authors." +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Download Studio Documentation" +msgstr "" + +#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +msgid "How to use Studio to build your course" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Enroll in edX101" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Contact us about Studio" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Have problems, questions, or suggestions about Studio? We're also here to " +"listen to any feedback you want to share." +msgstr "" + +#: cms/templates/widgets/tabs-aggregator.html +msgid "name" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete this unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to sort" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to reorder unit" +msgstr "" + +# empty +msgid "This is a key string." +msgstr "" + +#: wiki/admin.py wiki/models/article.py +msgid "created" +msgstr "" + +#: wiki/forms.py +msgid "Only localhost... muahahaha" +msgstr "" + +#: wiki/forms.py +msgid "Initial title of the article. May be overridden with revision titles." +msgstr "" + +#: wiki/forms.py +msgid "Type in some contents" +msgstr "" + +#: wiki/forms.py +msgid "" +"This is just the initial contents of your article. After creating it, you " +"can use more complex features like adding plugins, meta data, related " +"articles etc..." +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Contents" +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Summary" +msgstr "" + +#: wiki/forms.py +msgid "" +"Give a short reason for your edit, which will be stated in the revision log." +msgstr "" + +#: wiki/forms.py +msgid "" +"While you were editing, someone else changed the revision. Your contents " +"have been automatically merged with the new contents. Please review the text" +" below." +msgstr "" + +#: wiki/forms.py +msgid "No changes made. Nothing to save." +msgstr "" + +#: wiki/forms.py +msgid "Select an option" +msgstr "" + +#: wiki/forms.py +msgid "Slug" +msgstr "" + +#: wiki/forms.py +msgid "" +"This will be the address where your article can be found. Use only " +"alphanumeric characters and - or _. Note that you cannot change the slug " +"after creating the article." +msgstr "" + +#: wiki/forms.py +msgid "Write a brief message for the article's history log." +msgstr "" + +#: wiki/forms.py +msgid "A slug may not begin with an underscore." +msgstr "" + +#: wiki/forms.py +msgid "A deleted article with slug \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "A slug named \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "Yes, I am sure" +msgstr "" + +#: wiki/forms.py +msgid "Purge" +msgstr "" + +#: wiki/forms.py +msgid "" +"Purge the article: Completely remove it (and all its contents) with no undo." +" Purging is a good idea if you want to free the slug such that users can " +"create new articles in its place." +msgstr "" + +#: wiki/forms.py wiki/plugins/attachments/forms.py +#: wiki/plugins/images/forms.py +msgid "You are not sure enough!" +msgstr "" + +#: wiki/forms.py +msgid "While you tried to delete this article, it was modified. TAKE CARE!" +msgstr "" + +#: wiki/forms.py +msgid "Lock article" +msgstr "" + +#: wiki/forms.py +msgid "Deny all users access to edit this article." +msgstr "" + +#: wiki/forms.py +msgid "Permissions" +msgstr "" + +#: wiki/forms.py +msgid "Owner" +msgstr "" + +#: wiki/forms.py +msgid "Enter the username of the owner." +msgstr "" + +#: wiki/forms.py +msgid "(none)" +msgstr "" + +#: wiki/forms.py +msgid "Inherit permissions" +msgstr "" + +#: wiki/forms.py +msgid "" +"Check here to apply the above permissions recursively to articles under this" +" one." +msgstr "" + +#: wiki/forms.py +msgid "Permission settings for the article were updated." +msgstr "" + +#: wiki/forms.py +msgid "Your permission settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/forms.py +msgid "No user with that username" +msgstr "" + +#: wiki/forms.py +msgid "Article locked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Article unlocked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Filter..." +msgstr "" + +#: wiki/core/plugins/base.py +msgid "Settings for plugin" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +#: wiki/plugins/attachments/models.py +msgid "current revision" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The revision being displayed for this article. If you need to do a roll-" +"back, simply change the value of this field." +msgstr "" + +#: wiki/models/article.py +msgid "modified" +msgstr "" + +#: wiki/models/article.py +msgid "Article properties last modified" +msgstr "" + +#: wiki/models/article.py +msgid "owner" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The owner of the article, usually the creator. The owner always has both " +"read and write access." +msgstr "" + +#: wiki/models/article.py +msgid "group" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Like in a UNIX file system, permissions can be given to a user according to " +"group membership. Groups are handled through the Django auth system." +msgstr "" + +#: wiki/models/article.py +msgid "group read access" +msgstr "" + +#: wiki/models/article.py +msgid "group write access" +msgstr "" + +#: wiki/models/article.py +msgid "others read access" +msgstr "" + +#: wiki/models/article.py +msgid "others write access" +msgstr "" + +#: wiki/models/article.py +msgid "Article without content (%(id)d)" +msgstr "" + +#: wiki/models/article.py +msgid "content type" +msgstr "" + +#: wiki/models/article.py +msgid "object ID" +msgstr "" + +#: wiki/models/article.py +msgid "Article for object" +msgstr "" + +#: wiki/models/article.py +msgid "Articles for object" +msgstr "" + +#: wiki/models/article.py +msgid "revision number" +msgstr "" + +#: wiki/models/article.py +msgid "IP address" +msgstr "" + +#: wiki/models/article.py +msgid "user" +msgstr "" + +#: wiki/models/article.py +msgid "locked" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +msgid "article" +msgstr "" + +#: wiki/models/article.py +msgid "article contents" +msgstr "" + +#: wiki/models/article.py +msgid "article title" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Each revision contains a title field that must be filled out, even if the " +"title has not changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "original article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "Permissions are inherited from this article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "A plugin was changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "" +"The revision being displayed for this plugin.If you need to do a roll-back, " +"simply change the value of this field." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Cache lookup value for articles" +msgstr "" + +#: wiki/models/urlpath.py +msgid "slug" +msgstr "" + +#: wiki/models/urlpath.py +msgid "(root)" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL path" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL paths" +msgstr "" + +#: wiki/models/urlpath.py +msgid "Sorry but you cannot have a root article with a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "A non-root note must always have a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "There is already a root node on %s" +msgstr "" + +#: wiki/models/urlpath.py +msgid "" +"Articles who lost their parents\n" +"===============================\n" +"\n" +"The children of this article have had their parents deleted. You should probably find a new home for them." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Lost and found" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "A short summary of what the file contains" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "Yes I am sure..." +msgstr "" + +#: wiki/plugins/attachments/markdown_extensions.py +msgid "Click to download file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "" +"The revision of this attachment currently in use (on all articles using the " +"attachment)" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "original filename" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachments" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revision" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revisions" +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s was successfully added." +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "Your file could not be saved: %s" +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "" +"Your file could not be saved, probably because of a permission error on the " +"web server." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s uploaded and replaces old attachment." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your new file will automatically be renamed to match the file already " +"present. Files with different extensions are not allowed." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Current revision changed for %s." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "The file %s was deleted." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "This article is no longer related to the file %s." +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was changed: %s" +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was deleted: %s" +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "" +"New image %s was successfully uploaded. You can use it by selecting it from " +"the list of available images." +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "Are you sure?" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "images" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image: %s" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Current revision not set!!" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revision" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revisions" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image Revsion: %d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been restored" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been marked as deleted" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been changed to revision #%(revision)d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been saved." +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "Images" +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "An image was added: %s" +msgstr "" + +#: wiki/plugins/links/wiki_plugin.py +msgid "Links" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Notifications" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "When this article is edited" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Also receive emails about article edits" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were updated." +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "%(user)s subscribing to %(article)s (%(type)s)" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article deleted: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article modified: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "New article created: %s" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now sign up... and now you can sign in!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are no longer logged in. Bye bye!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now logged in! Have fun!" +msgstr "" + +#: wiki/views/article.py +msgid "New article '%s' created." +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article: %s" +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article cannot be deleted because it has children or is a root article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article together with all its contents are now completely gone! Thanks!" +msgstr "" + +#: wiki/views/article.py +msgid "" +"The article \"%s\" is now marked as deleted! Thanks for keeping the site " +"free from unwanted material!" +msgstr "" + +#: wiki/views/article.py +msgid "Your changes were saved." +msgstr "" + +#: wiki/views/article.py +msgid "A new revision of the article was succesfully added." +msgstr "" + +#: wiki/views/article.py +msgid "Restoring article" +msgstr "" + +#: wiki/views/article.py +msgid "The article \"%s\" and its children are now restored." +msgstr "" + +#: wiki/views/article.py +msgid "The article %s is now set to display revision #%d" +msgstr "" + +#: wiki/views/article.py +msgid "New title" +msgstr "" + +#: wiki/views/article.py +msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" +msgstr "" + +#: wiki/views/article.py +msgid "" +"A new revision was created: Merge between Revision #%(r1)d and Revision " +"#%(r2)d" +msgstr "" diff --git a/conf/locale/eu_ES/LC_MESSAGES/djangojs.mo b/conf/locale/eu_ES/LC_MESSAGES/djangojs.mo new file mode 100644 index 0000000000..8b9fad192c Binary files /dev/null and b/conf/locale/eu_ES/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/eu_ES/LC_MESSAGES/djangojs.po b/conf/locale/eu_ES/LC_MESSAGES/djangojs.po new file mode 100644 index 0000000000..3afaf303ba --- /dev/null +++ b/conf/locale/eu_ES/LC_MESSAGES/djangojs.po @@ -0,0 +1,1712 @@ +# #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Basque (Spain) (http://www.transifex.com/projects/p/edx-platform/language/eu_ES/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" +"Last-Translator: sarina \n" +"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/edx-platform/language/eu_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: cms/static/coffee/src/views/tabs.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js +#: common/static/coffee/src/discussion/utils.js +msgid "OK" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/asset.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Cancel" +msgstr "" + +#: cms/static/js/base.js lms/static/js/verify_student/photocapture.js +msgid "This link will open in a new browser window/tab" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Show Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Hide Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Expand Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Collapse Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Commentary" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Reply to Annotation" +msgstr "" + +#. Translators: %(earned)s is the number of points earned. %(total)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(earned)s/%(possible)s point)" +msgid_plural "(%(earned)s/%(possible)s points)" +msgstr[0] "" +msgstr[1] "" + +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10). There will always be at least 1 point possible.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(num_points)s point possible)" +msgid_plural "(%(num_points)s points possible)" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer:" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Hide Answer" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Show Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Reveal Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer hidden" +msgstr "" + +#. Translators: the word unanswered here is about answering a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "unanswered" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Status: unsubmitted" +msgstr "" + +#. Translators: A "rating" is a score a student gives to indicate how well +#. they feel they were graded on this problem +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "You need to pick a rating before you can submit." +msgstr "" + +#. Translators: this message appears when transitioning between openended +#. grading +#. types (i.e. self assesment to peer assessment). Sometimes, if a student +#. did not perform well at one step, they cannot move on to the next one. +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Your score did not meet the criteria to move to the next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Submit" +msgstr "" + +#. Translators: one clicks this button after one has finished filling out the +#. grading +#. form for an openended assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: this button is clicked to submit a student's rating of +#. an evaluator's assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit post-assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Answer saved, but not yet submitted." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Please confirm that you wish to submit your work. You will not be able to " +"make any changes after submitting." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"You are trying to upload a file that is too large for our system. Please " +"choose a file under 2MB or paste a link to it into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Are you sure you want to remove your previous response to this question?" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Moved to next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"File uploads are required for this question, but are not supported in your " +"browser. Try the newest version of Google Chrome. Alternatively, if you have" +" uploaded the image to another website, you can paste a link to it into the " +"answer box." +msgstr "" + +#. Translators: "Show Question" is some text that, when clicked, shows a +#. question's +#. content that had been hidden +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Show Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Hide Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/sequence/display.js +msgid "" +"Sequence error! Cannot navigate to tab %(tab_name)s in the current " +"SequenceModule. Please contact the course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Video slider" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Pause" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Play" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Fill browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Exit full browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD on" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD off" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video ended" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s hour" +msgid_plural "%(value)s hours" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s minute" +msgid_plural "%(value)s minutes" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s second" +msgid_plural "%(value)s seconds" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Volume" +msgstr "" + +#. Translators: Volume level equals 0%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Muted" +msgstr "" + +#. Translators: Volume level in range (0,20]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very low" +msgstr "" + +#. Translators: Volume level in range (20,40]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Low" +msgstr "" + +#. Translators: Volume level in range (40,60]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Average" +msgstr "" + +#. Translators: Volume level in range (60,80]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Loud" +msgstr "" + +#. Translators: Volume level in range (80,100)% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very loud" +msgstr "" + +#. Translators: Volume level equals 100%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Maximum" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Caption will be displayed when " +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on captions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn off captions" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Hide Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Show Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Sorry" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "We had some trouble loading the discussion. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "" +"We had some trouble loading the threads you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "Loading content" +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "" +"We had some trouble processing your request. Please ensure you have copied " +"any unsaved work and then reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "We had some trouble processing your request. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +msgid "…" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Close" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Open" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "remove vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Load more" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading more threads" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "We had some trouble loading more threads. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "%(unread_count)s new comment" +msgid_plural "%(unread_count)s new comments" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading thread list" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to remove report" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported%(start_sr_span)s, click to remove report%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Report Misuse" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned%(start_sr_span)s, click to unpin%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to unpin" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pin Thread" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading responses. Please reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading more responses. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "%(numResponses)s response" +msgid_plural "%(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing first response" +msgid_plural "Showing first %(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load next %(numResponses)s responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Are you sure you want to delete this post?" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +msgid "anonymous" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "staff" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Community TA" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported, click to remove report" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Are you sure you want to delete this comment?" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "We had some trouble deleting this comment. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/thread_response_view.js +msgid "Are you sure you want to delete this response?" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s ago" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s from now" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "less than a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about an hour" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about %d hour" +msgid_plural "about %d hours" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "a day" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a month" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a year" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Available %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of available %s. You may choose some by selecting them in " +"the box below and then clicking the \"Choose\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Type into this box to filter down the list of available %s." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Filter" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to choose all %s at once." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Chosen %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of chosen %s. You may remove some by selecting them in the " +"box below and then clicking the \"Remove\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to remove all chosen %s at once." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "%(sel)s of %(cnt)s selected" +msgid_plural "%(sel)s of %(cnt)s selected" +msgstr[0] "" +msgstr[1] "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have unsaved changes on individual editable fields. If you run an " +"action, your unsaved changes will be lost." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, but you haven't saved your changes to " +"individual fields yet. Please click OK to save. You'll need to re-run the " +"action." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, and you haven't made any changes on individual " +"fields. You're probably looking for the Go button rather than the Save " +"button." +msgstr "" + +#. Translators: the names of months, keep the pipe (|) separators. +#: lms/static/admin/js/calendar.js lms/static/admin/js/dateparse.js +msgid "" +"January|February|March|April|May|June|July|August|September|October|November|December" +msgstr "" + +#. Translators: abbreviations for days of the week, keep the pipe (|) +#. separators. +#: lms/static/admin/js/calendar.js +msgid "S|M|T|W|T|F|S" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.js.c +#: lms/static/admin/js/collapse.min.js +msgid "Show" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.min.js +msgid "Hide" +msgstr "" + +#. Translators: the names of days, keep the pipe (|) separators. +#: lms/static/admin/js/dateparse.js +msgid "Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Now" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Clock" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Choose a time" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Midnight" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "6 a.m." +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Noon" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Today" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Calendar" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Yesterday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Tomorrow" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Open Calculator" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Close Calculator" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Preview" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Post body" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching distribution." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Unavailable metric display." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching grade distributions." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Last Updated: <%= timestamp %>" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "<%= num_students %> students scored." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Loading..." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error getting student list." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error retrieving grading configuration." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error generating grades. Please try again." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "File Name" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "" +"Links are generated on demand and expire within 5 minutes due to the " +"sensitive nature of student information." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Username" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Revoke access" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Enter username or email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Please enter a username or email." +msgstr "" + +#. Translators: A rolename appears this sentence.; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error fetching list for role" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +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 "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully removed as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not removed as beta testers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Users must create and activate their account before they can be promoted to " +"beta tester." +msgstr "" + +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Could not find users associated with the following identifiers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error enrolling/unenrolling users." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following email addresses and/or usernames are invalid:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled and sent email to the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Emails successfully sent. The following users are no longer enrolled in the " +"course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following users are no longer enrolled in the course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"These users were not affiliated with the course so could not be unenrolled:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message must have a subject." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message cannot be blank." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to yourself. Is this " +"OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to everyone who is " +"staff or instructor on this course. Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to ALL (everyone who " +"is enrolled in this course as student, staff, or instructor). Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Error sending email." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There is no email history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There was an error obtaining email task history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a student email address or username." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting student progress url for '<%= student_id %>'. Check that the " +"student identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a problem urlname." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Success! Problem attempts reset for problem '<%= problem_id %>' and student " +"'<%= student_id %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error resetting problem attempts for problem '<%= problem_id %>' and student" +" '<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Delete student '<%= student_id %>'s state on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id" +" %>'. Check that the problem and student identifiers are spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Module state successfully deleted." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Started rescore problem task for problem '<%= problem_id %>' and student " +"'<%= student_id %>'. Click the 'Show Background Task History for Student' " +"button to see the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>' for student " +"'<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting task history for problem '<%= problem_id %>' and student '<%= " +"student_id %>'. Check that the problem and student identifiers are spelled " +"correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Reset attempts for all students on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to reset attempts for problem '<%= problem_id %>'." +" Click the 'Show Background Task History for Problem' button to see the " +"status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to reset attempts for all students on problem '<%= " +"problem_id %>'. Check that the problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Rescore problem '<%= problem_id %>' for all students?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to rescore problem '<%= problem_id %>' for all " +"students. Click the 'Show Background Task History for Problem' button to see" +" the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>'. Check that the" +" problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Error listing task history for this student and problem." +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Type" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task inputs" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task ID" +msgstr "" + +#. Translators: a "Requester" is a username that requested a task such as +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Requester" +msgstr "" + +#. Translators: A timestamp of when a task (eg, sending email) was submitted +#. appears after this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Submitted" +msgstr "" + +#. Translators: The length of a task (eg, sending email) in seconds appears +#. this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Duration (sec)" +msgstr "" + +#. Translators: The state (eg, "In progress") of a task (eg, sending email) +#. appears after this. +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "State" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Status" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Grades saved. Fetching the next submission to grade." +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Problem Name" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Graded" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Available to Grade" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Required" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Back to problem list" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Try loading again" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> available " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> graded " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> more needed to start ML" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Re-check for submissions" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state: <%= state %>" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state for submission: " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Hide)" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Show)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Image (upload file or type url)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Markdown Editing Help" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bold (Ctrl+B)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Italic (Ctrl+I)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Hyperlink (Ctrl+L)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote (Ctrl+Q)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Code Sample (Ctrl+K)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Image (Ctrl+G)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Numbered List (Ctrl+O)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bulleted List (Ctrl+U)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading (Ctrl+H)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Horizontal Rule (Ctrl+R)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Undo (Ctrl+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Y)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Shift+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "strong text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "emphasized text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter image description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter link description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote" +msgstr "" + +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +msgid "enter code here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "List item" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading" +msgstr "" + +#: lms/templates/class_dashboard/all_section_metrics.js +#: lms/templates/class_dashboard/all_section_metrics.js +msgid "Unable to retrieve data, please try again later." +msgstr "" + +#: lms/templates/class_dashboard/d3_stacked_bar_graph.js +msgid "Number of Students" +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "" +"This may be happening because of an error with our server or your internet " +"connection. Try refreshing the page or making sure you are online." +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "Studio's having trouble saving your work" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/xblock/cms.runtime.v1.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js +#: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js +#: cms/static/js/views/xblock_editor.js +msgid "Saving…" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "Delete Component Confirmation" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "" +"Are you sure you want to delete this component? This action cannot be " +"undone." +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js +msgid "Deleting…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js +msgid "Adding…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Duplicating…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Delete this component?" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Deleting this component is permanent and cannot be undone." +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Yes, delete this component" +msgstr "" + +#: cms/static/js/base.js +msgid "This link will open in a modal window" +msgstr "" + +#: cms/static/js/base.js +msgid "Delete this " +msgstr "" + +#: cms/static/js/base.js +msgid "Deleting this " +msgstr "" + +#: cms/static/js/base.js +msgid "Yes, delete this " +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces or special characters in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "" +"The combined length of the organization, course number, and course run " +"fields cannot be more than 65 characters." +msgstr "" + +#: cms/static/js/index.js +msgid "Required field." +msgstr "" + +#: cms/static/js/sock.js +msgid "Hide Studio Help" +msgstr "" + +#: cms/static/js/sock.js +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/static/js/models/course.js cms/static/js/models/section.js +msgid "You must specify a name" +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "" +"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " +"<%= fileExtensions %> to upload." +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "or" +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course must have an assigned start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course end date cannot be before the course start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course start date cannot be before the enrollment start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment start date cannot be after the enrollment end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment end date cannot be after the course end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "Key should only contain letters, numbers, _, or -" +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "There's already another assignment type with this name." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer between 0 and 100." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer greater than 0." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter non-negative integer." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Cannot drop more <% attrs.types %> than will assigned." +msgstr "" + +#: cms/static/js/models/settings/course_grading_policy.js +msgid "Grace period must be specified in HH:MM format." +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Delete File Confirmation" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "" +"Are you sure you wish to delete this item. It cannot be reversed!\n" +"\n" +"Also any content that links/refers to this item will no longer work (e.g. broken images and/or links)" +msgstr "" + +#: cms/static/js/views/asset.js cms/static/js/views/show_textbook.js +msgid "Delete" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Your file has been deleted." +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Name" +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Date Added" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "Are you sure you want to delete this update?" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "This action cannot be undone." +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Upload a new PDF to “<%= name %>”" +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + +#: cms/static/js/views/edit_textbook.js +#: cms/static/js/views/overview_assignment_grader.js +msgid "Saving" +msgstr "" + +#: cms/static/js/views/import.js +msgid "There was an error with the upload" +msgstr "" + +#: cms/static/js/views/import.js +msgid "" +"File format not supported. Please upload a file with a tar.gz " +"extension." +msgstr "" + +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Collapse All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Expand All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Release date:" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "{month}/{day}/{year} at {hour}:{minute} UTC" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Edit section release date" +msgstr "" + +#: cms/static/js/views/overview_assignment_grader.js +msgid "Not Graded" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "ascending" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "descending" +msgstr "" + +#: cms/static/js/views/paging_header.js +msgid "" +"Showing %(current_span)s%(start)s-%(end)s%(end_span)s out of " +"%(total_span)s%(total)s total%(end_span)s, sorted by " +"%(order_span)s%(sort_order)s%(end_span)s %(sort_direction)s" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Your change could not be saved" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Return and resolve this issue" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Delete “<%= name %>”?" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "" +"Deleting a textbook cannot be undone and once deleted any reference to it in" +" your courseware's navigation will also be removed." +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Deleting" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "We're sorry, there was an error" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes will not take effect until you save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes, but there are some errors" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "" +"Please address the errors on this page first, and then save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Save Changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes have been saved." +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Your changes will not take effect until you save your progress. Take care " +"with key and value formatting, as validation is not implemented." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Please note that validation of your policy key and value pairs is not " +"currently in place yet. If you are having difficulties, please review your " +"policy pairs." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Upload your course image." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Files must be in JPEG or PNG format." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/fa/LC_MESSAGES/django.mo b/conf/locale/fa/LC_MESSAGES/django.mo index b84b7f2b63..3fbecb161a 100644 Binary files a/conf/locale/fa/LC_MESSAGES/django.mo and b/conf/locale/fa/LC_MESSAGES/django.mo differ diff --git a/conf/locale/fa/LC_MESSAGES/django.po b/conf/locale/fa/LC_MESSAGES/django.po index 0df6362d3c..72874ab2e0 100644 --- a/conf/locale/fa/LC_MESSAGES/django.po +++ b/conf/locale/fa/LC_MESSAGES/django.po @@ -40,7 +40,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-02-06 03:04+0000\n" "Last-Translator: nedbat \n" "Language-Team: Persian (http://www.transifex.com/projects/p/edx-platform/language/fa/)\n" @@ -173,6 +173,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -183,6 +193,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -309,7 +326,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -321,6 +338,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -769,7 +802,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -790,6 +823,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -802,6 +839,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -896,6 +955,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -928,11 +991,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -982,6 +1063,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1266,10 +1359,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1697,10 +1804,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1743,6 +1854,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2030,7 +2150,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2257,37 +2377,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2387,6 +2476,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3079,6 +3172,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3145,6 +3239,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3686,35 +3781,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3732,6 +3803,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3756,23 +3840,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3813,14 +3915,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 "" @@ -4028,12 +4122,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4044,12 +4137,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4090,11 +4182,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4203,6 +4331,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4258,18 +4390,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4377,14 +4497,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4427,7 +4543,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4654,10 +4771,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4667,6 +4813,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4710,15 +4864,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4770,6 +4924,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4827,8 +4985,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4885,10 +5044,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4969,6 +5130,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5059,33 +5240,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5094,6 +5259,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5110,14 +5279,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5157,7 +5318,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5202,43 +5363,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5487,8 +5616,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5724,6 +5853,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5732,6 +5865,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5775,17 +5922,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5915,6 +6056,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5935,12 +6080,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6275,12 +6420,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6394,10 +6533,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6570,6 +6717,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6688,6 +6842,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7048,24 +7206,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7077,6 +7225,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7116,10 +7272,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7200,6 +7365,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7210,10 +7379,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7637,7 +7802,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7648,9 +7814,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7668,6 +7835,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7689,7 +7860,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7698,6 +7869,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7829,6 +8010,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8060,6 +8262,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8296,6 +8504,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8535,20 +8753,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8558,7 +8774,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8929,6 +9145,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8969,13 +9187,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9664,19 +9876,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9690,23 +9899,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9741,6 +9967,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11375,6 +11608,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11463,15 +11700,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/fa/LC_MESSAGES/djangojs.mo b/conf/locale/fa/LC_MESSAGES/djangojs.mo index 665fa3f195..85360734f9 100644 Binary files a/conf/locale/fa/LC_MESSAGES/djangojs.mo and b/conf/locale/fa/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/fa/LC_MESSAGES/djangojs.po b/conf/locale/fa/LC_MESSAGES/djangojs.po index 2e25d200a2..64b493901e 100644 --- a/conf/locale/fa/LC_MESSAGES/djangojs.po +++ b/conf/locale/fa/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-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Persian (http://www.transifex.com/projects/p/edx-platform/language/fa/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -34,6 +35,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -328,6 +331,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -384,15 +389,13 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js @@ -452,6 +455,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -486,6 +494,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -858,9 +870,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -868,7 +881,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1202,15 +1215,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1320,18 +1334,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1347,6 +1356,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1354,19 +1364,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1513,6 +1523,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1528,6 +1542,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1589,6 +1607,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1618,6 +1640,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1642,3 +1684,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/fa_IR/LC_MESSAGES/django.mo b/conf/locale/fa_IR/LC_MESSAGES/django.mo index 5d45db73dd..47ae25b846 100644 Binary files a/conf/locale/fa_IR/LC_MESSAGES/django.mo and b/conf/locale/fa_IR/LC_MESSAGES/django.mo differ diff --git a/conf/locale/fa_IR/LC_MESSAGES/django.po b/conf/locale/fa_IR/LC_MESSAGES/django.po index bf6ea0fea6..edccd88195 100644 --- a/conf/locale/fa_IR/LC_MESSAGES/django.po +++ b/conf/locale/fa_IR/LC_MESSAGES/django.po @@ -31,6 +31,7 @@ # frad , 2014 # saman_is , 2013 # saman_is , 2013 +# sarina , 2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2014 edX @@ -39,6 +40,7 @@ # Translators: # arashdehghan , 2014 # saman_is , 2013 +# sarina , 2014 # #-#-#-#-# messages.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2013 edX @@ -57,7 +59,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -190,6 +192,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -200,6 +212,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -326,7 +345,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -338,6 +357,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -786,7 +821,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -807,6 +842,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -819,6 +858,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -913,6 +974,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -945,11 +1010,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -999,6 +1082,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1283,10 +1378,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1714,10 +1823,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1760,6 +1873,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2047,7 +2169,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2274,37 +2396,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2404,6 +2495,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3096,6 +3191,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3162,6 +3258,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3703,35 +3800,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3749,6 +3822,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3773,23 +3859,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3830,14 +3934,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 "" @@ -4045,12 +4141,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4061,12 +4156,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4107,11 +4201,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4220,6 +4350,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4275,18 +4409,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4394,14 +4516,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4444,7 +4562,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4671,10 +4790,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4684,6 +4832,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4727,15 +4883,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4787,6 +4943,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4844,8 +5004,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4902,10 +5063,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4986,6 +5149,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5076,33 +5259,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5111,6 +5278,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5127,14 +5298,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5174,7 +5337,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5219,43 +5382,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5504,8 +5635,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5741,6 +5872,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5749,6 +5884,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5792,17 +5941,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5932,6 +6075,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5952,12 +6099,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6292,12 +6439,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6411,10 +6552,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6587,6 +6736,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6705,6 +6861,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7065,24 +7225,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7094,6 +7244,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7133,10 +7291,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7217,6 +7384,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7227,10 +7398,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7654,7 +7821,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7665,9 +7833,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7685,6 +7854,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7706,7 +7879,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7715,6 +7888,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7846,6 +8029,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8077,6 +8281,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8313,6 +8523,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8552,20 +8772,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8575,7 +8793,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8946,6 +9164,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8986,13 +9206,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9681,19 +9895,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9707,23 +9918,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9758,6 +9986,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11392,6 +11627,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11480,15 +11719,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/fa_IR/LC_MESSAGES/djangojs.mo b/conf/locale/fa_IR/LC_MESSAGES/djangojs.mo index 885c72902c..1aef2ec354 100644 Binary files a/conf/locale/fa_IR/LC_MESSAGES/djangojs.mo and b/conf/locale/fa_IR/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/fa_IR/LC_MESSAGES/djangojs.po b/conf/locale/fa_IR/LC_MESSAGES/djangojs.po index 8e908f8150..f3e662e812 100644 --- a/conf/locale/fa_IR/LC_MESSAGES/djangojs.po +++ b/conf/locale/fa_IR/LC_MESSAGES/djangojs.po @@ -15,14 +15,16 @@ # # Translators: # djcsaeed , 2013 +# davoudrafati , 2014 # saman_is , 2013 +# sarina , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-24 14:25+0000\n" -"Last-Translator: sarina \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-30 15:00+0000\n" +"Last-Translator: davoudrafati \n" "Language-Team: Persian (Iran) (http://www.transifex.com/projects/p/edx-platform/language/fa_IR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,6 +34,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -40,6 +43,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -334,6 +339,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -390,15 +397,13 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js @@ -458,6 +463,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -492,6 +502,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -864,9 +878,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -874,7 +889,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1208,15 +1223,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1326,18 +1342,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1353,6 +1364,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1360,19 +1372,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1519,6 +1531,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1534,6 +1550,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1595,6 +1615,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1624,6 +1648,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1648,3 +1692,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/fi_FI/LC_MESSAGES/django.mo b/conf/locale/fi_FI/LC_MESSAGES/django.mo index 81b5bba466..4adb51b469 100644 Binary files a/conf/locale/fi_FI/LC_MESSAGES/django.mo and b/conf/locale/fi_FI/LC_MESSAGES/django.mo differ diff --git a/conf/locale/fi_FI/LC_MESSAGES/django.po b/conf/locale/fi_FI/LC_MESSAGES/django.po index 04347bad9a..5a4437ca21 100644 --- a/conf/locale/fi_FI/LC_MESSAGES/django.po +++ b/conf/locale/fi_FI/LC_MESSAGES/django.po @@ -11,6 +11,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# mop , 2014 # #-#-#-#-# mako.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Finnish (Finland) (http://www.transifex.com/projects/p/edx-platform/language/fi_FI/) # Copyright (C) 2014 edX @@ -45,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-03-26 07:10+0000\n" "Last-Translator: mop \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/edx-platform/language/fi_FI/)\n" @@ -178,6 +179,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -188,6 +199,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -314,7 +332,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -326,6 +344,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -774,7 +808,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -795,6 +829,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -807,6 +845,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -901,6 +961,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -933,11 +997,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -987,6 +1069,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1271,10 +1365,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1702,10 +1810,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1748,6 +1860,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2035,7 +2156,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2262,37 +2383,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2392,6 +2482,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3084,6 +3178,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3150,6 +3245,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3691,35 +3787,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3737,6 +3809,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3761,23 +3846,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3818,14 +3921,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 "" @@ -4033,12 +4128,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4049,12 +4143,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4095,11 +4188,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4208,6 +4337,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4263,18 +4396,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4382,14 +4503,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4432,7 +4549,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4659,10 +4777,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4672,6 +4819,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4715,15 +4870,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4775,6 +4930,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4832,8 +4991,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4890,10 +5050,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4974,6 +5136,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5064,33 +5246,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5099,6 +5265,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5115,14 +5285,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5162,7 +5324,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5207,43 +5369,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5492,8 +5622,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5731,6 +5861,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5739,6 +5873,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5782,17 +5930,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5922,6 +6064,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5942,12 +6088,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6282,12 +6428,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6401,10 +6541,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6577,6 +6725,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6695,6 +6850,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7057,24 +7216,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7086,6 +7235,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7125,10 +7282,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7209,6 +7375,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7219,10 +7389,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7646,7 +7812,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7657,9 +7824,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7677,6 +7845,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7698,7 +7870,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7707,6 +7879,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7838,6 +8020,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8069,6 +8272,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8305,6 +8514,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8544,20 +8763,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8567,7 +8784,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8938,6 +9155,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8978,13 +9197,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9673,19 +9886,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9699,23 +9909,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9750,6 +9977,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11384,6 +11618,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11472,15 +11710,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/fi_FI/LC_MESSAGES/djangojs.mo b/conf/locale/fi_FI/LC_MESSAGES/djangojs.mo index fe63d66377..32cafaacb8 100644 Binary files a/conf/locale/fi_FI/LC_MESSAGES/djangojs.mo and b/conf/locale/fi_FI/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/fi_FI/LC_MESSAGES/djangojs.po b/conf/locale/fi_FI/LC_MESSAGES/djangojs.po index d4a4cae212..0e25a8c749 100644 --- a/conf/locale/fi_FI/LC_MESSAGES/djangojs.po +++ b/conf/locale/fi_FI/LC_MESSAGES/djangojs.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-24 14:25+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/edx-platform/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -27,6 +27,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -35,6 +36,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -334,6 +337,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -390,16 +395,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -461,6 +464,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -497,6 +505,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -875,9 +887,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -885,7 +898,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1219,15 +1232,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1337,18 +1351,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1364,6 +1373,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1371,19 +1381,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1530,6 +1540,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1545,6 +1559,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1606,6 +1624,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1635,6 +1657,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1659,3 +1701,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/fr/LC_MESSAGES/django.mo b/conf/locale/fr/LC_MESSAGES/django.mo index 15c06dfd31..de7e467c50 100644 Binary files a/conf/locale/fr/LC_MESSAGES/django.mo and b/conf/locale/fr/LC_MESSAGES/django.mo differ diff --git a/conf/locale/fr/LC_MESSAGES/django.po b/conf/locale/fr/LC_MESSAGES/django.po index d2f0028e74..097a802b34 100644 --- a/conf/locale/fr/LC_MESSAGES/django.po +++ b/conf/locale/fr/LC_MESSAGES/django.po @@ -76,6 +76,8 @@ # JRolland , 2013 # laurentFUN , 2014 # mamby , 2014 +# Manjari , 2014 +# Mtiana , 2014 # Olivier Marquez , 2013 # Olivier Marquez , 2013 # Yannick1 , 2013 @@ -125,7 +127,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -907,7 +909,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1543,6 +1545,16 @@ msgstr "" "Une adresse YouTube ou un lien vers un fichier hébergé n'importe où sur le " "web." +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Navigation" @@ -5327,10 +5339,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "Ressource externe" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "Voir cette ressource dans une nouvelle fenêtre" @@ -5342,6 +5368,10 @@ msgstr "" "Veuillez fournir launch_url. Cliquez sur \"Editer\" et remplissez les champs" " requis." +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -6197,10 +6227,6 @@ msgstr "Télécharger la vidéo" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/fr/LC_MESSAGES/djangojs.mo b/conf/locale/fr/LC_MESSAGES/djangojs.mo index 40248cb7ff..38ed66edea 100644 Binary files a/conf/locale/fr/LC_MESSAGES/djangojs.mo and b/conf/locale/fr/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/fr/LC_MESSAGES/djangojs.po b/conf/locale/fr/LC_MESSAGES/djangojs.po index 4ea092c101..b8532d851b 100644 --- a/conf/locale/fr/LC_MESSAGES/djangojs.po +++ b/conf/locale/fr/LC_MESSAGES/djangojs.po @@ -10,17 +10,20 @@ # Encolpe Degoute , 2013 # francoisedocq, 2014 # Gérard Vidal , 2014 +# Dosto92 , 2014 # jmc , 2014 # jmc , 2014 # JRolland , 2013 # Julien Colmonts , 2014 # JRolland , 2013 # laurentFUN , 2014 +# Manjari , 2014 # Olivier Marquez , 2013 # Olivier Marquez , 2013 # pchiu , 2013 # pchiu , 2013 # qcappart , 2014 +# aissam , 2014 # sarina , 2014 # antoviaque , 2014 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# @@ -35,6 +38,7 @@ # Encolpe Degoute , 2013 # francoisedocq, 2014 # Gérard Vidal , 2014 +# Dosto92 , 2014 # JRolland , 2013 # Julien Colmonts , 2014 # Olivier Marquez , 2013 @@ -43,9 +47,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" -"PO-Revision-Date: 2014-04-27 16:20+0000\n" -"Last-Translator: aissam \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-05-04 21:25+0000\n" +"Last-Translator: Dosto92 \n" "Language-Team: French (http://www.transifex.com/projects/p/edx-platform/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/conf/locale/gl/LC_MESSAGES/django.mo b/conf/locale/gl/LC_MESSAGES/django.mo index 87d972501d..3fbe393f34 100644 Binary files a/conf/locale/gl/LC_MESSAGES/django.mo and b/conf/locale/gl/LC_MESSAGES/django.mo differ diff --git a/conf/locale/gl/LC_MESSAGES/django.po b/conf/locale/gl/LC_MESSAGES/django.po index 63fe1f5aa1..77d2c71f7a 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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -179,6 +179,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -189,6 +199,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -315,7 +332,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -327,6 +344,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -775,7 +808,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -796,6 +829,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -808,6 +845,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -902,6 +961,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -934,11 +997,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -988,6 +1069,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1272,10 +1365,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1703,10 +1810,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1749,6 +1860,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2036,7 +2156,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2263,37 +2383,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2393,6 +2482,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3085,6 +3178,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3151,6 +3245,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3692,35 +3787,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3738,6 +3809,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3762,23 +3846,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3819,14 +3921,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 "" @@ -4034,12 +4128,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4050,12 +4143,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4096,11 +4188,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4209,6 +4337,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4264,18 +4396,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4383,14 +4503,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4433,7 +4549,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4660,10 +4777,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4673,6 +4819,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4716,15 +4870,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4776,6 +4930,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4833,8 +4991,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4891,10 +5050,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4975,6 +5136,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5065,33 +5246,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5100,6 +5265,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5116,14 +5285,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5163,7 +5324,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5208,43 +5369,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5493,8 +5622,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5732,6 +5861,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5740,6 +5873,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5783,17 +5930,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5923,6 +6064,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5943,12 +6088,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6283,12 +6428,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6402,10 +6541,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6578,6 +6725,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6696,6 +6850,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7058,24 +7216,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7087,6 +7235,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7126,10 +7282,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7210,6 +7375,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7220,10 +7389,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7647,7 +7812,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7658,9 +7824,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7678,6 +7845,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7699,7 +7870,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7708,6 +7879,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7839,6 +8020,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8070,6 +8272,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8306,6 +8514,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8545,20 +8763,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8568,7 +8784,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8939,6 +9155,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8979,13 +9197,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9674,19 +9886,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9700,23 +9909,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9751,6 +9977,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11385,6 +11618,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11473,15 +11710,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/gl/LC_MESSAGES/djangojs.mo b/conf/locale/gl/LC_MESSAGES/djangojs.mo index 5bcb74e99c..65f751a339 100644 Binary files a/conf/locale/gl/LC_MESSAGES/djangojs.mo and b/conf/locale/gl/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/gl/LC_MESSAGES/djangojs.po b/conf/locale/gl/LC_MESSAGES/djangojs.po index 89e604c3e2..2d68104703 100644 --- a/conf/locale/gl/LC_MESSAGES/djangojs.po +++ b/conf/locale/gl/LC_MESSAGES/djangojs.po @@ -18,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-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-24 14:25+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-05-03 11:50+0000\n" "Last-Translator: sarina \n" "Language-Team: Galician (http://www.transifex.com/projects/p/edx-platform/language/gl/)\n" "MIME-Version: 1.0\n" @@ -30,6 +30,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -38,6 +39,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -337,6 +340,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -393,16 +398,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -464,6 +467,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -500,6 +508,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -878,9 +890,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -888,7 +901,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1222,15 +1235,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1340,18 +1354,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1367,6 +1376,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1374,19 +1384,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1533,6 +1543,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1548,6 +1562,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "Contraer todas as seccións" @@ -1612,6 +1630,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1641,6 +1663,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1665,3 +1707,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/he/LC_MESSAGES/django.mo b/conf/locale/he/LC_MESSAGES/django.mo index d807e9e424..79e7a4ed0c 100644 Binary files a/conf/locale/he/LC_MESSAGES/django.mo and b/conf/locale/he/LC_MESSAGES/django.mo differ diff --git a/conf/locale/he/LC_MESSAGES/django.po b/conf/locale/he/LC_MESSAGES/django.po index d6b9347315..f286fd804c 100644 --- a/conf/locale/he/LC_MESSAGES/django.po +++ b/conf/locale/he/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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-03-26 18:20+0000\n" "Last-Translator: sdfhjc\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/edx-platform/language/he/)\n" @@ -176,6 +176,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -186,6 +196,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -312,7 +329,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -324,6 +341,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -772,7 +805,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -793,6 +826,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -805,6 +842,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -899,6 +958,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -931,11 +994,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -985,6 +1066,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1269,10 +1362,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1700,10 +1807,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1746,6 +1857,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2033,7 +2153,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2260,37 +2380,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2390,6 +2479,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3082,6 +3175,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3148,6 +3242,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3689,35 +3784,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3735,6 +3806,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3759,23 +3843,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3816,14 +3918,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 "" @@ -4031,12 +4125,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4047,12 +4140,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4093,11 +4185,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4206,6 +4334,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4261,18 +4393,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4380,14 +4500,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4430,7 +4546,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4657,10 +4774,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4670,6 +4816,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4713,15 +4867,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4773,6 +4927,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4830,8 +4988,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4888,10 +5047,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4972,6 +5133,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5062,33 +5243,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5097,6 +5262,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5113,14 +5282,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5160,7 +5321,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5205,43 +5366,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5490,8 +5619,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5729,6 +5858,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5737,6 +5870,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5780,17 +5927,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5920,6 +6061,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5940,12 +6085,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6280,12 +6425,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6399,10 +6538,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6575,6 +6722,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6693,6 +6847,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7055,24 +7213,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7084,6 +7232,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7123,10 +7279,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7207,6 +7372,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7217,10 +7386,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7644,7 +7809,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7655,9 +7821,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7675,6 +7842,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7696,7 +7867,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7705,6 +7876,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7836,6 +8017,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8067,6 +8269,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8303,6 +8511,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8542,20 +8760,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8565,7 +8781,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8936,6 +9152,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8976,13 +9194,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9671,19 +9883,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9697,23 +9906,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9748,6 +9974,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11382,6 +11615,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11470,15 +11707,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/he/LC_MESSAGES/djangojs.mo b/conf/locale/he/LC_MESSAGES/djangojs.mo index 073091dbf5..f60dcf0338 100644 Binary files a/conf/locale/he/LC_MESSAGES/djangojs.mo and b/conf/locale/he/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/he/LC_MESSAGES/djangojs.po b/conf/locale/he/LC_MESSAGES/djangojs.po index 697004666f..a7fde88e16 100644 --- a/conf/locale/he/LC_MESSAGES/djangojs.po +++ b/conf/locale/he/LC_MESSAGES/djangojs.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-26 18:20+0000\n" -"Last-Translator: sdfhjc\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" +"Last-Translator: sarina \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/edx-platform/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,6 +29,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -37,6 +38,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -336,6 +339,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -392,16 +397,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -463,6 +466,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -499,6 +507,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -877,9 +889,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -887,7 +900,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1221,15 +1234,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1339,18 +1353,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1366,6 +1375,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1373,19 +1383,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1532,6 +1542,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1547,6 +1561,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1608,6 +1626,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1637,6 +1659,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1661,3 +1703,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/hi/LC_MESSAGES/django.mo b/conf/locale/hi/LC_MESSAGES/django.mo index 0f43af7bdc..78e45f8920 100644 Binary files a/conf/locale/hi/LC_MESSAGES/django.mo and b/conf/locale/hi/LC_MESSAGES/django.mo differ diff --git a/conf/locale/hi/LC_MESSAGES/django.po b/conf/locale/hi/LC_MESSAGES/django.po index 7dfaa7f136..76c615f4c5 100644 --- a/conf/locale/hi/LC_MESSAGES/django.po +++ b/conf/locale/hi/LC_MESSAGES/django.po @@ -10,6 +10,7 @@ # agarwal , 2013 # anantvima , 2014 # ria1234 , 2014 +# gvidushiin , 2014 # sarina , 2014 # Chandra Shekhar Sharma , 2014 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# @@ -34,6 +35,7 @@ # anantvima , 2014 # Chandra Shekhar Sharma , 2014 # ria1234 , 2014 +# gvidushiin , 2014 # sarina , 2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX translation file @@ -43,6 +45,7 @@ # Translators: # ammubhave , 2013 # ria1234 , 2014 +# gvidushiin , 2014 # Chandra Shekhar Sharma , 2014 # #-#-#-#-# messages.po (edx-platform) #-#-#-#-# # edX translation file @@ -64,7 +67,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-03-28 05:40+0000\n" "Last-Translator: ria1234 \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/edx-platform/language/hi/)\n" @@ -843,7 +846,7 @@ msgid "unanswered" msgstr "जवाब नहीं दिया हुआ" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1456,6 +1459,16 @@ msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" "यूट्यूब यू आर एल या किसी फ़ाइल के लिए लिंक जो कि कहीं वेब पर उपलब्ध है।" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "नेविगेशन" @@ -5203,10 +5216,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "बाहरी संसाधन" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "संसाधन नई खिड़की में देखें" @@ -5216,6 +5243,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "कृपया launch_url दें। \"Edit\" क्लिक करें और आवश्यक फ़ील्ड्स भरें।" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -6061,10 +6092,6 @@ msgstr "वीडियो को डाउनलोड करें" msgid "Download transcript" msgstr "प्रतिलिपि डाउनलोड करें" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "{file_format}" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/hi/LC_MESSAGES/djangojs.mo b/conf/locale/hi/LC_MESSAGES/djangojs.mo index f393fd2c75..5e859a5439 100644 Binary files a/conf/locale/hi/LC_MESSAGES/djangojs.mo and b/conf/locale/hi/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/hi/LC_MESSAGES/djangojs.po b/conf/locale/hi/LC_MESSAGES/djangojs.po index 02708ef50e..20f2b2d314 100644 --- a/conf/locale/hi/LC_MESSAGES/djangojs.po +++ b/conf/locale/hi/LC_MESSAGES/djangojs.po @@ -8,6 +8,7 @@ # anantvima , 2014 # Chandra Shekhar Sharma , 2014 # ria1234 , 2014 +# gvidushiin , 2014 # ria1234 , 2014 # sarina , 2014 # Chandra Shekhar Sharma , 2014 @@ -19,15 +20,16 @@ # Translators: # anantvima , 2014 # ria1234 , 2014 +# gvidushiin , 2014 # ria1234 , 2014 # Chandra Shekhar Sharma , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" -"PO-Revision-Date: 2014-04-26 15:31+0000\n" -"Last-Translator: Chandra Shekhar Sharma \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-05-03 09:31+0000\n" +"Last-Translator: gvidushiin \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/edx-platform/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/conf/locale/hu/LC_MESSAGES/django.mo b/conf/locale/hu/LC_MESSAGES/django.mo index 898d8b5e63..f26f27d695 100644 Binary files a/conf/locale/hu/LC_MESSAGES/django.mo and b/conf/locale/hu/LC_MESSAGES/django.mo differ diff --git a/conf/locale/hu/LC_MESSAGES/django.po b/conf/locale/hu/LC_MESSAGES/django.po index f052c97d6e..cd7dc9c24e 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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -174,6 +174,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -184,6 +194,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -310,7 +327,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -322,6 +339,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -770,7 +803,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -791,6 +824,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -803,6 +840,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -897,6 +956,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -929,11 +992,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -983,6 +1064,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1267,10 +1360,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1698,10 +1805,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1744,6 +1855,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2031,7 +2151,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2258,37 +2378,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2388,6 +2477,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3080,6 +3173,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3146,6 +3240,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3687,35 +3782,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3733,6 +3804,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3757,23 +3841,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3814,14 +3916,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 "" @@ -4029,12 +4123,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4045,12 +4138,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4091,11 +4183,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4204,6 +4332,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4259,18 +4391,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4378,14 +4498,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4428,7 +4544,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4655,10 +4772,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4668,6 +4814,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4711,15 +4865,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4771,6 +4925,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4828,8 +4986,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4886,10 +5045,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4970,6 +5131,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5060,33 +5241,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5095,6 +5260,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5111,14 +5280,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5158,7 +5319,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5203,43 +5364,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5488,8 +5617,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5727,6 +5856,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5735,6 +5868,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5778,17 +5925,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5918,6 +6059,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5938,12 +6083,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6278,12 +6423,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6397,10 +6536,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6573,6 +6720,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6691,6 +6845,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7053,24 +7211,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7082,6 +7230,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7121,10 +7277,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7205,6 +7370,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7215,10 +7384,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7642,7 +7807,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7653,9 +7819,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7673,6 +7840,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7694,7 +7865,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7703,6 +7874,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7834,6 +8015,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8065,6 +8267,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8301,6 +8509,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8540,20 +8758,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8563,7 +8779,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8934,6 +9150,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8974,13 +9192,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9669,19 +9881,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9695,23 +9904,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9746,6 +9972,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11380,6 +11613,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11468,15 +11705,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/hu/LC_MESSAGES/djangojs.mo b/conf/locale/hu/LC_MESSAGES/djangojs.mo index 0272f8a8e5..8b9828b6b8 100644 Binary files a/conf/locale/hu/LC_MESSAGES/djangojs.mo and b/conf/locale/hu/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/hu/LC_MESSAGES/djangojs.po b/conf/locale/hu/LC_MESSAGES/djangojs.po index 8ce2c529ab..ef835c382c 100644 --- a/conf/locale/hu/LC_MESSAGES/djangojs.po +++ b/conf/locale/hu/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-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/edx-platform/language/hu/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -34,6 +35,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -333,6 +336,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -389,16 +394,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -460,6 +463,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -496,6 +504,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -874,9 +886,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -884,7 +897,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1218,15 +1231,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1336,18 +1350,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1363,6 +1372,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1370,19 +1380,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1529,6 +1539,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1544,6 +1558,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1605,6 +1623,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1634,6 +1656,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1658,3 +1700,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/hy_AM/LC_MESSAGES/django.mo b/conf/locale/hy_AM/LC_MESSAGES/django.mo index 6073bb03a5..b542173c9f 100644 Binary files a/conf/locale/hy_AM/LC_MESSAGES/django.mo and b/conf/locale/hy_AM/LC_MESSAGES/django.mo differ diff --git a/conf/locale/hy_AM/LC_MESSAGES/django.po b/conf/locale/hy_AM/LC_MESSAGES/django.po index 220ff314d8..b2bd4cc8ef 100644 --- a/conf/locale/hy_AM/LC_MESSAGES/django.po +++ b/conf/locale/hy_AM/LC_MESSAGES/django.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-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -823,8 +823,8 @@ msgid "unanswered" msgstr "Անպատասխան է" #: common/lib/capa/capa/inputtypes.py -msgid "queued" -msgstr "Հերթագրված է" +msgid "processing" +msgstr "" #: common/lib/capa/capa/inputtypes.py msgid "" @@ -1415,6 +1415,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "YouTube-ի կամ համացանցի որևիցէ տեղ գտնվող ֆայլի հղում:" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Կողմնորոշում" @@ -4916,10 +4926,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4929,6 +4953,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5728,10 +5756,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/hy_AM/LC_MESSAGES/djangojs.mo b/conf/locale/hy_AM/LC_MESSAGES/djangojs.mo index 331b887d40..b53e624519 100644 Binary files a/conf/locale/hy_AM/LC_MESSAGES/djangojs.mo and b/conf/locale/hy_AM/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/hy_AM/LC_MESSAGES/djangojs.po b/conf/locale/hy_AM/LC_MESSAGES/djangojs.po index a11edb6f71..555cb2550d 100644 --- a/conf/locale/hy_AM/LC_MESSAGES/djangojs.po +++ b/conf/locale/hy_AM/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-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Armenian (Armenia) (http://www.transifex.com/projects/p/edx-platform/language/hy_AM/)\n" diff --git a/conf/locale/id/LC_MESSAGES/django.mo b/conf/locale/id/LC_MESSAGES/django.mo index f6505fea3b..50ffebf697 100644 Binary files a/conf/locale/id/LC_MESSAGES/django.mo and b/conf/locale/id/LC_MESSAGES/django.mo differ diff --git a/conf/locale/id/LC_MESSAGES/django.po b/conf/locale/id/LC_MESSAGES/django.po index 064276eeb6..174091a1e6 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-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -819,7 +819,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1384,6 +1384,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -4793,10 +4803,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4806,6 +4830,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5605,10 +5633,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/id/LC_MESSAGES/djangojs.mo b/conf/locale/id/LC_MESSAGES/djangojs.mo index 31926211ec..c2c846c7ba 100644 Binary files a/conf/locale/id/LC_MESSAGES/djangojs.mo and b/conf/locale/id/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/id/LC_MESSAGES/djangojs.po b/conf/locale/id/LC_MESSAGES/djangojs.po index e4b175d762..d75564ec22 100644 --- a/conf/locale/id/LC_MESSAGES/djangojs.po +++ b/conf/locale/id/LC_MESSAGES/djangojs.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/edx-platform/language/id/)\n" diff --git a/conf/locale/it_IT/LC_MESSAGES/django.mo b/conf/locale/it_IT/LC_MESSAGES/django.mo index 9f5f75f6d8..4729d035b7 100644 Binary files a/conf/locale/it_IT/LC_MESSAGES/django.mo and b/conf/locale/it_IT/LC_MESSAGES/django.mo differ diff --git a/conf/locale/it_IT/LC_MESSAGES/django.po b/conf/locale/it_IT/LC_MESSAGES/django.po index 7fcae6a82d..c1e0c0a805 100644 --- a/conf/locale/it_IT/LC_MESSAGES/django.po +++ b/conf/locale/it_IT/LC_MESSAGES/django.po @@ -4,9 +4,11 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# AleksandraS. , 2014 # gimbo , 2014 # gimbo , 2014 # caesar2164, 2014 +# maurimonti , 2014 # Monica Crapanzano , 2013 # Monica Crapanzano , 2013 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# @@ -25,6 +27,8 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# lillith, 2014 +# lillith, 2014 # gimbo , 2014 # gimbo , 2014 # caesar2164, 2014 @@ -56,15 +60,19 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# AriannaT , 2014 +# CarlaGratta , 2014 +# lillith, 2014 # eevidal, 2014 # caesar2164, 2014 +# pix2, 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" -"PO-Revision-Date: 2014-03-04 17:12+0000\n" -"Last-Translator: eevidal\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-05-04 00:16+0000\n" +"Last-Translator: CarlaGratta \n" "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/edx-platform/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -824,7 +832,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1389,6 +1397,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -4800,10 +4818,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4813,6 +4845,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5612,10 +5648,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/it_IT/LC_MESSAGES/djangojs.mo b/conf/locale/it_IT/LC_MESSAGES/djangojs.mo index 375a41788f..b36cec9d47 100644 Binary files a/conf/locale/it_IT/LC_MESSAGES/djangojs.mo and b/conf/locale/it_IT/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/it_IT/LC_MESSAGES/djangojs.po b/conf/locale/it_IT/LC_MESSAGES/djangojs.po index 3c76d986e1..cd6e434b64 100644 --- a/conf/locale/it_IT/LC_MESSAGES/djangojs.po +++ b/conf/locale/it_IT/LC_MESSAGES/djangojs.po @@ -4,11 +4,14 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# AleksandraS. , 2014 +# lillith, 2014 # gianlorenzo , 2013 # gianlorenzo , 2013 # gimbo , 2014 # gimbo , 2014 # caesar2164, 2014 +# lillith, 2014 # marcore , 2014 # Monica Crapanzano , 2013 # Monica Crapanzano , 2013 @@ -19,6 +22,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# AleksandraS. , 2014 # funkoolow , 2014 # gianlorenzo , 2013 # gimbo , 2014 @@ -30,9 +34,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" -"PO-Revision-Date: 2014-04-24 13:00+0000\n" -"Last-Translator: sarina \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-29 22:40+0000\n" +"Last-Translator: AleksandraS. \n" "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/edx-platform/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/conf/locale/ja_JP/LC_MESSAGES/django.mo b/conf/locale/ja_JP/LC_MESSAGES/django.mo index 9050d95a0a..a1f1605e01 100644 Binary files a/conf/locale/ja_JP/LC_MESSAGES/django.mo and b/conf/locale/ja_JP/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ja_JP/LC_MESSAGES/django.po b/conf/locale/ja_JP/LC_MESSAGES/django.po index 75f1a93032..309eaeb67a 100644 --- a/conf/locale/ja_JP/LC_MESSAGES/django.po +++ b/conf/locale/ja_JP/LC_MESSAGES/django.po @@ -70,7 +70,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -832,7 +832,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1397,6 +1397,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -4806,10 +4816,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4819,6 +4843,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5618,10 +5646,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/ja_JP/LC_MESSAGES/djangojs.mo b/conf/locale/ja_JP/LC_MESSAGES/djangojs.mo index ec50a87cd4..2d86e1f0b1 100644 Binary files a/conf/locale/ja_JP/LC_MESSAGES/djangojs.mo and b/conf/locale/ja_JP/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ja_JP/LC_MESSAGES/djangojs.po b/conf/locale/ja_JP/LC_MESSAGES/djangojs.po index 719b56b6eb..992c4ee86f 100644 --- a/conf/locale/ja_JP/LC_MESSAGES/djangojs.po +++ b/conf/locale/ja_JP/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-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/edx-platform/language/ja_JP/)\n" diff --git a/conf/locale/kk_KZ/LC_MESSAGES/django.mo b/conf/locale/kk_KZ/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..9eb316ae2a Binary files /dev/null and b/conf/locale/kk_KZ/LC_MESSAGES/django.mo differ diff --git a/conf/locale/kk_KZ/LC_MESSAGES/django.po b/conf/locale/kk_KZ/LC_MESSAGES/django.po new file mode 100644 index 0000000000..03758ea25c --- /dev/null +++ b/conf/locale/kk_KZ/LC_MESSAGES/django.po @@ -0,0 +1,12584 @@ +# #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Kazakh (Kazakhstan) (http://www.transifex.com/projects/p/edx-platform/language/kk_KZ/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# Ablai , 2014 +# aermek , 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: +# aermek , 2014 +# #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Kazakh (Kazakhstan) (http://www.transifex.com/projects/p/edx-platform/language/kk_KZ/) +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# eudj1n , 2014 +# #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# eudj1n , 2014 +# #-#-#-#-# messages.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2013 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# eudj1n , 2014 +# #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# eudj1n , 2014 +# eudj1n , 2014 +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-24 12:54+0000\n" +"Last-Translator: Ablai \n" +"Language-Team: Kazakh (Kazakhstan) (http://www.transifex.com/projects/p/edx-platform/language/kk_KZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 1.3\n" +"Language: kk_KZ\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Translators: "Open Ended Panel" appears on a tab that, when clicked, opens +#. up a panel that +#. displays information about open-ended problems that a user has submitted or +#. needs to grade +#: cms/djangoapps/contentstore/utils.py common/lib/xmodule/xmodule/tabs.py +msgid "Open Ended Panel" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "Honor Code Certificate" +msgstr "" + +#: common/djangoapps/course_modes/views.py common/djangoapps/student/views.py +msgid "Enrollment is closed" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment mode not supported" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Invalid amount selected." +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "No selected price or selected price is too low." +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Community TA" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "" +"Your account has been disabled. If you believe this was done in error, " +"please contact us at {link_start}{support_email}{link_end}" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "Disabled Account" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Male" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Female" +msgstr "" + +#. Translators: 'Other' refers to the student's gender +#. Translators: 'Other' refers to the student's level of education +#: common/djangoapps/student/models.py common/djangoapps/student/models.py +msgid "Other" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Doctorate" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Master's or professional degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Bachelor's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Associate's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Secondary/high school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Junior secondary/junior high/middle school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Elementary/primary school" +msgstr "" + +#. Translators: 'None' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "None" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id not specified" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id is invalid" +msgstr "" + +#: common/djangoapps/student/views.py +#: lms/templates/courseware/course_about.html +msgid "Course is full" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You are not enrolled in this course" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Enrollment action is invalid" +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "There was an error receiving your login information. Please email us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has been temporarily locked due to excessive login failures. " +"Try again later." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Too many failed login attempts. Try again later." +msgstr "" + +#: common/djangoapps/student/views.py lms/templates/provider_login.html +msgid "Email or password is incorrect." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has not been activated. We have sent another activation " +"message. Please check your e-mail for the activation instructions." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please enter a username" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please choose an option" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "User with username {} does not exist" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully disabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully reenabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unexpected account status" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Public Username '{username}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Email '{email}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Error (401 {field}). E-mail us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Accepting Terms of Service is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Agreeing to the Honor Code is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Email cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail is required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Could not send activation e-mail." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unknown error. Please e-mail us to let us know how it happened." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "No inactive user with this e-mail exists" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unable to send reactivation email" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Invalid password" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail address required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with this e-mail already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Old email is the same as the new email." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Name required" +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Invalid ID" +msgstr "" + +#. Translators: the translation for "LONG_DATE_FORMAT" must be a format +#. string for formatting dates in a long form. For example, the +#. American English form is "%A, %B %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "LONG_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "DATE_TIME_FORMAT" must be a format +#. string for formatting dates with times. For example, the American +#. English form is "%b %d, %Y at %H:%M". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "DATE_TIME_FORMAT" +msgstr "" + +#. Translators: the translation for "SHORT_DATE_FORMAT" must be a +#. format string for formatting dates in a brief form. For example, +#. the American English form is "%b %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "SHORT_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "TIME_FORMAT" must be a format +#. string for formatting times. For example, the American English +#. form is "%H:%M:%S". See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "TIME_FORMAT" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "AM" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "PM" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Monday Februrary 10, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Monday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Tuesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Wednesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Thursday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Friday Februrary 14, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Friday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Saturday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Sunday" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jan 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Feb 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Mar 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Apr 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "May 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "May" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jun 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jul 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Aug 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Sep 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Oct 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Nov 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Dec 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "January 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "January" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "February 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "February" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "March 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "March" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "April 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "April" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "May 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "May" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "June 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "June" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "July 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "July" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "August 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "August" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "September 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "September" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "October 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "October" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "November 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "November" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "December 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "December" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Invalid Length ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or more" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or less" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Must be more complex ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more uppercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more lowercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more digits" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more punctuation characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more non ascii characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more unique words" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Too similar to a restricted dictionary word." +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +msgid "Cannot rescore problems with possible file submissions" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "correct" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incorrect" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incomplete" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +msgid "unanswered" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "processing" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your file(s) have been submitted. As soon as your submission is graded, this" +" message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your answer has been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Submitted. As soon as a response is returned, this message will be replaced " +"by that feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Error {err} in evaluating hint function {hintfn}." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "(Source code line unavailable)" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "See XML source line {sourcenum}." +msgstr "" + +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +msgid "There was a problem with the staff answer to this problem." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{student_answer}' as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use variables ({bad_variables}) in numerical problems." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "factorial function evaluated outside its domain:'{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid math syntax: '{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use complex numbers in range tolerance problems" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: complex boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: empty boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "CustomResponse: check function returned an invalid dictionary!" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"Unable to deliver your submission to grader (Reason: {error_msg}). Please " +"try again later." +msgstr "" + +#. Translators: 'grader' refers to the edX automatic code grader. +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/capa/capa/responsetypes.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Invalid grader reply. Please contact the course staff." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: {bad_input} not permitted in answer." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"factorial function not permitted in answer for this problem. Provided answer" +" was: {bad_input}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula" +msgstr "" + +#. Translators: 'SchematicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "The Staff answer could not be interpreted as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{given_answer}' as a number." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Final Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Warning: The problem has been reset to its initial state!" +msgstr "" + +#. Translators: Following this message, there will be a bulleted list of +#. items. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"The problem's state was corrupted by an invalid submission. The submission " +"consisted of:" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "If this error persists, please contact the course staff." +msgstr "" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem is closed." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be reset before it can be checked again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You must wait at least {wait} seconds between submissions." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + +#. Translators: {msg} will be replaced with a problem's error message. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Error: {msg}" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + +#. Translators: 'rescoring' refers to the act of re-submitting a student's +#. solution so it can get a new score. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem's definition does not support rescoring." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be answered before it can be graded again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem needs to be reset prior to save." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Your answers have been saved." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Your answers have been saved but not graded. Click 'Check' to grade them." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Refresh the page and make an attempt before resetting." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"We're sorry, there was an error with processing your request. Please try " +"reloading your page and trying again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"The state of this problem has changed since you loaded this page. Please " +"refresh your page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "General" +msgstr "" + +#. Translators: TBD stands for 'To Be Determined' and is used when a course +#. does not yet have an announced start date. +#: common/lib/xmodule/xmodule/course_module.py +msgid "TBD" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: 'Courseware' refers to the tab in the courseware that leads to +#. the content of a course +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/courseware/courseware-error.html +msgid "Courseware" +msgstr "" + +#. Translators: "Course Info" is the name of the course's information and +#. updates page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Course Info" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Progress" is the name of the student's course progress page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/peer_grading/peer_grading.html +msgid "Progress" +msgstr "" + +#. Translators: "Wiki" is the name of the course's wiki page +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/course_wiki/views.py +#: lms/templates/wiki/base.html +msgid "Wiki" +msgstr "" + +#. Translators: "Discussion" is the title of the course forum page +#. Translators: 'Discussion' refers to the tab in the courseware that leads to +#. the discussion forums +#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +msgid "Discussion" +msgstr "" + +#: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Textbooks" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Staff grading" appears on a tab that allows +#. staff to view open-ended problems that require staff grading +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/instructor/staff_grading.html +msgid "Staff grading" +msgstr "" + +#. Translators: "Peer grading" appears on a tab that allows +#. students to view open-ended problems that require grading +#: common/lib/xmodule/xmodule/tabs.py +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 +msgid "Syllabus" +msgstr "" + +#. Translators: 'Instructor' appears on the tab that leads to the instructor +#. dashboard, which is +#. a portal where an instructor can get data and perform various actions on +#. their course +#: common/lib/xmodule/xmodule/tabs.py +msgid "Instructor" +msgstr "" + +#. Translators: "Self" is used to denote an openended response that is self- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Self" +msgstr "" + +#. Translators: "AI" is used to denote an openended response that is machine- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "AI" +msgstr "" + +#. Translators: "Peer" is used to denote an openended response that is peer- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Peer" +msgstr "" + +#. Translators: "Not started" is used to communicate to a student that their +#. response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Not started." +msgstr "" + +#. Translators: "Being scored." is used to communicate to a student that their +#. response +#. are in the process of being scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Being scored." +msgstr "" + +#. Translators: "Scoring finished" is used to communicate to a student that +#. their response +#. have been scored, but the full scoring process is not yet complete +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scoring finished." +msgstr "" + +#. Translators: "Complete" is used to communicate to a student that their +#. openended response has been fully scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Complete." +msgstr "" + +#. Translators: "Scored rubric" appears to a user as part of a longer +#. string that looks something like: "Scored rubric from grader 1". +#. "Scored" is an adjective that modifies the noun "rubric". +#. That longer string appears when a user is viewing a graded rubric +#. returned from one of the graders of their openended response problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scored rubric" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "" +"You have attempted this question {number_of_student_attempts} times. You are" +" only allowed to attempt it {max_number_of_attempts} times." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "The problem state got out-of-sync. Please try reloading the page." +msgstr "" + +#. Translators: "Self-Assessment" refers to the self-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Self-Assessment" +msgstr "" + +#. Translators: "Peer-Assessment" refers to the peer-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Peer-Assessment" +msgstr "" + +#. Translators: "Instructor-Assessment" refers to the instructor-assessed mode +#. of openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Instructor-Assessment" +msgstr "" + +#. Translators: "AI-Assessment" refers to the machine-graded mode of openended +#. evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "AI-Assessment" +msgstr "" + +#. Translators: 'tag' is one of 'feedback', 'submission_id', +#. 'grader_id', or 'score'. They are categories that a student +#. responds to when filling out a post-assessment survey +#. of his or her grade from an openended problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Could not find needed tag {tag_name} in the survey responses. Please try " +"submitting again." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "There was an error saving your feedback. Please contact course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Couldn't submit feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Unable to save your feedback. Please try again later." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your submission." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Unable to submit your submission to the grader. Please try again later." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error getting feedback from grader." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "No feedback available from grader." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error handling action. Please try again." +msgstr "" + +#. Translators: this string appears once an openended response +#. is submitted but before it has been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: "Not started" communicates to a student that their response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Not started" +msgstr "" + +#. Translators: "In progress" communicates to a student that their response +#. is currently in the grading process +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "In progress" +msgstr "" + +#. Translators: "Done" communicates to a student that their response +#. has been fully graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Done" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We could not find a file in your submission. Please try choosing a file or " +"pasting a URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We are having trouble saving your file. Please try another file or paste a " +"URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/self_assessment_module.py +msgid "Error saving your score. Please notify course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Can't receive transcripts from Youtube for {youtube_id}. Status code: " +"{status_code}." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Can't find any transcripts on the Youtube service." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "We support only SubRip (*.srt) transcripts format." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Something wrong with SubRip transcripts file during parsing. Inner message " +"is {error_message}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Something wrong with SubRip transcripts file during parsing." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "A YouTube URL or a link to a file hosted anywhere on the web." +msgstr "" + +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Navigation" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "About these documents" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Index" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Search" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/copyright.html +msgid "Copyright" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: " +"{grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "students" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "questions" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{num_students} student(s) opened Subsection {subsection_num}: " +"{subsection_name}" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{problem_info_x} {problem_info_n} - {count_grade} {students} " +"({percent:.0f}%: {grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#. Translators: this string includes wiki markup. Leave the ** and the _ +#. alone. +#: lms/djangoapps/course_wiki/views.py +msgid "This is the wiki for **{organization}**'s _{course_name}_." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Course page automatically created." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Welcome to the edX Wiki" +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Visit a course wiki to add an article." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} does not exist." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} has never accessed problem {location}" +msgstr "" + +#: lms/djangoapps/courseware/features/video.py lms/templates/video.html +msgid "ERROR: No playable video sources found!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Path {0} doesn't exist, please create it, or configure a different path with" +" GIT_REPO_DIR" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Non usable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to get git log" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "git clone or pull failed!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to run import command." +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "The underlying module store does not support import." +msgstr "" + +#. Translators: This is an error message when they ask for a +#. particular version of a git repository and that version isn't +#. available from the remote source they specified +#: lms/djangoapps/dashboard/git_import.py +msgid "The specified remote branch is not available." +msgstr "" + +#. Translators: Error message shown when they have asked for a git +#. repository branch, a specific version within a repository, that +#. doesn't exist, or there is a problem changing to it. +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to switch to specified branch. Please check your branch name." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}, error {1}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "fixed password" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "All ok!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide full name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email must end in" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed - email {0} already exists as external_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Password must be supplied if not using certificates" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email address required (not username)" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Oops, failed to create user {0}, IntegrityError" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "User {0} created successfully!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with email address {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with username {0} - {1}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted user {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Statistic" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Value" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Site statistics" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Total number of users" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Courses loaded in the modulestore" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/templates/tracking_log.html +msgid "username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "email" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Repair Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Create User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Delete User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "The git repo location should end with '.git', and be a valid url" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Added Course" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Refusing to import. GIT_IMPORT_WITH_XMLMODULESTORE is not turned on, and it " +"is generally not safe to import into an XMLModuleStore with multithreaded. " +"We recommend you enable the MongoDB based module store instead, unless this " +"is a development environment." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "" +"The course {0} already exists in the data directory! (reloading anyway)" +msgstr "" + +#. Translators: unable to download the course content from +#. the source git repository. Clone occurs if this is brand +#. new, and pull is when it is being updated from the +#. source. +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Unable to clone or pull repository. Please check your url. Output was: {0!r}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed to clone repository to {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Successfully switched to branch: {branch_name}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Loaded course {0} {1}
Errors:" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: cms/templates/index.html cms/templates/settings.html +msgid "Course Name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Directory/ID" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Git Commit" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Change" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Editor" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Information about all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Error - cannot get course with ID {0}
{1}
" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "course_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# enrolled" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# staff" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "instructors" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Enrollment information for all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "role" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "full_name" +msgstr "" + +#: lms/djangoapps/dashboard/management/commands/git_add_course.py +msgid "" +"Import the specified git repository and optional branch into the modulestore" +" and optionally specified directory." +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with email address" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with username" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Failed in authenticating" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Unable to clone or pull repository" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Error - cannot get course with ID" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Re-open thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Close thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Title can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Body can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Comment level too deep" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "allowed file types are '%(file_types)s'" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "maximum upload file size is %(file_size)sK" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "" +"Error uploading file. Please contact the site administrator. Thank you." +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Good" +msgstr "" + +#: lms/djangoapps/django_comment_client/forum/views.py +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "All Groups" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "User does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Task is already running." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Username" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Name" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Email" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Language" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Location" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Birth Year" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "Gender" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Level of Education" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +msgid "Mailing Address" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Goals" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Complete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Incomplete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Your grade report is being generated! You can view the status of the " +"generation task in the 'Pending Instructor Tasks' section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"A grade report generation task is already in progress. Check the 'Pending " +"Instructor Tasks' table for the status of the task. When completed, the " +"report will be available for download in the table below." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully changed due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully reset due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Membership" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Student Admin" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Extensions" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Data Download" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/courseware/instructor_dashboard.html +msgid "Analytics" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Course Statistics At A Glance" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found a single student. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find student with that email or username." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Summary Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Raw Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for resetting \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found module. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname: {url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Deleted student module state for {state}!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to delete module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Module state successfully reset!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't reset module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{key}\" for student {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{key}\": {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Progress page for username: {username} with email address: {email}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Assignment Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Please enter an assignment name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Invalid assignment name '{name}'" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "External email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades for assignment \"{name}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Staff" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Instructors" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student profile data for course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found {num} records to dump." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student state for problem {problem}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Beta Testers" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades from {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook defined in course metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook url defined in settings.FEATURES" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No gradebook name defined in course remote_gradebook metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to communicate with gradebook server at {url}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: {err}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Remote gradebook response for {action}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Full name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Roles" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Forum {name}s in course {id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown rolename \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown username \"{username}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" does not have rolename \"{rolename}\", cannot " +"remove" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Removed \"{username}\" from \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: user \"{username}\" already has rolename \"{rolename}\", cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" should first be added as staff before adding as a" +" forum administrator, cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Added \"{username}\" to \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "{title} in course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "ID" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py cms/templates/register.html +#: lms/templates/dashboard.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "Full Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "edX email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Un-enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\", module " +"\"{problem}\" and student \"{student}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\" and module " +"\"{problem}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unable to parse date: " +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Couldn't find module for url: {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor/views/tools.py +msgid "Extended Due Date" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Users with due date extensions for {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unit" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Due date extensions for {0} {1} ({2})" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "rescored" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "reset" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/templates/wiki/plugins/attachments/index.html wiki/models/article.py +msgid "deleted" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "emailed" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks.py +msgid "graded" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#: lms/djangoapps/instructor_task/views.py +msgid "No status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No task_output information found for instructor_task {0}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No message provided" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "Invalid task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No progress status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_input information found for instructor_task {0}: {1}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} and {succeeded} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Progress: {action} {succeeded} of {attempted} so far" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find submission to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any students with submissions to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for any of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem {action} for {succeeded} of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any recipients to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message failed to be {action} for any of {attempted} recipients " +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message successfully {action} for {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Message {action} for {succeeded} of {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Status: {action} {succeeded} of {attempted}" +msgstr "" + +#. Translators: {skipped} is a count. This message is appended to task +#. progress status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (skipping {skipped})" +msgstr "" + +#. Translators: {total} is a count. This message is appended to task progress +#. status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (out of {total})" +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +"\n" +" Dear %(student_name)s,\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +" \n" +" Congratulations on earning your certificate in %(course_name)s!\n" +" Since you have an account on LinkedIn, you can display your hard earned\n" +" credential for your colleagues to see. Click the button below to add the\n" +" certificate to your profile.\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "Add to profile" +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Could not contact the external grading server. Please contact the " +"development team at {email}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Cannot find any open response problems in this course. Have you submitted " +"answers to any open response assessment questions? If not, please do so and " +"return to this page." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "AI Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Peer Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Not yet available" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Automatic Checker" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Instructor Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify course " +"staff." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify your edX" +" point of contact." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "for course {0} and student {1}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View all problems that require peer assessment in this particular course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View ungraded submissions submitted by students for the open ended problems " +"in the course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View open ended problems that you have previously submitted for grading." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "View submissions that have been flagged by students as inappropriate." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +#: lms/djangoapps/open_ended_grading/views.py +msgid "New submissions to grade" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "New grades have been returned" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "Submissions have been flagged for review" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"\n" +" Error with initializing peer grading.\n" +" There has not been a peer grading module created in the courseware that would allow you to grade others.\n" +" Please check back later for this.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Order Payment Confirmation" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Trying to add a different currency into the cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Please visit your dashboard to see your new" +" enrollments." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "[Refund] User-Requested Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Mode {mode} does not exist for {course_id}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Certificate of Achievement, {mode_name} for course {course}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Note - you have up to 2 weeks into the course to unenroll from the Verified " +"Certificate option and receive a full refund. To receive your refund, " +"contact {billing_email}. Please include your order number in your e-mail. " +"Please do NOT include your credit card information." +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order Number" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Customer Name" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Original Transaction" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Amount of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "Service Fees (if any)" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Purchase Time" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order ID" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Status" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +msgid "Quantity" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Unit Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Currency" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: wiki/plugins/attachments/forms.py +msgid "Description" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Comments" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "University" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html +#: cms/templates/widgets/header.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Course" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Announce Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html +msgid "Course Start Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Close Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Period" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Enrolled" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Audit Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Honor Code Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Verified Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue over the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Verified Students Contributing More than the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Dollars Refunded" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Transactions" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Payments Collected" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Successful Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Amount of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You must be logged-in to add to a shopping cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course you requested does not exist." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course {0} is already in your cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "You are already registered in course {0}." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Course added to cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You do not have permission to view this page." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor did not return a required parameter: {0}" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor returned a badly-typed value {0} for param {1}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The payment processor accepted an order whose number is not in our system." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The amount charged by the processor {0} {1} is different than the total cost" +" of the order {2} {3}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor did not accept your payment.\n" +" The decision they returned was {decision},\n" +" and the reason was {reason_code}:{reason_msg}.\n" +" You were not charged. Please try a different form of payment.\n" +" Contact us with payment-related questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a payment confirmation that had inconsistent data!\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" The specific error message is: {msg}.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Due to an error your purchase was charged for a different amount than the order total!\n" +" The specific error message is: {msg}.\n" +" Your credit card has probably been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a corrupted message regarding your charge, so we are\n" +" unable to validate that the message actually came from the payment processor.\n" +" The specific error message is: {msg}.\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Successful transaction." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request is missing one or more required fields." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "One or more fields in the request contains invalid data." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The merchantReferenceCode sent with this authorization request matches the\n" +" merchantReferenceCode of another authorization request that you sent in the last 15 minutes.\n" +" Possible fix: retry the payment after 15 minutes.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Error: General system failure. Possible fix: retry the payment after a few " +"minutes." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received but there was a server timeout.\n" +" This error does not include timeouts between the client and the server.\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but a service did not finish running in time\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The issuing bank has questions about the request. Possible fix: retry with " +"another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Expired card. You might also receive this if the expiration date you\n" +" provided does not match the date the issuing bank has on file.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" General decline of the card. No other information provided by the issuing bank.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Insufficient funds in the account. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Unknown reason" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Issuing bank unavailable. Possible fix: retry again after a few minutes" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Inactive card or card not authorized for card-not-present transactions.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The card has reached the credit limit. Possible fix: retry with another form" +" of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid card verification number. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid account number. Possible fix: retry with another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type is not accepted by the payment processor.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"General decline by the processor. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" There is a problem with our CyberSource merchant configuration. Please let us know at {0}\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The requested amount exceeds the originally authorized amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Processor Failure. Possible fix: retry the payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The authorization has already been captured" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The requested transaction amount must match the previous transaction amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type sent is invalid or does not correlate with the credit card number.\n" +" Possible fix: retry with the same card or another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request ID is invalid." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" You requested a capture through the API, but there is no corresponding, unused authorization record.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The transaction has already been settled or reversed." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The capture or credit is not voidable because the capture or credit information has already been\n" +" submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "You requested a credit for a capture that was previously voided" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but there was a timeout at the payment processor.\n" +" Possible fix: retry the payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource.'\n" +" Possible fix: retry with a different form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Reports" +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "" +"There was an error in your date input. It should be formatted as YYYY-MM-DD" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "No photo ID was provided." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "We couldn't read your name from your photo ID image." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "" +"The name associated with your account and the name on your ID do not match." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "The image of your face was not clear." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "Your face was not visible in your self-photo" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "There was an error verifying your ID photos." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Selected price is not valid number." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "This course doesn't support verified certificates" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "No selected price or selected price is below minimum." +msgstr "" + +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html +msgid "Skip to this view's content" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +#: lms/templates/registration/password_reset_complete.html +msgid "Your Password Reset is Complete" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +msgid "" +"\n" +" Your password has been set. You may go ahead and %(link_start)slog in%(link_end)s now.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Form" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" We're sorry, %(platform_name)s enrollment is not available in your region\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The following errors occurred while processing your registration: " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "You must complete all fields." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The two password fields didn't match." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"We're sorry, our systems seem to be having trouble processing your password " +"reset" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Someone has been made aware of this issue. Please try again shortly. Please %(start_link)scontact us%(end_link)s about any concerns you have.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"Please enter your new password twice so we can verify you typed it in " +"correctly.
Required fields are noted by bold text and an asterisk (*)." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: lms/templates/forgot_password_modal.html lms/templates/login.html +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Required Information" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password Again" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Change My Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your Password Reset Was Unsuccessful" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" The password reset link was invalid, possibly because the link has already been used. Please return to the %(start_link)slogin page%(end_link)s and start the password reset process again.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Help" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: cms/templates/login.html lms/templates/login-sidebar.html +#: lms/templates/register-sidebar.html +msgid "Need Help?" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" View our %(start_link)shelp section for contact information and answers to commonly asked questions%(end_link)s\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"You're receiving this e-mail because you requested a password reset for your" +" user account at edx.org." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet reset your password." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Thanks for using our site!" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "The edX Team" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "Last modified:" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "See all children" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "This article was last modified:" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/create.html.py +msgid "Add new article" +msgstr "" + +#: lms/templates/wiki/create.html +msgid "Create article" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/delete.html +#: lms/templates/wiki/delete.html.py +msgid "Go back" +msgstr "" + +#: lms/templates/wiki/delete.html lms/templates/wiki/delete.html.py +#: lms/templates/wiki/edit.html +msgid "Delete article" +msgstr "" + +#: lms/templates/wiki/delete.html +#: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Delete" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You cannot delete a root article." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You cannot delete this article because you do not have permission to delete " +"articles with children. Try to remove the children manually one-by-one." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You are deleting an article. This means that its children will be deleted as" +" well. If you choose to purge, children will also be purged!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "Articles that will be deleted" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "...and more!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You are deleting an article. Please confirm." +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/wiki/includes/article_menu.html +msgid "Edit" +msgstr "" + +#: lms/templates/wiki/edit.html lms/templates/wiki/edit.html.py +msgid "Save changes" +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/unit.html +msgid "Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this is a control to allow users to exit out of this modal +#. interface (a menu or piece of UI that takes the full focus of the screen) +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/modal/_modal-settings-language.html +#: lms/templates/modal/accessible_confirm.html +msgid "Close" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Wiki Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html +#: lms/templates/modal/_modal-settings-language.html +msgid "window open" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Back to editor" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "History" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"Click each revision to see a list of edited lines. Click the Preview button " +"to see how the article looked at this stage. At the bottom of this page, you" +" can change to a particular revision or merge an old revision with the " +"current one." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "(no log message)" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Preview this revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Auto log:" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Change" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Merge selected with current..." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Switch to selected version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Wiki Revision Preview" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Back to history view" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Switch to this version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge Revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge with current" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"When you merge a revision with the current, all data will be retained from " +"both versions and merged at its approximate location from each revision." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "After this, it's important to do a manual review." +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Create new merged version" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing revision:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing a merge between two revisions:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "This revision has been deleted." +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Restoring to this revision will mark the article as deleted." +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "" +"\n" +" You need to log in or sign up to use this function.\n" +" " +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in or sign up to use this function." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Cheatsheet" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Syntax Help" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"This wiki uses Markdown for styling. There are several " +"useful guides online. See any of the links below for in-depth details:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Markdown: Basics" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quick Markdown Syntax Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Miniature Markdown Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"To create a new wiki article, create a link to it. Clicking the link gives " +"you the creation page." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "[Article Name](wiki:ArticleName)" +msgstr "" + +#. Translators: Do not translate "edX" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Additions:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Math Expression" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Useful examples:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wikipedia" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Wiki" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Huge Header" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Smaller Header" +msgstr "" + +#. Translators: Leave the punctuation, but translate "emphasis" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "*emphasis* or _emphasis_" +msgstr "" + +#. Translators: Leave the punctuation, but translate "strong" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "**strong** or __strong__" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Unordered List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 1" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 2" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Ordered" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quotes" +msgstr "" + +#: lms/templates/wiki/includes/editor_widget.html +msgid "" +"\n" +" Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for help.\n" +" " +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/wiki_plugin.py +msgid "Attachments" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload new file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search and add file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload File" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search files and articles" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"You can reuse files from other articles. These files are subject to updates " +"on other articles which may or may not be a good thing." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"The following files are available for this article. Copy the markdown tag to" +" directly refer to a file from the article text." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Markdown tag" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Uploaded by" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Size" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File History" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Detach" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Replace" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Restore" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "anonymous (IP logged)" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File history" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "revisions" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "There are no attachments for this article." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Invalid course update id." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Course update not found." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " +"configure a different path with GIT_REPO_EXPORT_DIR" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Non writable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"If using http urls, you must provide the username and password in the url. " +"Similar to https://user:pass@github.com/user/course." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to determine branch, repo in detached HEAD mode" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to update or clone git repository." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to export course to xml." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to configure git username and password" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to commit changes. This is usually because there are no changes to be" +" committed" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to push changes. This is usually because the remote repository " +"cannot be contacted" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Bad course location provided" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Missing branch on fresh clone" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command was: {0!r}. Working directory was: {1!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command output was: {0!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Directory already exists, doing a git reset and pull instead of git clone." +msgstr "" + +#: cms/djangoapps/contentstore/utils.py lms/templates/notes.html +msgid "My Notes" +msgstr "" + +#: cms/djangoapps/contentstore/management/commands/git_export.py +msgid "" +"Take the specified course and attempt to export it to a git repository\n" +". Course directory must already be a git repository. Usage: git_export " +msgstr "" + +#: cms/djangoapps/contentstore/views/assets.py +msgid "Upload completed" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Special characters not allowed in organization, course number, and course " +"run." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Unable to create course '{name}'.\n" +"\n" +"{err}" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization, course number," +" and course run. Please change either organization or course number to be " +"unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Please change either the organization or course number so that it is unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization and course " +"number. Please change at least one field to be unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/export_git.py +msgid "Course successfully exported to git repository" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "We only support uploading a .tar.gz file." +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "File upload corrupted. Please try again" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "Could not find the course.xml file in the package." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of {0}" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of '{0}'" +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Incoming video data is empty." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Can't find item by locator." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Transcripts are supported only for \"video\" modules." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Insufficient permissions" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Could not find user by email address '{email}'." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "User {email} has registered but has not yet activated his/her account." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "`role` is required" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Only instructors may create other instructors" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "You may not remove the last instructor from a course" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "unrequested" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "pending" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "granted" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "denied" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Studio user" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "The date when state was last updated" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Current course creator state" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "" +"Optional notes about this user (for example, why course creation access was " +"denied)" +msgstr "" + +#: cms/templates/404.html cms/templates/error.html +#: lms/templates/static_templates/404.html +msgid "Page Not Found" +msgstr "" + +#: cms/templates/404.html lms/templates/static_templates/404.html +msgid "Page not found" +msgstr "" + +#: cms/templates/asset_index.html lms/templates/courseware/courseware.html +#: lms/templates/verify_student/_modal_editname.html +msgid "close" +msgstr "" + +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." +msgstr "" + +#. Translators: this is a verb describing the action of viewing more details +#: cms/templates/container_xblock_component.html +#: lms/templates/wiki/includes/article_menu.html +msgid "View" +msgstr "" + +#: cms/templates/html_error.html lms/templates/module-error.html +msgid "Error:" +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +#: lms/templates/courseware/course_about.html +msgid "Course Number" +msgstr "" + +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Organization:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Number:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Pending" +msgstr "" + +#: cms/templates/login.html lms/templates/login.html +#: lms/templates/university_profile/edge.html +msgid "Forgot password?" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/login.html lms/templates/provider_login.html +#: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Password" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + +#: cms/templates/manage_users.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Admin" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + +#: cms/templates/register.html cms/templates/widgets/header.html +#: lms/templates/index.html +msgid "Sign Up" +msgstr "" + +#: cms/templates/register.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "Public Username" +msgstr "" + +#: cms/templates/register.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "Preferred Language" +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Thanks for activating your account." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "This account has already been activated." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Visit your {link_start}dashboard{link_end} to see your courses." +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html +#: lms/templates/static_templates/tos.html +msgid "Terms of Service" +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/footer.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/privacy.html +msgid "Privacy Policy" +msgstr "" + +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py +msgid "Help" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Register for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sorry, there was an error when trying to register you" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your track:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Certificate of Achievement (ID Verified)" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your contribution for this course (min. $" +msgstr "" + +#: common/templates/course_modes/choose.html +#: lms/templates/verify_student/photo_verification.html +msgid "):" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay? What if I don't meet all the requirements?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"As a not-for-profit, edX uses your contribution to support our mission to " +"provide quality education to everyone around the world, and to improve " +"learning through research. While we have established a minimum fee, we ask " +"that you contribute as much as you can." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"I'd like to pay more than the minimum. Is my contribution tax deductible?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please check with your tax advisor to determine whether your contribution is" +" tax deductible." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What if I can't afford it or don't have the necessary equipment?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"If you can't afford the minimum fee or don't meet the requirements, you can " +"audit the course or elect to pursue an honor code certificate at no cost. If" +" you would like to pursue the honor code certificate, please check the honor" +" code certificate box, tell us why you can't pursue the verified certificate" +" below, and then click the 'Select Certificate' button to complete your " +"registration." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Honor Code Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Explain your situation: " +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please write a few sentences about why you'd like to opt out of the paid " +"verified certificate to pursue the honor code certificate:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Verified Registration Requirements" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To upgrade your registration and work towards a Verified Certificate of " +"Achievement, you will need a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To register for a Verified Certificate of Achievement option, you will need " +"a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What is an ID Verified Certificate?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"An ID Verified Certificate requires proof of your identity through your " +"photo and ID and is checked throughout the course to verify that it is you " +"who earned the passing grade." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "or" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Audit This Course" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up to audit this course for free and track your own progress." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Audit" +msgstr "" + +#: lms/templates/admin_dashboard.html +msgid "{platform_name}-wide Summary" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/open_ended_problems/combined_notifications.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Instructions" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "Collapse Instructions" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Guided Discussion" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Hide Annotations" +msgstr "" + +#: lms/templates/contact.html lms/templates/static_templates/about.html +#: lms/templates/static_templates/about.html +msgid "Vision" +msgstr "" + +#: lms/templates/contact.html +msgid "Faq" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +msgid "Press" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/contact.html +msgid "Contact" +msgstr "" + +#: lms/templates/contact.html +msgid "Class Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"We are always seeking feedback to improve our courses. If you are an " +"enrolled student and have any questions, feedback, suggestions, or any other" +" issues specific to a particular class, please post on the discussion forums" +" of that class." +msgstr "" + +#: lms/templates/contact.html +msgid "General Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." +msgstr "" + +#: lms/templates/contact.html +msgid "Technical Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have suggestions/feedback about the overall {platform_name} platform," +" or are facing general technical issues with the platform (e.g., issues with" +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Media" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"Please visit our {link_start}media/press page{link_end} for more " +"information. For any media or press inquiries, please email {email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Universities" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you are a university wishing to collaborate with or if you have questions" +" about {platform_name}, please email {email}." +msgstr "" + +#: lms/templates/course.html +msgid "New" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Dashboard" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/courseware/course_about.html +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "An error occurred. Please try again later." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please verify your new email" +msgstr "" + +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "edit" +msgstr "" + +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Reset Password" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Current Courses" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't registered for any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Find courses now!" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't been enrolled in any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Course-loading errors" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Email Settings for {course_number}" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Receive course emails" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Save Settings" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Password Reset Email Sent" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"An email has been sent to {email}. Follow the link in the email to change " +"your password." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Change Email" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please enter your new email address:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please confirm your password:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"We will send a confirmation to both {email} and your new email as part of " +"the process." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change your name" +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"To uphold the credibility of your {platform} {cert_name_short}, all name " +"changes will be logged and recorded." +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"Enter your desired full name, as it will appear on your {platform} " +"{cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/verify_student/_modal_editname.html +msgid "Reason for name change:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change My Name" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +" {course_number}? " +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Unregister" +msgstr "" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +msgid "E-mail change failed" +msgstr "" + +#: lms/templates/email_change_failed.html +msgid "We were unable to send a confirmation email to {email}" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +#: lms/templates/invalid_email_key.html +msgid "Go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "E-mail change successful!" +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "You should see your new email in your {link_start}dashboard{link_end}." +msgstr "" + +#: lms/templates/email_exists.html +msgid "An account with the new e-mail address already exists." +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Student Enrollment Form" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Course: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Add new students" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Existing students:" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "New students added: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Students rejected: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Debug: " +msgstr "" + +#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +msgid "External Authentication failed" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Due:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Status:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have successfully gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have not yet gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Completed puzzles" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Level" +msgstr "" + +#: lms/templates/folditbasic.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Submitted" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Puzzle Leaderboard" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "User" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Score" +msgstr "" + +#: lms/templates/footer.html +msgid "About" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/jobs.html +msgid "Jobs" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/faq.html +#: lms/templates/static_templates/faq.html +msgid "FAQ" +msgstr "" + +#: lms/templates/footer.html +msgid "{platform_name} Logo" +msgstr "" + +#: lms/templates/footer.html +msgid "" +"{platform_name} is a non-profit created by founding partners {Harvard} and " +"{MIT} whose mission is to bring the best of higher education to students of " +"all ages anywhere in the world, wherever there is Internet access. " +"{platform_name}'s free online MOOCs are interactive and subjects include " +"computer science, public health, and artificial intelligence." +msgstr "" + +#: lms/templates/footer.html +msgid "© 2014 {platform_name}, some rights reserved." +msgstr "" + +#: lms/templates/footer.html +msgid "Terms of Service and Honor Code" +msgstr "" + +#: lms/templates/forgot_password_modal.html +#: lms/templates/forgot_password_modal.html +msgid "Password Reset" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "" +"Please enter your e-mail address below, and we will e-mail instructions for " +"setting a new password." +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Your E-mail Address" +msgstr "" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +msgid "This is the e-mail address you used to register with {platform}" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Reset My Password" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Email is incorrect." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +msgid "{platform_name} Help" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"For questions on course lectures, homework, tools, or materials for " +"this course, post in the {link_start}course discussion " +"forum{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have general questions about {platform_name}? You can find " +"lots of helpful information in the {platform_name} " +"{link_start}FAQ{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have a question about something specific? You can contact " +"the {platform_name} general support team directly:" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Please note: The {platform_name} support team is English speaking. While we " +"will do our best to address your inquiry in any language, our responses will" +" be in English." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/login.html +#: lms/templates/provider_login.html lms/templates/provider_login.html +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "E-mail" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Briefly describe your issue" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Tell us the details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +#: lms/templates/instructor/staff_grading.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Submit" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Thank You!" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Thank you for your inquiry or feedback. We typically respond to a request " +"within one business day (Monday to Friday, {open_time} UTC to {close_time} " +"UTC.) In the meantime, please review our {link_start}detailed FAQs{link_end}" +" where most questions have already been answered." +msgstr "" + +#: lms/templates/help_modal.html +msgid "problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a Problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of the problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Details of the problem you are encountering" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc." +msgstr "" + +#: lms/templates/help_modal.html +msgid "suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a Suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of your suggestion" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/module-error.html +msgid "Details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a Question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief summary of your question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "An error has occurred." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please {link_start}send us e-mail{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please try again later." +msgstr "" + +#: lms/templates/index.html +msgid "Free courses from {university_name}" +msgstr "" + +#: lms/templates/index.html +msgid "The Future of Online Education" +msgstr "" + +#: lms/templates/index.html +msgid "For anyone, anywhere, anytime" +msgstr "" + +#: lms/templates/index.html +msgid "Stay up to date with all {platform_name} has to offer!" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Invalid email change key" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "This e-mail key is not valid. Please check:" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "" +"Was this key already used? Check whether the e-mail change has already " +"happened." +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Did your e-mail client break the URL into two lines?" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "The keys are valid for a limited amount of time. Has the key expired?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Helpful Information" +msgstr "" + +#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +msgid "Login via OpenID" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "" +"You can now start learning with {platform_name} by logging in with your OpenID account." +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Not Enrolled?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Sign up for {platform_name} today!" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Looking for help in logging in or with your {platform_name} account?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "View our help section for answers to commonly asked questions." +msgstr "" + +#: lms/templates/login.html +msgid "Log into your {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Log into My {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Access My Courses" +msgstr "" + +#: lms/templates/login.html lms/templates/register.html +msgid "Processing your account information…" +msgstr "" + +#: lms/templates/login.html +msgid "Please log in" +msgstr "" + +#: lms/templates/login.html +msgid "to access your account and courses" +msgstr "" + +#: lms/templates/login.html +msgid "We're Sorry, {platform_name} accounts are unavailable currently" +msgstr "" + +#: lms/templates/login.html +msgid "The following errors occurred while logging you in:" +msgstr "" + +#: lms/templates/login.html +msgid "Your email or password is incorrect" +msgstr "" + +#: lms/templates/login.html +msgid "" +"Please provide the following information to log into your {platform_name} " +"account. Required fields are noted by bold text " +"and an asterisk (*)." +msgstr "" + +#: lms/templates/login.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +msgid "example: username@domain.com" +msgstr "" + +#: lms/templates/login.html +msgid "Account Preferences" +msgstr "" + +#: lms/templates/login.html +msgid "Remember me" +msgstr "" + +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS +#: lms/templates/lti.html +msgid "External resource" +msgstr "" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + +#: lms/templates/lti.html +msgid "View resource in a new window" +msgstr "" + +#: lms/templates/lti.html +msgid "" +"Please provide launch_url. Click \"Edit\", and fill in the required fields." +msgstr "" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable or Reenable student accounts" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Username:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Reenable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Students whose accounts have been disabled" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "(reload your page to refresh)" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "working..." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"This page features MathJax technology to render mathematical formulae. To " +"make math accessibile, we suggest using the MathPlayer plugin. Please visit " +"the {link_start}MathPlayer Download Page{link_end} to download the plugin " +"for your browser." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"Your browser does not support the MathPlayer plugin. To use MathPlayer, " +"please use Internet Explorer 6 through 9." +msgstr "" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" +msgstr "" + +#: lms/templates/module-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/module-error.html +msgid "Raw data:" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Accepted" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Error" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Rejected" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Pending name changes" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/modal/accessible_confirm.html +msgid "Confirm" +msgstr "" + +#: lms/templates/name_changes.html +msgid "[Reject]" +msgstr "" + +#: lms/templates/navigation.html +msgid "Global Navigation" +msgstr "" + +#: lms/templates/navigation.html +msgid "Find Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Dashboard for:" +msgstr "" + +#: lms/templates/navigation.html +msgid "More options dropdown" +msgstr "" + +#: lms/templates/navigation.html +msgid "Log Out" +msgstr "" + +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + +#: lms/templates/navigation.html +msgid "How it Works" +msgstr "" + +#: lms/templates/navigation.html lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/courseware/courses.html +msgid "Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Schools" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Register Now" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Log in" +msgstr "" + +#: lms/templates/navigation.html +msgid "" +"Warning: Your browser is not fully supported. We strongly " +"recommend using {chrome_link_start}Chrome{chrome_link_end} or " +"{ff_link_start}Firefox{ff_link_end}." +msgstr "" + +#: lms/templates/notes.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "You do not have any notes." +msgstr "" + +#: lms/templates/problem.html +msgid "Reset" +msgstr "" + +#: lms/templates/problem.html +msgid "Show Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "Reveal Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "You have used {num_used} of {num_total} submissions" +msgstr "" + +#: lms/templates/provider_login.html +#: lms/templates/university_profile/edge.html +msgid "Log In" +msgstr "" + +#: lms/templates/provider_login.html +msgid "" +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." +msgstr "" + +#: lms/templates/provider_login.html +msgid "Return To %s" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Preferences for {platform_name}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update my {platform_name} Account" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Processing your account information …" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Welcome {username}! Please set your preferences below" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"We're sorry, {platform_name} enrollment is not available in your region" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "The following errors occurred while processing your registration:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"Required fields are noted by bold text and an " +"asterisk (*)." +msgstr "" + +#: lms/templates/register-shib.html lms/templates/signup_modal.html +msgid "Enter a public username:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "example: JaneDoe" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "Will be shown in any discussions or forums you participate in" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Account Acknowledgements" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Terms of Service{link_end}" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Honor Code{link_end}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update My Account" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Registration Help" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Already registered?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Click here to log in." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Registering with {platform_name} gives you access to all of our current and " +"future free courses. Not ready to take a course just yet? Registering puts " +"you on our mailing list - we will update you as courses are added." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Next Steps" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"You will receive an activation email. You must click on the activation link" +" to complete the process. Don't see the email? Check your spam folder and " +"mark emails from class.stanford.edu as 'not spam', since you'll want to be " +"able to receive email from your courses." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"As part of joining {platform_name}, you will receive an activation email. " +"You must click on the activation link to complete the process. Don't see " +"the email? Check your spam folder and mark {platform_name} emails as 'not " +"spam'. At {platform_name}, we communicate mostly through email." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Need help in registering with {platform_name}?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "View our FAQs for answers to commonly asked questions." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Once registered, most questions can be answered in the course specific " +"discussion forums or through the FAQs." +msgstr "" + +#: lms/templates/register.html +msgid "Register for {platform_name}" +msgstr "" + +#: lms/templates/register.html +msgid "Create My {platform_name} Account" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome!" +msgstr "" + +#: lms/templates/register.html +msgid "Register below to create your {platform_name} account" +msgstr "" + +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + +#: lms/templates/register.html +msgid "Please complete the following fields to register for an account. " +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "cannot be changed later" +msgstr "" + +#: lms/templates/register.html lms/templates/verify_student/face_upload.html +msgid "example: Jane Doe" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Needed for any certificates you may earn" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome {username}" +msgstr "" + +#: lms/templates/register.html +msgid "Enter a Public Display Name:" +msgstr "" + +#: lms/templates/register.html +msgid "Public Display Name" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Extra Personal Information" +msgstr "" + +#: lms/templates/register.html +msgid "City" +msgstr "" + +#: lms/templates/register.html +msgid "example: New York" +msgstr "" + +#: lms/templates/register.html +msgid "Country" +msgstr "" + +#: lms/templates/register.html +msgid "Highest Level of Education Completed" +msgstr "" + +#: lms/templates/register.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Year of Birth" +msgstr "" + +#: lms/templates/register.html +msgid "Please share with us your reasons for registering with {platform_name}" +msgstr "" + +#: lms/templates/register.html lms/templates/university_profile/edge.html +msgid "Register" +msgstr "" + +#: lms/templates/register.html lms/templates/signup_modal.html +msgid "Create My Account" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "Re-subscribe Successful!" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "" +"You have re-enabled forum notification emails from {platform_name}. Click " +"{dashboard_link_start}here{link_end} to return to your dashboard. " +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Previous" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +msgid "Section Navigation" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Next" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Sign Up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname@domain.com" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname (shown on forums)" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. Your Name (for certificates)" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Welcome {name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Ed. Completed" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Year of birth" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Mailing address" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Goals in signing up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Already have an account?" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Login." +msgstr "" + +#. Translators: The 'Group' here refers to the group of users that has been +#. sorted into group_id +#: lms/templates/split_test_staff_view.html +msgid "Group {group_id}" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug Info" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission history" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "{platform_name} Content Quality Assessment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Optional tag (eg \"done\" or \"broken\"):" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Add comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug" +msgstr "" + +#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +msgid "Module Fields" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "XML attributes" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission History Viewer" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "User:" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "View History" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "{course_number} Textbook" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "Textbook Navigation" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Previous page" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Next page" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Sysadmin Dashboard" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Users" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Staffing and Enrollment" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Logs" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "User Management" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Email or username" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Create user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download list of all users (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Check and repair external authentication map" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "" +"Go to each individual course's Instructor dashboard to manage course " +"enrollment." +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Manage course staff and instructors" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download staff and instructor list (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Administer Courses" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Location" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware and branch is a specific version within that repository +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Branch (optional)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Load new course from github" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Course ID or dir" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete course from site" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Django PID" +msgstr "" + +#. Translators: A version number appears after this string +#: lms/templates/sysadmin_dashboard.html +msgid "Platform Version" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Date" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Course ID" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Action" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Recent git load activity for" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "git action" +msgstr "" + +#: lms/templates/textannotation.html +msgid "Source:" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "Tracking Log" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "datetime" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "ipaddr" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "source" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "type" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "Unsubscribe Successful!" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "" +"You will no longer receive forum notification emails from {platform_name}. " +"Click {dashboard_link_start}here{link_end} to return to your dashboard. If " +"you did not mean to do this, click {undo_link_start}here{link_end} to re-" +"subscribe." +msgstr "" + +#: lms/templates/using.html +msgid "Using the system" +msgstr "" + +#: lms/templates/using.html +msgid "" +"During video playback, use the subtitles and the scroll bar to navigate. " +"Clicking the subtitles is a fast way to skip forwards and backwards by small" +" amounts." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you are on a low-resolution display, the left navigation bar can be " +"hidden by clicking on the set of three left arrows next to it." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you need bigger or smaller fonts, use your browsers settings to scale " +"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" +" ctrl-minus at the same time." +msgstr "" + +#: lms/templates/video.html +msgid "Skip to a navigable version of this video's transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Loading video player" +msgstr "" + +#: lms/templates/video.html +msgid "Play video" +msgstr "" + +#: lms/templates/video.html +msgid "Video position" +msgstr "" + +#: lms/templates/video.html +msgid "Play" +msgstr "" + +#: lms/templates/video.html +msgid "Speeds" +msgstr "" + +#: lms/templates/video.html +msgid "Speed" +msgstr "" + +#: lms/templates/video.html +msgid "Volume" +msgstr "" + +#: lms/templates/video.html +msgid "Fill browser" +msgstr "" + +#: lms/templates/video.html +msgid "HD off" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Turn off captions" +msgstr "" + +#: lms/templates/video.html +msgid "Skip to end of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "" +"Activating an item in this group will spool the video to the corresponding " +"time point. To skip transcript, go to previous item." +msgstr "" + +#: lms/templates/video.html +msgid "Go back to start of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Download video" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Download transcript" +msgstr "" + +#: lms/templates/video.html +msgid "Download Handout" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Your words:" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Total number of words:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Open Response" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Assessments:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Hide Question" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "New Submission" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Next Step" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "" +"Staff Warning: Please note that if you submit a duplicate of text that has " +"already been submitted for grading, it will not show up in the staff grading" +" view. It will be given the same grade that the original received " +"automatically, and will be returned within 30 minutes if the original is " +"already graded, or when the original is graded if not." +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_legend.html +msgid "Legend" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Submitted Rubric" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Toggle Full Rubric" +msgstr "" + +#. Translators: an example of what this string will look +#. like is: "Scored rubric from grader 1", where +#. "Scored rubric" replaces {result_of_task} and +#. "1" replaces {number}. +#. This string appears when a user is viewing one of +#. their graded rubrics for an openended response problem. +#. the number distinguishes between the different +#. graded rubrics the user might have received +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "{result_of_task} from grader {number}" +msgstr "" + +#. Translators: "See full feedback" is the text of +#. a link that allows a user to see more detailed +#. feedback from a self, peer, or instructor +#. graded openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +msgid "See full feedback" +msgstr "" + +#. Translators: this text forms a link that, when +#. clicked, allows a user to respond to the feedback +#. the user received on his or her openended problem +#. Translators: when "Respond to Feedback" is clicked, a survey +#. appears on which a user can respond to the feedback the user +#. received on an openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Respond to Feedback" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "How accurate do you find this feedback?" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "No Opinion" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Additional comments:" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Submit Feedback" +msgstr "" + +#. Translators: "Response" labels an area that contains the user's +#. Response to an openended problem. It is a noun. +#. Translators: "Response" labels a text area into which a user enters +#. his or her response to a prompt from an openended problem. +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Response" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Unanswered" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Skip Post-Assessment" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_combined_rubric.html +msgid "{num} point: {explanatory_text}" +msgid_plural "{num} points: {explanatory_text}" +msgstr[0] "" + +#: lms/templates/combinedopenended/openended/open_ended_error.html +msgid "There was an error with your submission. Please contact course staff." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "Rubric" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "" +"Select the criteria you feel best represents this submission in each " +"category." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "{num} point: {text}" +msgid_plural "{num} points: {text}" +msgstr[0] "" + +#: lms/templates/combinedopenended/selfassessment/self_assessment_hint.html +msgid "Please enter a hint below:" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohort groups" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Show cohorts" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohorts in the course" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add users by username or email. One per line or comma-separated." +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort members" +msgstr "" + +#: lms/templates/courseware/accordion.html +msgid "{chapter}, current chapter" +msgstr "" + +#: lms/templates/courseware/accordion.html +#: lms/templates/courseware/progress.html +msgid "due {date}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"The currently logged-in user account does not have permission to enroll in " +"this course. You may need to {start_logout_tag}log out{end_tag} then try the" +" register button again. Please visit the {start_help_tag}help page{end_tag} " +"for a possible solution." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "About {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "You are registered for this course" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View Courseware" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "This course is in your cart." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"Add {course.display_number_with_default} to Cart ({currency_symbol}{cost})" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Register for {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Overview" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Share with friends and family!" +msgstr "" + +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes Start" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes End" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Estimated Effort" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Prerequisites" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Additional Resources" +msgstr "" + +#. Translators: 'needs attention' is an alternative string for the +#. notification image that indicates the tab "needs attention". +#: lms/templates/courseware/course_navigation.html +msgid "needs attention" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/course_navigation.html +msgid "Staff view" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +msgid "Student view" +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from leading universities." +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from {university_name}." +msgstr "" + +#: lms/templates/courseware/courseware-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "{course_number} Courseware" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Return to Exam" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Course Navigation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Open Calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Input Field" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "" +"Use the arrow keys to navigate the tips or use the tab key to return to the " +"calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Hints" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Integers" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Decimals" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Scientific notation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Appending SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Supported SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Operators" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "parallel resistors function" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Functions" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Constants" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Euler's number" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "ratio of a circle's circumference to it's diameter" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Boltzmann constant" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "speed of light" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "freezing point of water in degrees Kelvin" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "fundamental charge" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculate" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Output Field" +msgstr "" + +#: lms/templates/courseware/error-message.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {link_to_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/grade_summary.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade summary" +msgstr "" + +#: lms/templates/courseware/grade_summary.html +msgid "Not implemented yet" +msgstr "" + +#: lms/templates/courseware/gradebook.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "Search students" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "{course_number} Course Info" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + +#: lms/templates/courseware/info.html lms/templates/courseware/info.html +msgid "Course Updates & News" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Handout Navigation" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Course Handouts" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Instructor Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Try New Beta Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Psychometrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Forum Admin" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "DataDump" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Manage Groups" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Metrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade Downloads" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Note: some of these buttons are known to time out for larger courses. We " +"have temporarily disabled those features for courses with more than " +"{max_enrollment} students. We are urgently working on fixing this issue. " +"Thank you for your patience as we continue working to improve the platform!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Export grades to remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"The assignments defined for this course should match the ones stored in the " +"gradebook, for this to work properly!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Assignment name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Course-specific grade adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Specify a particular problem in the course here by its url:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is " +"i4x://university/course/problem/problemname, then just provide the " +"problemname. If the location is " +"i4x://university/course/notaproblem/someothername, then provide " +"notaproblem/someothername.)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Then select an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"These actions run in the background, and status for active tasks will appear" +" in a table below. To see status for all tasks submitted for this problem, " +"click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student-specific grade inspection and adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Specify the {platform_name} email address or username of a student here:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Click this, and a link to student's progress page will appear below:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may also delete the entire state of a student for the specified module:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" a table below. To see status for all tasks submitted for this problem and " +"student, click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Select a problem and an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"User requires forum administrator privileges to perform administration " +"tasks. See instructor." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Explanation of Roles:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Moderators: can edit or delete any post, remove misuse flags, close " +"and re-open threads, endorse responses, and see posts from all cohorts (if " +"the course is cohorted). Moderators' posts are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Admins: have moderator privileges, as well as the ability to edit the " +"list of forum moderators (e.g. to appoint a new moderator). Admins' posts " +"are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Community TAs: have forum moderator privileges, and their posts are labelled" +" 'Community TA'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment Data" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Pull enrollment from remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Section:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enroll or un-enroll one or many students: enter emails, separated by new " +"lines or commas;" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Notify students by email" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Auto-enroll students when they activate" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Problem urlname:" +msgstr "" + +#. Translators: days_early_for_beta should not be translated +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enter usernames or emails for students who should be beta-testers, one per " +"line, or separated by commas. They will get to see course materials early, " +"as configured via the days_early_for_beta option in the course " +"policy." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send to:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Myself" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Staff and instructors" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "All (students, staff and instructors)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Subject: " +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Max 128 characters)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Please try not to email students more than once per week. Important things " +"to consider before sending:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you read over the email to make sure it says everything you want to " +"say?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you sent the email to yourself first to make sure you're happy with how" +" it's displayed, and that embedded links and images work properly?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "CAUTION!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Once the 'Send Email' button is clicked, your email will be queued for " +"sending." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "A queued email CANNOT be cancelled." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "No Analytics are available at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Students enrolled (historical count, includes those who have since " +"unenrolled):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students active in the last week:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student activity day by day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Score distribution for problems" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Max" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Points Earned (Num Students)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There is no data available to display at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"Loading the latest graphs for you; depending on your class size, this may " +"take a few minutes." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Count of Students that Opened a Subsection" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution per Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There are no problems in this section." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students answering correctly" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Number of students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Student distribution per country, all courses, Sep-12 to Oct-17, 1 server " +"(shown here as an example):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Pending Instructor Tasks" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Type" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task inputs" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Id" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Requester" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task State" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Duration (sec)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Progress" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "unknown" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Course errors" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "About {course_id}" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "Coming Soon" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "About {course_number}" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Access Courseware" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "You Are Registered" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Register for" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Registration Is Closed" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "News - MITx 6.002x" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "Updates to Discussion Posts You Follow" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{course_number} Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress for Student '{username}' ({email})" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{earned:.3n} of {total:.3n} possible points" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Problem Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Practice Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "No problem scores in this section" +msgstr "" + +#: lms/templates/courseware/syllabus.html +msgid "{course.display_number_with_default} Course Info" +msgstr "" + +#: lms/templates/courseware/welcome-back.html +msgid "" +"You were most recently in {section_link}. If you're done with that, choose " +"another section on the left." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Final course details are being wrapped up at this time. Your final standing " +"will be available shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final grade:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required for a {cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your verified {cert_name_long} is being held pending confirmation that the " +"issuance of your {cert_name_short} is in compliance with strict U.S. " +"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " +"mistakenly identified you as being connected with one of those countries, " +"please let us know by contacting {email}. If you would like a refund on your" +" {cert_name_long}, please contact our billing address {billing_email}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your {cert_name_long} is being held pending confirmation that the issuance " +"of your {cert_name_short} is in compliance with strict U.S. embargoes on " +"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " +"identified you as being connected with one of those countries, please let us" +" know by contacting {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your {cert_name_short} is Generating" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open/download a PDF document" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"This link will open/download a PDF document of your verified " +"{cert_name_long}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your ID Verified {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Complete our course feedback survey" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Cover Image" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Enrolled as: " +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +msgid "ID Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Completed - {end_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Started - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course has not yet started" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Starts - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Document your accomplishment!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Challenge Yourself!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Take this course as an ID-verified student." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can still sign up for an ID verified {cert_name_long} for this course. " +"If you plan to complete the whole course, it is a great way to recognize " +"your achievement. {link_start}Learn more about the verified " +"{cert_name_long}{link_end}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Upgrade to Verified Track" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Archived Course" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Course" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Are you sure you want to unregister from" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Are you sure you want to unregister from the verified {cert_name_long} track" +" of" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Email Settings" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "You need to re-verify to continue" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in the following courses, you need to " +"re-verify your identity:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "{course_name}: Re-verify by {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Notification Actions" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course_name}, you need to re-verify" +" your identity by {date}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Your re-verification failed" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"Your re-verification for {course_name} failed and you are no longer eligible" +" for a Verified Certificate. If you think this is in error, please contact " +"us at {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Dismiss" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verification now open for:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verify now:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Pending:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Denied:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Approved:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "ID-Verification Status" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Reviewed and Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Your verification status is good for one year after submission." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification photos have been submitted and will be reviewed shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Re-verify Yourself" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"If you fail to pass a verification attempt before your course ends, you will" +" not receive a verified certificate." +msgstr "" + +#: lms/templates/debug/run_python_form.html +msgid "Results:" +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "" +"Sorry! We can't find anything matching your search. Please try another " +"search." +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "There are no posts here yet. Be the first one to post!" +msgstr "" + +#: lms/templates/discussion/_discussion_course_navigation.html +#: lms/templates/discussion/_discussion_module.html +msgid "New Post" +msgstr "" + +#: lms/templates/discussion/_discussion_module.html +msgid "Show Discussion" +msgstr "" + +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Filter Topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "filter topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Show All Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Show Flagged Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Posts I'm Following" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "follow this post" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously to classmates" +msgstr "" + +#. Translators: This labels the selector for which group of students can view +#. a +#. post +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Make visible to:" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +msgid "My Cohort" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "new post title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: wiki/forms.py wiki/forms.py wiki/forms.py +msgid "Title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Enter your question or comment…" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Add post" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Create new post about:" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter List" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter discussion areas" +msgstr "" + +#: lms/templates/discussion/_recent_active_posts.html +msgid "Following" +msgstr "" + +#: lms/templates/discussion/_search_bar.html +msgid "Search posts" +msgstr "" + +#: lms/templates/discussion/_similar_posts.html +msgid "Hide" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Home" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Topics" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion topics; current selection is: " +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Search all discussions" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Sort by:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "date" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "votes" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "comments" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Show:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View All" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View as {name}" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Add A Response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Post a response:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "anonymous" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "• This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "follow" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow this post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Pin Thread" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Pinned" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "(this post is about %(courseware_title_linked)s)" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Edit post title" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment..." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "endorse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Delete Comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "-posted %(time_ago)s by" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"%(comments_count)s %(span_sr_open)scomments (%(unread_comments_count)s " +"unread comments)%(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(comments_count)s %(span_sr_open)scomments %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(votes_up_count)s%(span_sr_open)s votes %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "DISCUSSION HOME:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "HOW TO USE EDX DISCUSSIONS" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Find discussions" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Focus in on specific topics" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Search for specific posts " +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Sort by date, vote, or comments" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Engage with posts" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Upvote posts and good responses" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Forum Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow posts for updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Receive updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Toggle Notifications Setting" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"Check this box to receive an email digest once a day notifying you about " +"new, unread activity from posts you are following." +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid ", " +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s discussion started" +msgid_plural "%s discussions started" +msgstr[0] "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "" + +#: lms/templates/discussion/index.html +#: lms/templates/discussion/user_profile.html +msgid "Discussion - {course_number}" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "We're sorry" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "" +"The forums are currently undergoing maintenance. We'll have them back up " +"shortly!" +msgstr "" + +#: lms/templates/discussion/user_profile.html +msgid "User Profile" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Collapse discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "This thread has been pinned by course staff." +msgstr "" + +#: lms/templates/discussion/mustache/_pagination.mustache +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "…" +msgstr "" + +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + +#: lms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for {platform_name}! To activate your account, " +"please copy and paste this address into your web browser's address bar:" +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the about section of the {platform_name} Courses web site." +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the {platform_name} web site." +msgstr "" + +#: lms/templates/emails/activation_email_subject.txt +msgid "Your account for {platform_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Dear {full_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "" +"You have been invited to be a beta tester for {course_name} at {site_name} " +"by a member of the course staff." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {course_about_url} to join the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_allowedmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "This email was automatically sent from {site_name} to {email_address}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_subject.txt +msgid "You have been invited to a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us at" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us immediately. Contact information is listed at:" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "" + +#: lms/templates/emails/email_change.txt +msgid "" +"We received a request to change the e-mail associated with your " +"{platform_name} account from {old_email} to {new_email}. If this is correct," +" please confirm your new e-mail address by visiting:" +msgstr "" + +#: lms/templates/emails/email_change_subject.txt +msgid "Request to change {platform_name} account e-mail" +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "Dear student," +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"You have been invited to join {course_name} at {site_name} by a member of " +"the course staff." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "To access the course visit {course_url} and login." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To access the course visit {course_about_url} and register for the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To finish your registration, please visit {registration_url} and fill out " +"the registration form making sure to use {email_address} in the E-mail " +"field." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, you will see " +"{course_name} listed on your dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, visit " +"{course_about_url} to join the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedsubject.txt +msgid "You have been invited to register for {course_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "" +"You have been enrolled in {course_name} at {site_name} by a member of the " +"course staff. The course should now appear on your {site_name} dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "This email was automatically sent from {site_name} to {full_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledsubject.txt +msgid "You have been enrolled in {course_name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Hi {name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"Your payment was successful. You will see the charge below on your next " +"credit or debit card statement." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"The charge will show up on your statement under the company name " +"{merchant_name}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"If you have billing questions, please read the FAQ ({faq_url}) or contact " +"{billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "If you have billing questions, please contact {billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "-The {platform_name} Team" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Your order number is: {order_number}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "The items in your order are:" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Quantity - Description - Price" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/shoppingcart/receipt.html +msgid "#:" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the tech support at" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the course staff at ta@edx.org." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +msgid "" +"You have been removed as a beta tester for {course_name} at {site_name} by a" +" member of the course staff. The course will remain on your dashboard, but " +"you will no longer be part of the beta testing group." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Your other courses have not been affected." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_subject.txt +msgid "You have been removed from a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "Dear Student," +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "" +"You have been un-enrolled from course {course_name} by a member of the " +"course staff. Please disregard the invitation previously sent." +msgstr "" + +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "" +"You have been un-enrolled in {course_name} at {site_name} by a member of the" +" course staff. The course will no longer appear on your {site_name} " +"dashboard." +msgstr "" + +#: lms/templates/emails/unenroll_email_subject.txt +msgid "You have been un-enrolled from {course_name}" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "{course_number} Staff Grading" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"This is the list of problems that currently need to be graded in order to " +"train AI grading and create calibration essays for peer grading. Each " +"problem needs to be treated separately, and we have indicated the number of " +"student submissions that need to be graded. You can grade more than the " +"minimum required number of submissions--this will improve the accuracy of AI" +" grading, though with diminishing returns. You can see the current accuracy " +"of AI grading in the problem view." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Problem List" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"Please note that when you see a submission here, it has been temporarily " +"removed from the grading pool. The submission will return to the grading " +"pool after 30 minutes without any grade being submitted. Hitting the back " +"button will result in a 30 minute wait to be able to grade this submission " +"again." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Prompt" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "(Hide)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Student Response" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Written Feedback" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Feedback for student (optional)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Flag as inappropriate content for later review" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Skip" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Score Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"The chart below displays the score distribution for each standard problem in" +" your class, specified by the problem's url name." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"Scores are shown without weighting applied, so if your problem contains 2 " +"questions, it will display as having a total of 2 points." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Loading problem list..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Gender Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Enrollment Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Total number of enrollees (instructors, staff members, and students)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Basic Course Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Display Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course started?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Yes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course ended?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Grade Cutoffs:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "The status for any active tasks appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Warnings" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 +msgid "" +"For large courses, generating this report may take several hours. Please be " +"patient and do not click the button multiple times. Clicking the button " +"multiple times will significantly slow the grade generation process." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The report is generated in the background, meaning it is OK to navigate away" +" from this page while your report is generating." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Grade Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports Available for Download" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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. +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Note: To keep student data secure, you cannot save or email these " +"links for direct access. Copies of links expire within 5 minutes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Individual due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"In this section, you have the ability to grant extensions on specific units " +"to individual students. Please note that the latest date is always taken; " +"you cannot use this tool to make an assignment due earlier for a particular " +"student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Choose the graded unit:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the extension due date and time (in UTC; please specify MM/DD/YYYY " +"HH:MM)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Change due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Viewing granted extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Here you can see what extensions have been granted on particular units or " +"for a particular student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Choose a graded unit and click the button to obtain a list of all students " +"who have extensions for the given unit." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List all students with due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Specify a specific student to see all of that student's extensions." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List date extensions for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Resetting extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Resetting a problem's due date rescinds a due date extension for a student " +"on a particular unit. This will revert the due date for the student back to " +"the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reset due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Back to Standard Dashboard" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "section_display_name" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"You will not get notification for emails that bounce, so please double-check" +" spelling." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Email Addresses/Usernames" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Auto Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not yet registered for " +"{platform_name} will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is left unchecked, users who have not yet registered" +" for {platform_name} will not be enrolled, but will be allowed to enroll " +"once they make an account." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Notify users by email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users will receive an email " +"notification." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Unenroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Beta Tester Addition" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Note: Users must have an activated {platform_name} account before they can " +"be enrolled as a beta tester." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add beta testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Remove beta testers" +msgstr "" + +#. Translators: an "Administration List" is a list, such as Course Staff, that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Administration List Management" +msgstr "" + +#. Translators: an "Administrator Group" is a group, such as Course Staff, +#. that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Select an Administrator Group:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Getting available lists..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Staff cannot modify staff or beta tester lists. To modify these lists, " +"contact your instructor and ask them to add you as an instructor for staff " +"and beta lists, or a discussion admin for discussion management." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Course Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course staff can help you manage limited aspects of your course. Staff can " +"enroll and unenroll students, as well as modify their grades and see all " +"course data. Course staff are not automatically given access to Studio and " +"will not be able to edit your course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Instructors" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Instructors are the core administration of your course. Instructors can add " +"and remove course staff, as well as administer discussion access." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Instructor" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Beta Testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Beta testers can see course content before the rest of the students. They " +"can make sure that the content works, but have no additional privileges." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Beta Tester" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Admins" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion admins can edit or delete any post, clear misuse flags, close and" +" re-open threads, endorse responses, and see posts from all cohorts. They " +"CAN add/delete other moderators and their posts are marked as 'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Discussion Admin" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Moderators" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion moderators can edit or delete any post, clear misuse flags, close" +" and re-open threads, endorse responses, and see posts from all cohorts. " +"They CANNOT add/delete other moderators and their posts are marked as " +"'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Moderator" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Community TAs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Community TA's are members of the community whom you deem particularly " +"helpful on the discussion boards. They can edit or delete any post, clear " +"misuse flags, close and re-open threads, endorse responses, and see posts " +"from all cohorts. Their posts are marked 'Community TA'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Community TA" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Reload Graphs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Count of Students Opened a Subsection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send Email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Message:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Please try not to email students more than once per week. Before sending " +"your email, consider:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Email actions run in the background. The status for any active tasks - " +"including email tasks - appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"To see the status for all bulk email tasks ever submitted for this course, " +"click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade inspection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Email or Username" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Click this link to view the student's progress page:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Progress Page" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade adjustment" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem urlname" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is {location1}, then just provide the " +"{urlname1}. If the location is {location2}, then provide {urlname2}.)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Next, select an action to perform for the given user and problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset Student Attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Student Submission" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may also delete the entire state of a student for the specified problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Delete Student State for Problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" the 'Pending Instructor Tasks' table. To see status for all tasks submitted" +" for this problem and student, click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Then select an action" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset ALL students' attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore ALL students' problem submissions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"The above actions run in the background, and status for active tasks will " +"appear in a table on the Course Info tab. To see status for all tasks " +"submitted for this problem, click on this button" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Problem" +msgstr "" + +#: lms/templates/licenses/serial_numbers.html +msgid "None Available" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Change Preferred Language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Please choose your preferred language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Save Language Settings" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "" +"Don't see your preferred language? {link_start}Volunteer to become a " +"translator!{link_end}" +msgstr "" + +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/modal/accessible_confirm.html +msgid "modal open" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "{course_number} Combined Notifications" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Open Ended Console" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Here are items that could potentially need your attention." +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "No items require attention at the moment." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "{course_number} Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "" +"Here are a list of open ended problems for this course that have been " +"flagged by students as potentially inappropriate." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "No flagged problems exist." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Unflag" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Ban" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "{course_number} Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Here is a list of open ended problems for this course." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "You have not attempted any open ended problems yet." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Problem Name" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Grader Type" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"\n" +"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" +"{ul_tag}\n" +"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" +"{li_tag}The instructor needs to score the essays that are used to help you better understand the grading\n" +"criteria.{end_li_tag}\n" +"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"Here are a list of problems that need to be peer graded for this course." +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Graded" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Available" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Required" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "No due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "" +"The due date has passed, and peer grading for this problem is closed at this" +" time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "The due date has passed, and peer grading is closed at this time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to Grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Please include some written feedback as well." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"This submission has explicit, offensive, or (I suspect) plagiarized content." +" " +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "How did I do?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Continue" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Ready to grade!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You have finished learning to grade, which means that you are now ready to " +"start grading." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start Grading!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "You have not yet finished learning to grade this problem." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You will now be shown a series of instructor-scored essays, and will be " +"asked to score them yourself." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"Once you can score the essays similarly to an instructor, you will be ready " +"to grade your peers." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Are you sure that you want to flag this submission?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You are about to flag a submission. You should only flag a submission that " +"contains explicit, offensive, or (suspected) plagiarized content. If the " +"submission is not addressed to the question or is incorrect, you should give" +" it a score of zero and accompanying feedback instead of flagging it." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Remove Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Keep Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Go Back" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "Thanks For Registering!" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "" +"Your account is not active yet. An activation link has been sent to {email}," +" along with instructions for activating your account." +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Activation Complete!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Account already active!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "You can now {link_start}log in{link_end}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Activation Invalid" +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "" +"Something went wrong. Check to make sure the URL you went to was correct -- " +"e-mail programs will sometimes split it into two lines. If you still have " +"issues, e-mail us to let us know what happened at {email}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Or you can go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "Password reset successful" +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "" +"We've e-mailed you instructions for setting your password to the e-mail " +"address you submitted. You should be receiving it shortly." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Data" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "These reports are delimited by start and end dates." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"These reports are delimited alphabetically by university name. i.e., " +"generating a report with 'Start Letter' A and 'End Letter' C will generate " +"reports for all universities starting with A, B, and C." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Letter: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Letter: " +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "Payment Error" +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "There was an error processing your order!" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your Shopping Cart" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your selected items:" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Unit Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Total Amount" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "You have selected no items for purchase." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Register for [Course Name] | Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid " () Electronic Receipt" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Order #" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Date:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Items ordered:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Qty" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Note: items with strikethough like " +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid " have been refunded." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Billed To:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are now registered for: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Registered as: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Your Progress" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Current Step: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Intro" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take ID Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Review" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Make Payment" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Confirmation" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Congratulations! You are now verified on " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"You are now registered as a verified student! Your registration details are " +"below." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are registered for:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "A list of courses you have just registered for as a verified student" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Options" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Starts: {start_date}" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to Course" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to your Dashboard" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Verified Status" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"We have received your identification details to verify your identity. If " +"there is a problem with any of the items, we will contact you to resubmit. " +"You can now register for any of the verified certificate courses this " +"semester without having to re-verify." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"The professor will ask you to periodically submit a new photo to verify your" +" work during the course (usually at exam times)." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Payment Details" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"Please print this page for your records; it serves as your receipt. You will" +" also receive an email with the same information." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Order No." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Total" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "this" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Billed To" +msgstr "" + +#: lms/templates/static_templates/404.html +msgid "" +"The page that you were looking for was not found. Go back to the " +"{link_start}homepage{link_end} or let us know about any pages that may have " +"been moved at {email}." +msgstr "" + +#: lms/templates/static_templates/about.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/faq.html +#: lms/templates/static_templates/help.html +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/tos.html +msgid "" +"This page left intentionally blank. It is not used by edx.org but is left " +"here for possible use by installations of Open edX." +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "This Course Unavailable In Your Country" +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "" +"Our system indicates that you are trying to access an edX course from an IP " +"address associated with a country currently subjected to U.S. economic and " +"trade sanctions. Unfortunately, at this time edX must comply with export " +"controls, and we cannot allow you to access this particular course. Feel " +"free to browse our catalogue to find other courses you may be interested in " +"taking." +msgstr "" + +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/honor.html +msgid "Honor Code" +msgstr "" + +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/media-kit.html +msgid "Media Kit" +msgstr "" + +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/press.html +msgid "In the Press" +msgstr "" + +#: lms/templates/static_templates/server-down.html +msgid "Currently the {platform_name} servers are down" +msgstr "" + +#: lms/templates/static_templates/server-down.html +#: lms/templates/static_templates/server-overloaded.html +msgid "" +"Our staff is currently working to get the site back up as soon as possible. " +"Please email us at {tech_support_email} to report any problems or downtime." +msgstr "" + +#: lms/templates/static_templates/server-error.html +msgid "There has been a 500 error on the {platform_name} servers" +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}." +msgstr "" + +#: lms/templates/static_templates/server-overloaded.html +msgid "Currently the {platform_name} servers are overloaded" +msgstr "" + +#: lms/templates/university_profile/edge.html +#: lms/templates/university_profile/edge.html +msgid "edX edge" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Log in to your courses" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Register for classes" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Take free online courses from today's leading universities." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Edit Your Name" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "The following error occurred while editing your name:" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "" +"To uphold the credibility of {platform} certificates, all name changes will " +"be logged and recorded." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Change my name" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Why Do I Need to Re-Verify?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity. We will send the new photo to be matched up with the photo of the " +"original ID you submitted when you signed up for the course." +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Having Technical Trouble?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Have questions?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please read {a_start}our FAQs to view common questions about our " +"certificates{a_end}." +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are upgrading your registration for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are re-verifying for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are registering for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Upgrading to:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Re-verifying for:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Registering as: " +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Change your mind?" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "You can always continue to audit the course without verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You can always {a_start} audit the course for free {a_end} without " +"verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "Technical Requirements" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)." +msgstr "" + +#: lms/templates/verify_student/face_upload.html +msgid "Edit Your Full Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Re-Verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Webcam Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Flash Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have Flash installed. {a_start} Get Flash {a_end} to " +"continue your registration." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Error submitting your images" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Oops! Something went wrong. Please confirm your details and try again." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with your " +"original verification." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Don't see your picture? Make sure to allow your browser to use your camera " +"when it asks for permission." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Take photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Looks good" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Tips on taking a successful photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your face is well-lit" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be sure your entire face is inside the frame" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Can we match the photo you took with the one on your ID?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once in position, use the camera button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your picture" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Use the checkmark button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "once you are happy with the photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Common Questions" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need my photo?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"As part of the verification process, we need your photo to confirm that you " +"are you." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "What do you do with this picture?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "We only use it to verify your identity. It is not displayed anywhere." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches the ID " +"you originally submitted. We will also use this as the name on your " +"certificate." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Edit your name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Once you verify your photo looks good and your name is correct, you can " +"finish your re-verification and return to your course. Note: You " +"will not have another chance to re-verify." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Yes! You can confirm my identity with this information." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Submit photos & re-verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Verification Submission Confirmation" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Your Credentials Have Been Updated" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"We have received your re-verification details and submitted them for review." +" Your dashboard will show the notification status once the review is " +"complete." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"Please note: The professor may ask you to re-verify again at other key " +"points in the course." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "Complete your other re-verifications" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Return to where you left off" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Reverification Status" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You are in the ID Verified track" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following courses:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Re-verify by {date}" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following course:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You have no re-verifications at present." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "The status of your submitted re-verifications:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Failed" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Don't want to re-verify right now?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Why do I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity by submitting a new photo of your face. We will send the new photo " +"to be matched up with the photo of the original ID you submitted when you " +"signed up for the course. If you are taking multiple courses, you may need " +"to re-verify multiple times, once for every important point in each course " +"you are taking as a verified student." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What will I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because you are just confirming that you are still you, the only thing you " +"will need to do to re-verify is to submit a new photo of your face with " +"your webcam. The process is quick and you will be brought back to where " +"you left off so you can keep on learning." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"If you changed your name during the semester and it no longer matches the " +"original ID you submitted, you will need to re-edit your name to match as " +"well." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What if I have trouble with my re-verification?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because of the short time that re-verification is open, you will not" +" be able to correct a failed verification. If you think there was " +"an error in the review, please contact us at {email}" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Verification" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Please Resubmit Your Verification Information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"There was an error with your previous verification. In order proceed in the " +"verified certificate of achievement track of your current courses, please " +"complete the following steps." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with the " +"picture on your ID." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your photo looks good, you can move on to step 2." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Go to Step 2: Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show Us Your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your ID so we can match it with your " +"photo and the name on your account." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your ID is well-lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Acceptable IDs include drivers licenses, passports, or other goverment-" +"issued IDs that include your name and photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check that there isn't any glare" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Ensure that you can see your photo and read your name" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Try to keep your fingers at the edge to avoid covering important information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need a photo of my ID?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We need to match your ID with your photo and name to confirm that you are " +"you." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We encrypt it and send it to our secure authorization service for review. We" +" use the highest levels of security and do not save the photo or information" +" anywhere once the match has been completed." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your ID photo looks good, you can move on to step 3." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 3: Review Your Info" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Verify Your Submission" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure we can verify your identity with the photos and information below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Review the Photos You've Re-Taken" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Please review the photos and verify that they meet the requirements listed " +"below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo above needs to meet the following requirements:" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be well lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show your whole face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo on your ID must match the photo of your face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be readable (not too far away, no glare)" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The name on your ID must match the name on your account below" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Photos don't meet the requirements?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake Your Photos" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches your ID. " +"We will also use this as the name on your certificate." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"Once you verify your details match the requirements, you can move onto to " +"confirm your re-verification submisssion." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Yes! My details all match." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Upgrade Your Registration for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/verified.html +msgid "Register for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue registering, or select to {a_start} audit " +"the course for free {a_end} without verifying." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Error processing your order" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Oops! Something went wrong. Please confirm your details again and click the " +"button to move on to payment. If you are still having trouble, please try " +"again later." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "What if my camera isn't working?" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 2: Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Review the Photos You've Taken" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Contribution Level" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Please confirm your contribution for this course (min. $" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Once you verify your details match the requirements, you can move on to step" +" 4, payment on our secure server." +msgstr "" + +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course}, you need to re-verify your" +" identity by {date}. Go to URL." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +msgid "" +"We've captured your re-submitted information and will review it to verify " +"your identity shortly. You should receive an update to your veriication " +"status within 1-2 days. In the meantime, you still have access to all of " +"your course content." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Return to Your Dashboard" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Re-Verification Failed" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "" +"Your re-verification was submitted after the re-verification deadline, and " +"you can no longer be re-verified." +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Please contact support if you believe this message to be in error." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Upgrade Your Registration for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Register for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "You need to activate your edX account before proceeding" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please check your email for further instructions on activating your new " +"account." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Upgrade" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to upgrade to being an ID verified " +"student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Register" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to register as an ID verified student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Activate Your Account" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Check your email" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"you need an active edX account before registering - check your email for " +"instructions" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Identification" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A photo identification document" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"a drivers license, passport, or other goverment or school-issued ID with " +"your name and picture on it" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Webcam" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A webcam and a modern browser" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " +"{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please make sure your browser is updated to the most recent version possible" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Credit or Debit Card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A major credit or debit card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Visa, Master Card, American Express, Discover, Diners Club, JCB with " +"Discover logo" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always continue to audit this course instead." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always {a_start}audit this course instead{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Go to Step 1: Take my Photo" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "ID Verification" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You've Been Verified Previously" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "" +"We've already verified your identity (through the photos of you and your ID " +"you provided earlier). You can proceed to make your secure payment and " +"complete registration." +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You have decided to pay $ " +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}(active){span_end}" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "Changes" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}active{span_end}" +msgstr "" + +#: lms/templates/wiki/includes/breadcrumbs.html +msgid "Add article" +msgstr "" + +#: cms/templates/404.html +msgid "The page that you were looking for was not found." +msgstr "" + +#: cms/templates/404.html +msgid "" +"Go back to the {homepage} or let us know about any pages that may have been " +"moved at {email}." +msgstr "" + +#: cms/templates/500.html +msgid "Studio Server Error" +msgstr "" + +#: cms/templates/500.html +msgid "The Studio servers encountered an error" +msgstr "" + +#: cms/templates/500.html +msgid "" +"An error occurred in Studio and the page could not be loaded. Please try " +"again in a few moments." +msgstr "" + +#: cms/templates/500.html +msgid "" +"We've logged the error and our staff is currently working to resolve this " +"error as soon as possible." +msgstr "" + +#: cms/templates/500.html +msgid "If the problem persists, please email us at {email_link}." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +#: cms/templates/activation_invalid.html +msgid "Studio Account Activation" +msgstr "" + +#: cms/templates/activation_active.html +msgid "Your account is already active" +msgstr "" + +#: cms/templates/activation_active.html +msgid "" +"This account, set up using {0}, has already been activated. Please sign in " +"to start working within edX Studio." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +msgid "Sign into Studio" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "Your account activation is complete!" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "" +"Thank you for activating your account. You may now sign in and start using " +"edX Studio to author courses." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Your account activation is invalid" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"We're sorry. Something went wrong with your activation. Check to make sure " +"the URL you went to was correct — e-mail programs will sometimes split" +" it into two lines." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"If you still have issues, contact edX Support. In the meatime, you can also " +"return to" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Contact edX Support" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/widgets/header.html +msgid "Files & Uploads" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Uploading…" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +msgid "Choose File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/asset_index.html +msgid "Upload New File" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Load Another File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/course_info.html +#: cms/templates/edit-tabs.html cms/templates/overview.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Content" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/course_info.html cms/templates/edit-tabs.html +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/textbooks.html +msgid "Page Actions" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + +#: cms/templates/asset_index.html +msgid "What files are listed here?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"In addition to the files you upload on this page, any files that you add to " +"the course appear in this list. These files include your course image, " +"textbook chapters, and files that appear on your Course Handouts sidebar." +msgstr "" + +#: cms/templates/asset_index.html +msgid "File URLs" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the Embed URL value to link to the file or image from a component, a" +" course update, or a course handout." +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the External URL value to reference the file or image from outside " +"of your course. Do not use the External URL as a link value within your " +"course." +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/overview.html cms/templates/settings_graders.html +msgid "What can I do on this page?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You can upload new files or view, download, or delete existing files. You " +"can lock a file so that people who are not enrolled in your course cannot " +"access that file." +msgstr "" + +#: cms/templates/asset_index.html +msgid "Your file has been deleted." +msgstr "" + +#: cms/templates/asset_index.html +msgid "close alert" +msgstr "" + +#: cms/templates/checklists.html cms/templates/export.html +#: cms/templates/export_git.html cms/templates/import.html +#: cms/templates/widgets/header.html +msgid "Tools" +msgstr "Құралдары" + +#: cms/templates/checklists.html +msgid "Course Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "Current Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "What are course checklists?" +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Course checklists are tools to help you understand and keep track of all the" +" steps necessary to get your course ready for students." +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Any changes you make to these checklists are saved automatically and are " +"immediately visible to other course team members." +msgstr "" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +msgid "Duplicate" +msgstr "" + +#: cms/templates/component.html +msgid "Duplicate this component" +msgstr "" + +#: cms/templates/component.html +msgid "Delete this component" +msgstr "" + +#: cms/templates/component.html cms/templates/container_xblock_component.html +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/overview.html cms/templates/overview.html +msgid "Drag to reorder" +msgstr "" + +#: cms/templates/container.html +msgid "Container" +msgstr "" + +#: cms/templates/container.html +msgid "This page has no content yet." +msgstr "" + +#: cms/templates/container.html cms/templates/container.html +msgid "Publishing Status" +msgstr "" + +#: cms/templates/container.html +msgid "Published" +msgstr "" + +#: cms/templates/container.html +msgid "" +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." +msgstr "" + +#: cms/templates/course_info.html cms/templates/course_info.html +msgid "Course Updates" +msgstr "" + +#: cms/templates/course_info.html +msgid "New Update" +msgstr "" + +#: cms/templates/course_info.html +msgid "" +"Use course updates to notify students of important dates or exams, highlight" +" particular discussions in the forums, announce schedule changes, and " +"respond to student questions. You add or edit updates in HTML." +msgstr "" + +#. Translators: Pages refer to the tabs that appear in the top navigation of +#. each course. +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/export.html cms/templates/widgets/header.html +msgid "Pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "New Page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit_subsection.html +#: cms/templates/index.html cms/templates/overview.html +#: cms/templates/unit.html +msgid "View Live" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Show this page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "Show/hide page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "This page cannot be reordered" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "You can add additional custom pages to your course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Add a New Page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "What are pages?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages are listed horizontally at the top of your course. Default pages " +"(Courseware, Course info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages that you create." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Custom pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"You can create and edit custom pages to provide students with additional " +"course content. For example, you can create pages for the grading policy, " +"course slides, and a course calendar. " +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "How do pages look to students in my course?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Students see the default and custom pages at the top of your course and use " +"these links to navigate." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "See an example" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Pages in Your Course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Preview of Pages in your course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages appear in your course's top navigation bar. The default pages " +"(Courseware, Course Info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages." +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/howitworks.html +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "close modal" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "CMS Subsection" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/unit.html +msgid "Display Name:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Units:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Subsection Settings" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Day" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Time" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/edit_subsection.html +#: cms/templates/overview.html +msgid "Coordinated Universal Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "UTC" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "" +"The date above differs from the release date of {name}, which is unset." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "The date above differs from the release date of {name} - {start_time}" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Sync to {name}." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Graded as:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Set a due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Day" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Remove due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Preview Drafts" +msgstr "" + +#: cms/templates/error.html +msgid "Internal Server Error" +msgstr "" + +#: cms/templates/error.html +msgid "The Page You Requested Page Cannot be Found" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. We couldn't find the Studio page you're looking for. You may " +"want to return to the Studio Dashboard and try again. If you are still " +"having problems accessing things, please feel free to {link_start}contact " +"Studio support{link_end} for further help." +msgstr "" + +#: cms/templates/error.html cms/templates/error.html +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Use our feedback tool, Tender, to share your feedback" +msgstr "" + +#: cms/templates/error.html +msgid "The Server Encountered an Error" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. There was a problem with the server while trying to process " +"your last request. You may want to return to the Studio Dashboard or try " +"this request again. If you are still having problems accessing things, " +"please feel free to {link_start}contact Studio support{link_end} for further" +" help." +msgstr "" + +#: cms/templates/error.html +msgid "Back to dashboard" +msgstr "" + +#: cms/templates/export.html cms/templates/export.html +msgid "Course Export" +msgstr "" + +#: cms/templates/export.html +msgid "About Exporting Courses" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export courses and edit them outside of Studio. The exported file is" +" a .tar.gz file (that is, a .tar file compressed with GNU Zip) that contains" +" the course structure and content. You can also re-import courses that " +"you've exported." +msgstr "" + +#: cms/templates/export.html +msgid "Export My Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Export Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}exported with{em_end} your course:" +msgstr "" + +#: cms/templates/export.html +msgid "Course Content (all Sections, Sub-sections, and Units)" +msgstr "" + +#: cms/templates/export.html +msgid "Course Structure" +msgstr "" + +#: cms/templates/export.html +msgid "Individual Problems" +msgstr "" + +#: cms/templates/export.html +msgid "Course Assets" +msgstr "" + +#: cms/templates/export.html +msgid "Course Settings" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}not exported{em_end} with your course:" +msgstr "" + +#: cms/templates/export.html +msgid "User Data" +msgstr "" + +#: cms/templates/export.html +msgid "Course Team Data" +msgstr "" + +#: cms/templates/export.html +msgid "Forum/discussion Data" +msgstr "" + +#: cms/templates/export.html +msgid "Certificates" +msgstr "" + +#: cms/templates/export.html +msgid "Why export a course?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your course directly, outside of Studio. You" +" may want to create a backup copy of your course. Or, you may want to create" +" a copy of your course that you can later import into another course " +"instance and customize." +msgstr "" + +#: cms/templates/export.html +msgid "What content is exported?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are exported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, is not exported." +msgstr "" + +#: cms/templates/export.html +msgid "Opening the downloaded file" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the course.xml file, as well as subfolders that contain course" +" content." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git" +msgstr "" + +#: cms/templates/export_git.html cms/templates/export_git.html +#: cms/templates/widgets/header.html +msgid "Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "About Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "Use this to export your course to its git repository." +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"This will then trigger an automatic update of the main LMS site and update " +"the contents of your course visible there to students if automatic git " +"imports are configured." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git:" +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"giturl must be defined in your course settings before you can export to git." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Failed" +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Succeeded" +msgstr "" + +#: cms/templates/export_git.html +msgid "Your course:" +msgstr "" + +#: cms/templates/export_git.html +msgid "Course git url:" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome to" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio helps manage your courses online, so you can focus on teaching them" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Studio's Many Features" +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "Studio Helps You Keep Your Courses Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Keeping Your Course Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"The backbone of your course is how it is organized. Studio offers an " +"Outline editor, providing a simple hierarchy and easy drag " +"and drop to help you and your students stay organized." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple Organization For Content" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio uses a simple hierarchy of sections and " +"subsections to organize your content." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Change Your Mind Anytime" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Draft your outline and build content anywhere. Simple drag and drop tools " +"let your reorganize quickly." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Go A Week Or A Semester At A Time" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Build and release sections to your students incrementally. " +"You don't have to have it all done at once." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html +msgid "Learning is More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio lets you weave your content together in a way that reinforces " +"learning — short video lectures interleaved with exercises and more. " +"Insert videos and author a wide variety of exercise types with just a few " +"clicks." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Create Learning Pathways" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Help your students understand a small interactive piece at a time with " +"multimedia, HTML, and exercises." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work Visually, Organize Quickly" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Work visually and see exactly what your students will see. Reorganize all " +"your content with drag and drop." +msgstr "" + +#: cms/templates/howitworks.html +msgid "A Broad Library of Problem Types" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"It's more than just multiple choice. Studio has nearly a dozen types of " +"problems to challenge your learners." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "" +"Studio Gives You Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio works like web applications you already know, yet understands how you" +" build curriculum. Instant publishing to the web when you want it, " +"incremental release when it makes sense. And with co-authors, you can have a" +" whole team building a course, together." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Instant Changes" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Caught a bug? No problem. When you want, your changes to live when you hit " +"Save." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Release-On Date Publishing" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"When you've finished a section, pick when you want it to go" +" live and Studio takes care of the rest. Build your course incrementally." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work in Teams" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Co-authors have full access to all the same authoring tools. Make your " +"course better through a team effort." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up for Studio Today!" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up & Start Making an edX Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Already have a Studio Account? Sign In" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Outlining Your Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simple two-level outline to organize your couse. Drag and drop, and see your" +" course at a glance." +msgstr "" + +#: cms/templates/howitworks.html +msgid "More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Quickly create videos, text snippets, inline discussions, and a variety of " +"problem types." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Publishing on Date" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simply set the date of a section or subsection, and Studio will publish it " +"to your students for you." +msgstr "" + +#: cms/templates/html_error.html +msgid "We're having trouble rendering your component" +msgstr "" + +#: cms/templates/html_error.html +msgid "" +"Students will not be able to access this component. Re-edit your component " +"to fix the error." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Course Import" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a course before continuing. Content of the " +"imported course replaces all the content of this course. {em_start}You " +"cannot undo a course import{em_end}. We recommend that you first export the " +"current course, so you have a backup copy of it." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "" +"The course that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " +"It may also contain other files." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your course until the import operation has completed." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Course Content" +msgstr "" + +#: cms/templates/import.html +msgid "Choose a File to Import" +msgstr "" + +#: cms/templates/import.html +msgid "File Chosen:" +msgstr "" + +#: cms/templates/import.html +msgid "Replace my course with the one above" +msgstr "" + +#: cms/templates/import.html +msgid "Course Import Status" +msgstr "" + +#: cms/templates/import.html +msgid "Uploading" +msgstr "" + +#: cms/templates/import.html +msgid "Transferring your file to our servers" +msgstr "" + +#: cms/templates/import.html +msgid "Unpacking" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Expanding and preparing folder/file structure (You can now leave this page " +"safely, but avoid making drastic changes to content until this import is " +"complete)" +msgstr "" + +#: cms/templates/import.html +msgid "Verifying" +msgstr "" + +#: cms/templates/import.html +msgid "Reviewing semantics, syntax, and required data" +msgstr "" + +#: cms/templates/import.html +msgid "Updating Course" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this course. This may take a while " +"with larger courses." +msgstr "" + +#: cms/templates/import.html +msgid "Success" +msgstr "" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this course" +msgstr "" + +#: cms/templates/import.html +msgid "View Updated Outline" +msgstr "" + +#: cms/templates/import.html +msgid "Why import a course?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"You may want to run a new version of an existing course, or replace an " +"existing course altogether. Or, you may have developed a course outside " +"Studio." +msgstr "" + +#: cms/templates/import.html +msgid "What content is imported?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are imported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, remains the same as it was in the existing course." +msgstr "" + +#: cms/templates/import.html +msgid "Warning: Importing while a course is running" +msgstr "" + +#: cms/templates/import.html +msgid "" +"If you perform an import while your course is running, and you change the " +"URL names (or url_name nodes) of any Problem components, the student data " +"associated with those Problem components may be lost. This data includes " +"students' problem scores." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error during the upload process." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while unpacking the file." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while verifying the file you submitted." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while importing the new course to our database." +msgstr "" + +#: cms/templates/import.html +msgid "Your import has failed." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Choose new file" +msgstr "" + +#: cms/templates/import.html +msgid "Your import is in progress; navigating away will abort it." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +#: cms/templates/widgets/header.html +msgid "My Courses" +msgstr "" + +#: cms/templates/index.html +msgid "New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Email staff to create course" +msgstr "" + +#: cms/templates/index.html +msgid "Welcome, {0}!" +msgstr "" + +#: cms/templates/index.html +msgid "Here are all of the courses you currently have access to in Studio:" +msgstr "" + +#: cms/templates/index.html +msgid "You currently aren't associated with any Studio Courses." +msgstr "" + +#: cms/templates/index.html +msgid "Please correct the highlighted fields below." +msgstr "" + +#: cms/templates/index.html +msgid "Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Required Information to Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. Introduction to Computer Science" +msgstr "" + +#: cms/templates/index.html +msgid "The public display name for your course." +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +msgid "Organization" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. UniversityX or OrganizationX" +msgstr "" + +#: cms/templates/index.html +msgid "The name of the organization sponsoring the course." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed." +msgstr "" + +#: cms/templates/index.html +msgid "" +"This cannot be changed, but you can set a different display name in Advanced" +" Settings later." +msgstr "" + +#: cms/templates/index.html +msgid "e.g. CS101" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The unique number that identifies your course within your organization." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed and it cannot be changed." +msgstr "" + +#: cms/templates/index.html +msgid "Course Run" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. 2014_T1" +msgstr "" + +#: cms/templates/index.html +msgid "The term in which your course will run." +msgstr "" + +#: cms/templates/index.html +msgid "Create" +msgstr "" + +#: cms/templates/index.html +msgid "Course Run:" +msgstr "" + +#: cms/templates/index.html +msgid "Are you staff on an existing Studio course?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"You will need to be added to the course in Studio by the course creator. " +"Please get in touch with the course creator or administrator for the " +"specific course you are helping to author." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Create Your First Course" +msgstr "" + +#: cms/templates/index.html +msgid "Your new course is just a click away!" +msgstr "" + +#: cms/templates/index.html +msgid "Becoming a Course Creator in Studio" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team will " +"evaluate your request and provide you feedback within 24 hours during the " +"work week." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status:" +msgstr "" + +#: cms/templates/index.html +msgid "Request the Ability to Create Courses" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is has " +"completed evaluating your request." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator request is:" +msgstr "" + +#: cms/templates/index.html +msgid "Denied" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request did not meet the criteria/guidelines specified by edX Staff." +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is " +"currently evaluating your request." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request is currently being reviewed by edX staff and should be updated " +"shortly." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Need help?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"If you are new to Studio and having trouble getting started, there are a few" +" things that may be of help:" +msgstr "" + +#: cms/templates/index.html +msgid "Get started by reading Studio's Documentation" +msgstr "" + +#: cms/templates/index.html +msgid "Request help with Studio" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Can I create courses in Studio?" +msgstr "" + +#: cms/templates/index.html +msgid "In order to create courses in Studio, you must" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX staff to help you create a course" +msgstr "" + +#: cms/templates/index.html +msgid "" +"In order to create courses in Studio, you must have course creator " +"privileges to create your own course." +msgstr "" + +#: cms/templates/index.html +msgid "Your request to author courses in studio has been denied. Please" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX Staff with further questions" +msgstr "" + +#: cms/templates/index.html +msgid "Thanks for signing up, %(name)s!" +msgstr "" + +#: cms/templates/index.html +msgid "We need to verify your email address" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Almost there! In order to complete your sign up we need you to verify your " +"email address (%(email)s). An activation message and next steps should be " +"waiting for you there." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Please check your Junk or Spam folders in case our email isn't in your " +"INBOX. Still can't find the verification email? Request help via the link " +"below." +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/header.html +msgid "Sign In" +msgstr "" + +#: cms/templates/login.html cms/templates/login.html +msgid "Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html +msgid "Don't have a Studio Account? Sign up!" +msgstr "" + +#: cms/templates/login.html +msgid "Required Information to Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +msgid "Email Address" +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/sock.html +msgid "Studio Support" +msgstr "" + +#: cms/templates/login.html +msgid "" +"Having trouble with your account? Use {link_start}our support " +"center{link_end} to look over self help steps, find solutions others have " +"found to the same problem, or let us know of your issue." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Settings" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Course Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a User to Your Course's Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member Information" +msgstr "" + +#: cms/templates/manage_users.html +msgid "User's Email Address" +msgstr "" + +#: cms/templates/manage_users.html +msgid "e.g. jane.doe@gmail.com" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Please provide the email address of the course staff member you'd like to " +"add" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add User" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "Current Role:" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "You!" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Staff" +msgstr "" + +#: cms/templates/manage_users.html +msgid "send an email message to {email}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Promote another member to Admin to remove your admin rights" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Remove Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Delete the user, {username}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Team Members to This Course" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Adding team members makes course authoring collaborative. Users must be " +"signed up for Studio and have an active account. " +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Roles" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Course team members, or staff, are course co-authors. They have full writing" +" and editing privileges on all course content." +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Admins are course team members who can add and remove other course team " +"members." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Transferring Ownership" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Every course must have an Admin. If you're the Admin and you want transfer " +"ownership of the course, click Add admin access to make another user the " +"Admin, then ask that user to remove you from the Course Team list." +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Course Outline" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html +msgid "Expand/collapse this section" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Section Name" +msgstr "" + +#: cms/templates/overview.html +msgid "Add a new section name" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Delete this section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to re-order" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Subsection" +msgstr "" + +#: cms/templates/overview.html cms/templates/widgets/units.html +msgid "New Unit" +msgstr "" + +#: cms/templates/overview.html +msgid "You haven't added any sections to your course outline yet." +msgstr "" + +#: cms/templates/overview.html +msgid "Add your first section" +msgstr "" + +#: cms/templates/overview.html +msgid "Collapse All Sections" +msgstr "" + +#: cms/templates/overview.html +msgid "New Section" +msgstr "" + +#: cms/templates/overview.html +msgid "This section is not scheduled for release" +msgstr "" + +#: cms/templates/overview.html +msgid "Schedule" +msgstr "" + +#: cms/templates/overview.html +msgid "Release date:" +msgstr "" + +#: cms/templates/overview.html +msgid "Edit section release date" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to reorder section" +msgstr "" + +#: cms/templates/overview.html +msgid "Expand/collapse this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"You can create new sections and subsections, set the release date for " +"sections, and create new units in existing subsections. You can set the " +"assignment type for subsections that are to be graded, and you can open a " +"subsection for further editing." +msgstr "" + +#: cms/templates/overview.html +msgid "" +"In addition, you can drag and drop sections, subsections, and units to " +"reorganize your course." +msgstr "" + +#: cms/templates/overview.html +msgid "Section Release Date" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"On the date set below, this section - {name} - will be released to students." +" Any units marked private will only be visible to admins." +msgstr "" + +#: cms/templates/overview.html +msgid "Form Actions" +msgstr "" + +#: cms/templates/register.html +msgid "Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "Already have a Studio Account? Sign in" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Ready to start creating online courses? Sign up below and start creating " +"your first edX course today." +msgstr "" + +#: cms/templates/register.html +msgid "Required Information to Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "" +"This will be used in public discussions with your courses and in our edX101 " +"support forums" +msgstr "" + +#: cms/templates/register.html +msgid "Your Location" +msgstr "" + +#: cms/templates/register.html +msgid "I agree to the {a_start} Terms of Service {a_end}" +msgstr "" + +#: cms/templates/register.html +msgid "Create My Account & Start Authoring Courses" +msgstr "" + +#: cms/templates/register.html +msgid "Common Studio Questions" +msgstr "" + +#: cms/templates/register.html +msgid "Who is Studio for?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is for anyone that wants to create online courses that leverage the " +"global edX platform. Our users are often faculty members, teaching " +"assistants and course staff, and members of instructional technology groups." +msgstr "" + +#: cms/templates/register.html +msgid "How technically savvy do I need to be to create courses in Studio?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is designed to be easy to use by almost anyone familiar with common " +"web-based authoring environments (Wordpress, Moodle, etc.). No programming " +"knowledge is required, but for some of the more advanced features, a " +"technical background would be helpful. As always, we are here to help, so " +"don't hesitate to dive right in." +msgstr "" + +#: cms/templates/register.html +msgid "I've never authored a course online before. Is there help?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Absolutely. We have created an online course, edX101, that describes some " +"best practices: from filming video, creating exercises, to the basics of " +"running an online course. Additionally, we're always here to help, just drop" +" us a note." +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details Settings" +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/settings.html +msgid "Basic Information" +msgstr "" + +#: cms/templates/settings.html +msgid "The nuts and bolts of your course" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "This field is disabled: this information cannot be changed." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Summary Page" +msgstr "" + +#: cms/templates/settings.html +msgid "(for student enrollment and access)" +msgstr "" + +#: cms/templates/settings.html +msgid "Send a note to students via email" +msgstr "" + +#: cms/templates/settings.html +msgid "Invite your students" +msgstr "" + +#: cms/templates/settings.html +msgid "Promoting Your Course with edX" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course summary page will not be viewable until your course has been " +"announced. To provide content for the page and preview it, follow the " +"instructions provided by your PM." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Schedule" +msgstr "" + +#: cms/templates/settings.html +msgid "Dates that control when your course can be viewed" +msgstr "" + +#: cms/templates/settings.html +msgid "First day the course begins" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day your course is active" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Date" +msgstr "" + +#: cms/templates/settings.html +msgid "First day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "These Dates Are Not Used When Promoting Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"These dates impact when your courseware can be viewed, but " +"they are not the dates shown on your course summary page. " +"To provide the course start and registration dates as shown on your course " +"summary page, follow the instructions provided by your PM or Conrad Warre (conrad@edx.org)." +msgstr "" + +#: cms/templates/settings.html +msgid "Introducing Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "Information for prospective students" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Short Description" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Appears on the course catalog page when students roll over the course name. " +"Limit to ~150 characters" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Overview" +msgstr "" + +#: cms/templates/settings.html +msgid "your course summary page" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"You can manage this image along with all of your other files " +"& uploads" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 375px wide by 200px tall)" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your course image (Note: only JPEG " +"or PNG format supported)" +msgstr "" + +#: cms/templates/settings.html +msgid "Upload Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Introduction Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Delete Current Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Enter your YouTube video's ID (along with any restriction parameters)" +msgstr "" + +#: cms/templates/settings.html +msgid "Requirements" +msgstr "" + +#: cms/templates/settings.html +msgid "Expectations of the students taking this course" +msgstr "" + +#: cms/templates/settings.html +msgid "Hours of Effort per Week" +msgstr "" + +#: cms/templates/settings.html +msgid "Time spent on all course work" +msgstr "" + +#: cms/templates/settings.html +msgid "How are these settings used?" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course's schedule determines when students can enroll in and begin a " +"course." +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Other information from this page appears on the About page for your course. " +"This information includes the course overview, course image, introduction " +"video, and estimated time requirements. Students use About pages to choose " +"new courses to take." +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html +msgid "Other Course Settings" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +msgid "Grading" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Advanced Settings" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "There was an error saving your information. Please see below." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Manual Policy Definition" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Warning: Do not modify these policies unless you are " +"familiar with their purpose." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "What do advanced settings do?" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Advanced settings control specific course functionality. On this page, you " +"can edit manual policies, which are JSON-based key and value pairs that " +"control specific course settings." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Any policies you modify here override all other information you've defined " +"elsewhere in Studio. Do not edit policies unless you are familiar with both " +"their purpose and syntax." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" +" you use double quotation marks (") around the string. Do not use " +"single quotation marks (')." +msgstr "" + +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +msgid "Details & Schedule" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Settings" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Overall Grade Range" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Your overall grading scale for student final grades" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Rules & Policies" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Deadlines, requirements, and logistics around grading student work" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grace Period on Deadline:" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Leeway on due dates" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Assignment Types" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Categories and labels for any exercises that are gradable" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "New Assignment Type" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can use the slider under Overall Grade Range to specify whether your " +"course is pass/fail or graded by letter, and to establish the thresholds for" +" each grade." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can specify whether your course offers students a grace period for late " +"assignments." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can also create assignment types, such as homework, labs, quizzes, and " +"exams, and specify how much of a student's grade each assignment type is " +"worth." +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +#: cms/templates/studio_vertical_wrapper.html +msgid "Expand or Collapse" +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + +#: cms/templates/textbooks.html +msgid "You have unsaved changes. Do you really want to leave this page?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "New Textbook" +msgstr "" + +#: cms/templates/textbooks.html +msgid "Why should I break my textbook into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"Breaking your textbook into multiple chapters reduces loading times for " +"students, especially those with slow Internet connections. Breaking up " +"textbooks into chapters can also help students more easily find topic-based " +"information." +msgstr "" + +#: cms/templates/textbooks.html +msgid "What if my book isn't divided into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"If your textbook doesn't have individual chapters, you can upload the entire" +" text as a single chapter and enter a name of your choice in the Chapter " +"Name field." +msgstr "" + +#: cms/templates/unit.html cms/templates/ux/reference/unit.html +msgid "Individual Unit" +msgstr "" + +#: cms/templates/unit.html +msgid "You are editing a draft." +msgstr "" + +#: cms/templates/unit.html +msgid "This unit was originally published on {date}." +msgstr "" + +#: cms/templates/unit.html +msgid "View the Live Version" +msgstr "" + +#: cms/templates/unit.html +msgid "Add New Component" +msgstr "" + +#: cms/templates/unit.html +msgid "Common Problem Types" +msgstr "" + +#: cms/templates/unit.html +msgid "Advanced" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Settings" +msgstr "" + +#: cms/templates/unit.html +msgid "Visibility:" +msgstr "" + +#: cms/templates/unit.html +msgid "Public" +msgstr "" + +#: cms/templates/unit.html +msgid "Private" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit has been published. To make changes, you must {link_start}edit a " +"draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This is a draft of the published unit. To update the live version, you must " +"{link_start}replace it with this draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "Delete Draft" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Location" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Identifier:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for edX Studio! To activate your account, please " +"copy and paste this address into your web browser's address bar:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the edX web site." +msgstr "" + +#: cms/templates/emails/activation_email_subject.txt +msgid "Your account for edX Studio" +msgstr "" + +#: cms/templates/emails/course_creator_admin_subject.txt +msgid "{email} has requested Studio course creator privileges on edge" +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "" +"User '{user}' with e-mail {email} has requested Studio course creator " +"privileges on edge." +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "To grant or deny this request, use the course creator admin table." +msgstr "" + +#: cms/templates/emails/course_creator_denied.txt +msgid "" +"Your request for course creation rights to edX Studio have been denied. If " +"you believe this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_granted.txt +msgid "" +"Your request for course creation rights to edX Studio have been granted. To " +"create your first course, visit:" +msgstr "" + +#: cms/templates/emails/course_creator_revoked.txt +msgid "" +"Your course creation rights to edX Studio have been revoked. If you believe " +"this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_subject.txt +msgid "Your course creator status for edX Studio" +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "You can now {link_start}login{link_end}." +msgstr "" + +#: cms/templates/registration/reg_complete.html +msgid "" +"An activation link has been sent to {email}, along with instructions for " +"activating your account." +msgstr "" + +#: cms/templates/widgets/footer.html +msgid "All rights reserved." +msgstr "" + +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Contact Us" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Current Course:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "{course_name}'s Navigation:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Outline" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Updates" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Checklists" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Import" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Export" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Help & Account Navigation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +msgid "This is a PDF Document" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Documentation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html +msgid "Studio Help Center" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Currently signed in as:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Sign Out" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "You're not currently signed in" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "How Studio Works" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Help" +msgstr "" + +#: cms/templates/widgets/metadata-edit.html +msgid "Launch Latex Source Compiler" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Heading 1" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Multiple Choice" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Checkboxes" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Text Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Numerical Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Dropdown" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Explanation" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Advanced Editor" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Toggle Cheatsheet" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Label" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "edX Studio Help" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Need help with Studio? Creating a course is complex, so we're here to help. " +"Take advantage of our documentation, help center, as well as our edX101 " +"introduction course for course authors." +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Download Studio Documentation" +msgstr "" + +#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +msgid "How to use Studio to build your course" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Enroll in edX101" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Contact us about Studio" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Have problems, questions, or suggestions about Studio? We're also here to " +"listen to any feedback you want to share." +msgstr "" + +#: cms/templates/widgets/tabs-aggregator.html +msgid "name" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete this unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to sort" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to reorder unit" +msgstr "" + +# empty +msgid "This is a key string." +msgstr "Бұл негізгі жолы." + +#: wiki/admin.py wiki/models/article.py +msgid "created" +msgstr "" + +#: wiki/forms.py +msgid "Only localhost... muahahaha" +msgstr "" + +#: wiki/forms.py +msgid "Initial title of the article. May be overridden with revision titles." +msgstr "" + +#: wiki/forms.py +msgid "Type in some contents" +msgstr "" + +#: wiki/forms.py +msgid "" +"This is just the initial contents of your article. After creating it, you " +"can use more complex features like adding plugins, meta data, related " +"articles etc..." +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Contents" +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Summary" +msgstr "" + +#: wiki/forms.py +msgid "" +"Give a short reason for your edit, which will be stated in the revision log." +msgstr "" + +#: wiki/forms.py +msgid "" +"While you were editing, someone else changed the revision. Your contents " +"have been automatically merged with the new contents. Please review the text" +" below." +msgstr "" + +#: wiki/forms.py +msgid "No changes made. Nothing to save." +msgstr "" + +#: wiki/forms.py +msgid "Select an option" +msgstr "" + +#: wiki/forms.py +msgid "Slug" +msgstr "" + +#: wiki/forms.py +msgid "" +"This will be the address where your article can be found. Use only " +"alphanumeric characters and - or _. Note that you cannot change the slug " +"after creating the article." +msgstr "" + +#: wiki/forms.py +msgid "Write a brief message for the article's history log." +msgstr "" + +#: wiki/forms.py +msgid "A slug may not begin with an underscore." +msgstr "" + +#: wiki/forms.py +msgid "A deleted article with slug \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "A slug named \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "Yes, I am sure" +msgstr "" + +#: wiki/forms.py +msgid "Purge" +msgstr "" + +#: wiki/forms.py +msgid "" +"Purge the article: Completely remove it (and all its contents) with no undo." +" Purging is a good idea if you want to free the slug such that users can " +"create new articles in its place." +msgstr "" + +#: wiki/forms.py wiki/plugins/attachments/forms.py +#: wiki/plugins/images/forms.py +msgid "You are not sure enough!" +msgstr "" + +#: wiki/forms.py +msgid "While you tried to delete this article, it was modified. TAKE CARE!" +msgstr "" + +#: wiki/forms.py +msgid "Lock article" +msgstr "" + +#: wiki/forms.py +msgid "Deny all users access to edit this article." +msgstr "" + +#: wiki/forms.py +msgid "Permissions" +msgstr "" + +#: wiki/forms.py +msgid "Owner" +msgstr "" + +#: wiki/forms.py +msgid "Enter the username of the owner." +msgstr "" + +#: wiki/forms.py +msgid "(none)" +msgstr "" + +#: wiki/forms.py +msgid "Inherit permissions" +msgstr "" + +#: wiki/forms.py +msgid "" +"Check here to apply the above permissions recursively to articles under this" +" one." +msgstr "" + +#: wiki/forms.py +msgid "Permission settings for the article were updated." +msgstr "" + +#: wiki/forms.py +msgid "Your permission settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/forms.py +msgid "No user with that username" +msgstr "" + +#: wiki/forms.py +msgid "Article locked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Article unlocked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Filter..." +msgstr "" + +#: wiki/core/plugins/base.py +msgid "Settings for plugin" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +#: wiki/plugins/attachments/models.py +msgid "current revision" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The revision being displayed for this article. If you need to do a roll-" +"back, simply change the value of this field." +msgstr "" + +#: wiki/models/article.py +msgid "modified" +msgstr "" + +#: wiki/models/article.py +msgid "Article properties last modified" +msgstr "" + +#: wiki/models/article.py +msgid "owner" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The owner of the article, usually the creator. The owner always has both " +"read and write access." +msgstr "" + +#: wiki/models/article.py +msgid "group" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Like in a UNIX file system, permissions can be given to a user according to " +"group membership. Groups are handled through the Django auth system." +msgstr "" + +#: wiki/models/article.py +msgid "group read access" +msgstr "" + +#: wiki/models/article.py +msgid "group write access" +msgstr "" + +#: wiki/models/article.py +msgid "others read access" +msgstr "" + +#: wiki/models/article.py +msgid "others write access" +msgstr "" + +#: wiki/models/article.py +msgid "Article without content (%(id)d)" +msgstr "" + +#: wiki/models/article.py +msgid "content type" +msgstr "" + +#: wiki/models/article.py +msgid "object ID" +msgstr "" + +#: wiki/models/article.py +msgid "Article for object" +msgstr "" + +#: wiki/models/article.py +msgid "Articles for object" +msgstr "" + +#: wiki/models/article.py +msgid "revision number" +msgstr "" + +#: wiki/models/article.py +msgid "IP address" +msgstr "" + +#: wiki/models/article.py +msgid "user" +msgstr "" + +#: wiki/models/article.py +msgid "locked" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +msgid "article" +msgstr "" + +#: wiki/models/article.py +msgid "article contents" +msgstr "" + +#: wiki/models/article.py +msgid "article title" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Each revision contains a title field that must be filled out, even if the " +"title has not changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "original article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "Permissions are inherited from this article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "A plugin was changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "" +"The revision being displayed for this plugin.If you need to do a roll-back, " +"simply change the value of this field." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Cache lookup value for articles" +msgstr "" + +#: wiki/models/urlpath.py +msgid "slug" +msgstr "" + +#: wiki/models/urlpath.py +msgid "(root)" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL path" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL paths" +msgstr "" + +#: wiki/models/urlpath.py +msgid "Sorry but you cannot have a root article with a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "A non-root note must always have a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "There is already a root node on %s" +msgstr "" + +#: wiki/models/urlpath.py +msgid "" +"Articles who lost their parents\n" +"===============================\n" +"\n" +"The children of this article have had their parents deleted. You should probably find a new home for them." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Lost and found" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "A short summary of what the file contains" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "Yes I am sure..." +msgstr "" + +#: wiki/plugins/attachments/markdown_extensions.py +msgid "Click to download file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "" +"The revision of this attachment currently in use (on all articles using the " +"attachment)" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "original filename" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachments" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revision" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revisions" +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s was successfully added." +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "Your file could not be saved: %s" +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "" +"Your file could not be saved, probably because of a permission error on the " +"web server." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s uploaded and replaces old attachment." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your new file will automatically be renamed to match the file already " +"present. Files with different extensions are not allowed." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Current revision changed for %s." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "The file %s was deleted." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "This article is no longer related to the file %s." +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was changed: %s" +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was deleted: %s" +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "" +"New image %s was successfully uploaded. You can use it by selecting it from " +"the list of available images." +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "Are you sure?" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "images" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image: %s" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Current revision not set!!" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revision" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revisions" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image Revsion: %d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been restored" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been marked as deleted" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been changed to revision #%(revision)d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been saved." +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "Images" +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "An image was added: %s" +msgstr "" + +#: wiki/plugins/links/wiki_plugin.py +msgid "Links" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Notifications" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "When this article is edited" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Also receive emails about article edits" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were updated." +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "%(user)s subscribing to %(article)s (%(type)s)" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article deleted: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article modified: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "New article created: %s" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now sign up... and now you can sign in!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are no longer logged in. Bye bye!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now logged in! Have fun!" +msgstr "" + +#: wiki/views/article.py +msgid "New article '%s' created." +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article: %s" +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article cannot be deleted because it has children or is a root article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article together with all its contents are now completely gone! Thanks!" +msgstr "" + +#: wiki/views/article.py +msgid "" +"The article \"%s\" is now marked as deleted! Thanks for keeping the site " +"free from unwanted material!" +msgstr "" + +#: wiki/views/article.py +msgid "Your changes were saved." +msgstr "" + +#: wiki/views/article.py +msgid "A new revision of the article was succesfully added." +msgstr "" + +#: wiki/views/article.py +msgid "Restoring article" +msgstr "" + +#: wiki/views/article.py +msgid "The article \"%s\" and its children are now restored." +msgstr "" + +#: wiki/views/article.py +msgid "The article %s is now set to display revision #%d" +msgstr "" + +#: wiki/views/article.py +msgid "New title" +msgstr "" + +#: wiki/views/article.py +msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" +msgstr "" + +#: wiki/views/article.py +msgid "" +"A new revision was created: Merge between Revision #%(r1)d and Revision " +"#%(r2)d" +msgstr "" diff --git a/conf/locale/kk_KZ/LC_MESSAGES/djangojs.mo b/conf/locale/kk_KZ/LC_MESSAGES/djangojs.mo new file mode 100644 index 0000000000..e163076da7 Binary files /dev/null and b/conf/locale/kk_KZ/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/kk_KZ/LC_MESSAGES/djangojs.po b/conf/locale/kk_KZ/LC_MESSAGES/djangojs.po new file mode 100644 index 0000000000..821e90ef83 --- /dev/null +++ b/conf/locale/kk_KZ/LC_MESSAGES/djangojs.po @@ -0,0 +1,1700 @@ +# #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Kazakh (Kazakhstan) (http://www.transifex.com/projects/p/edx-platform/language/kk_KZ/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# Ablai , 2014 +# eudj1n , 2014 +# aermek , 2014 +# #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# eudj1n , 2014 +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" +"Last-Translator: sarina \n" +"Language-Team: Kazakh (Kazakhstan) (http://www.transifex.com/projects/p/edx-platform/language/kk_KZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kk_KZ\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: cms/static/coffee/src/views/tabs.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js +#: common/static/coffee/src/discussion/utils.js +msgid "OK" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/asset.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Cancel" +msgstr "" + +#: cms/static/js/base.js lms/static/js/verify_student/photocapture.js +msgid "This link will open in a new browser window/tab" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Show Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Hide Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Expand Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Collapse Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Commentary" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Reply to Annotation" +msgstr "" + +#. Translators: %(earned)s is the number of points earned. %(total)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(earned)s/%(possible)s point)" +msgid_plural "(%(earned)s/%(possible)s points)" +msgstr[0] "" + +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10). There will always be at least 1 point possible.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(num_points)s point possible)" +msgid_plural "(%(num_points)s points possible)" +msgstr[0] "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer:" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Hide Answer" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Show Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Reveal Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer hidden" +msgstr "" + +#. Translators: the word unanswered here is about answering a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "unanswered" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Status: unsubmitted" +msgstr "" + +#. Translators: A "rating" is a score a student gives to indicate how well +#. they feel they were graded on this problem +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "You need to pick a rating before you can submit." +msgstr "" + +#. Translators: this message appears when transitioning between openended +#. grading +#. types (i.e. self assesment to peer assessment). Sometimes, if a student +#. did not perform well at one step, they cannot move on to the next one. +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Your score did not meet the criteria to move to the next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Submit" +msgstr "" + +#. Translators: one clicks this button after one has finished filling out the +#. grading +#. form for an openended assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: this button is clicked to submit a student's rating of +#. an evaluator's assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit post-assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Answer saved, but not yet submitted." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Please confirm that you wish to submit your work. You will not be able to " +"make any changes after submitting." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"You are trying to upload a file that is too large for our system. Please " +"choose a file under 2MB or paste a link to it into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Are you sure you want to remove your previous response to this question?" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Moved to next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"File uploads are required for this question, but are not supported in your " +"browser. Try the newest version of Google Chrome. Alternatively, if you have" +" uploaded the image to another website, you can paste a link to it into the " +"answer box." +msgstr "" + +#. Translators: "Show Question" is some text that, when clicked, shows a +#. question's +#. content that had been hidden +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Show Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Hide Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/sequence/display.js +msgid "" +"Sequence error! Cannot navigate to tab %(tab_name)s in the current " +"SequenceModule. Please contact the course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Video slider" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Pause" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Play" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Fill browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Exit full browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD on" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD off" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video ended" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s hour" +msgid_plural "%(value)s hours" +msgstr[0] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s minute" +msgid_plural "%(value)s minutes" +msgstr[0] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s second" +msgid_plural "%(value)s seconds" +msgstr[0] "" + +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Volume" +msgstr "" + +#. Translators: Volume level equals 0%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Muted" +msgstr "" + +#. Translators: Volume level in range (0,20]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very low" +msgstr "" + +#. Translators: Volume level in range (20,40]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Low" +msgstr "" + +#. Translators: Volume level in range (40,60]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Average" +msgstr "" + +#. Translators: Volume level in range (60,80]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Loud" +msgstr "" + +#. Translators: Volume level in range (80,100)% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very loud" +msgstr "" + +#. Translators: Volume level equals 100%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Maximum" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Caption will be displayed when " +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on captions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn off captions" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Hide Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Show Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Sorry" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "We had some trouble loading the discussion. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "" +"We had some trouble loading the threads you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "Loading content" +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "" +"We had some trouble processing your request. Please ensure you have copied " +"any unsaved work and then reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "We had some trouble processing your request. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +msgid "…" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Close" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Open" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "remove vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" +msgstr[0] "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" +msgstr[0] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Load more" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading more threads" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "We had some trouble loading more threads. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "%(unread_count)s new comment" +msgid_plural "%(unread_count)s new comments" +msgstr[0] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading thread list" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to remove report" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported%(start_sr_span)s, click to remove report%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Report Misuse" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned%(start_sr_span)s, click to unpin%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to unpin" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pin Thread" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading responses. Please reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading more responses. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "%(numResponses)s response" +msgid_plural "%(numResponses)s responses" +msgstr[0] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing first response" +msgid_plural "Showing first %(numResponses)s responses" +msgstr[0] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load next %(numResponses)s responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Are you sure you want to delete this post?" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +msgid "anonymous" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "staff" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Community TA" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported, click to remove report" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Are you sure you want to delete this comment?" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "We had some trouble deleting this comment. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/thread_response_view.js +msgid "Are you sure you want to delete this response?" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s ago" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s from now" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "less than a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about an hour" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about %d hour" +msgid_plural "about %d hours" +msgstr[0] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "a day" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a month" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a year" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Available %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of available %s. You may choose some by selecting them in " +"the box below and then clicking the \"Choose\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Type into this box to filter down the list of available %s." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Filter" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to choose all %s at once." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Chosen %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of chosen %s. You may remove some by selecting them in the " +"box below and then clicking the \"Remove\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to remove all chosen %s at once." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "%(sel)s of %(cnt)s selected" +msgid_plural "%(sel)s of %(cnt)s selected" +msgstr[0] "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have unsaved changes on individual editable fields. If you run an " +"action, your unsaved changes will be lost." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, but you haven't saved your changes to " +"individual fields yet. Please click OK to save. You'll need to re-run the " +"action." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, and you haven't made any changes on individual " +"fields. You're probably looking for the Go button rather than the Save " +"button." +msgstr "" + +#. Translators: the names of months, keep the pipe (|) separators. +#: lms/static/admin/js/calendar.js lms/static/admin/js/dateparse.js +msgid "" +"January|February|March|April|May|June|July|August|September|October|November|December" +msgstr "" + +#. Translators: abbreviations for days of the week, keep the pipe (|) +#. separators. +#: lms/static/admin/js/calendar.js +msgid "S|M|T|W|T|F|S" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.js.c +#: lms/static/admin/js/collapse.min.js +msgid "Show" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.min.js +msgid "Hide" +msgstr "" + +#. Translators: the names of days, keep the pipe (|) separators. +#: lms/static/admin/js/dateparse.js +msgid "Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Now" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Clock" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Choose a time" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Midnight" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "6 a.m." +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Noon" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Today" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Calendar" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Yesterday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Tomorrow" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Open Calculator" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Close Calculator" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Preview" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Post body" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching distribution." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Unavailable metric display." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching grade distributions." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Last Updated: <%= timestamp %>" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "<%= num_students %> students scored." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Loading..." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error getting student list." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error retrieving grading configuration." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error generating grades. Please try again." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "File Name" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "" +"Links are generated on demand and expire within 5 minutes due to the " +"sensitive nature of student information." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Username" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Revoke access" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Enter username or email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Please enter a username or email." +msgstr "" + +#. Translators: A rolename appears this sentence.; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error fetching list for role" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +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 "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully removed as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not removed as beta testers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Users must create and activate their account before they can be promoted to " +"beta tester." +msgstr "" + +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Could not find users associated with the following identifiers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error enrolling/unenrolling users." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following email addresses and/or usernames are invalid:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled and sent email to the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Emails successfully sent. The following users are no longer enrolled in the " +"course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following users are no longer enrolled in the course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"These users were not affiliated with the course so could not be unenrolled:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message must have a subject." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message cannot be blank." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to yourself. Is this " +"OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to everyone who is " +"staff or instructor on this course. Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to ALL (everyone who " +"is enrolled in this course as student, staff, or instructor). Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Error sending email." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There is no email history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There was an error obtaining email task history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a student email address or username." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting student progress url for '<%= student_id %>'. Check that the " +"student identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a problem urlname." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Success! Problem attempts reset for problem '<%= problem_id %>' and student " +"'<%= student_id %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error resetting problem attempts for problem '<%= problem_id %>' and student" +" '<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Delete student '<%= student_id %>'s state on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id" +" %>'. Check that the problem and student identifiers are spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Module state successfully deleted." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Started rescore problem task for problem '<%= problem_id %>' and student " +"'<%= student_id %>'. Click the 'Show Background Task History for Student' " +"button to see the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>' for student " +"'<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting task history for problem '<%= problem_id %>' and student '<%= " +"student_id %>'. Check that the problem and student identifiers are spelled " +"correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Reset attempts for all students on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to reset attempts for problem '<%= problem_id %>'." +" Click the 'Show Background Task History for Problem' button to see the " +"status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to reset attempts for all students on problem '<%= " +"problem_id %>'. Check that the problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Rescore problem '<%= problem_id %>' for all students?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to rescore problem '<%= problem_id %>' for all " +"students. Click the 'Show Background Task History for Problem' button to see" +" the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>'. Check that the" +" problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Error listing task history for this student and problem." +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Type" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task inputs" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task ID" +msgstr "" + +#. Translators: a "Requester" is a username that requested a task such as +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Requester" +msgstr "" + +#. Translators: A timestamp of when a task (eg, sending email) was submitted +#. appears after this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Submitted" +msgstr "" + +#. Translators: The length of a task (eg, sending email) in seconds appears +#. this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Duration (sec)" +msgstr "" + +#. Translators: The state (eg, "In progress") of a task (eg, sending email) +#. appears after this. +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "State" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Status" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Grades saved. Fetching the next submission to grade." +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Problem Name" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Graded" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Available to Grade" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Required" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Back to problem list" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Try loading again" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> available " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> graded " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> more needed to start ML" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Re-check for submissions" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state: <%= state %>" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state for submission: " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Hide)" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Show)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Image (upload file or type url)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Markdown Editing Help" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bold (Ctrl+B)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Italic (Ctrl+I)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Hyperlink (Ctrl+L)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote (Ctrl+Q)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Code Sample (Ctrl+K)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Image (Ctrl+G)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Numbered List (Ctrl+O)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bulleted List (Ctrl+U)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading (Ctrl+H)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Horizontal Rule (Ctrl+R)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Undo (Ctrl+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Y)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Shift+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "strong text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "emphasized text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter image description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter link description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote" +msgstr "" + +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +msgid "enter code here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "List item" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading" +msgstr "" + +#: lms/templates/class_dashboard/all_section_metrics.js +#: lms/templates/class_dashboard/all_section_metrics.js +msgid "Unable to retrieve data, please try again later." +msgstr "" + +#: lms/templates/class_dashboard/d3_stacked_bar_graph.js +msgid "Number of Students" +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "" +"This may be happening because of an error with our server or your internet " +"connection. Try refreshing the page or making sure you are online." +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "Studio's having trouble saving your work" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/xblock/cms.runtime.v1.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js +#: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js +#: cms/static/js/views/xblock_editor.js +msgid "Saving…" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "Delete Component Confirmation" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "" +"Are you sure you want to delete this component? This action cannot be " +"undone." +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js +msgid "Deleting…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js +msgid "Adding…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Duplicating…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Delete this component?" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Deleting this component is permanent and cannot be undone." +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Yes, delete this component" +msgstr "" + +#: cms/static/js/base.js +msgid "This link will open in a modal window" +msgstr "" + +#: cms/static/js/base.js +msgid "Delete this " +msgstr "" + +#: cms/static/js/base.js +msgid "Deleting this " +msgstr "" + +#: cms/static/js/base.js +msgid "Yes, delete this " +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces or special characters in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "" +"The combined length of the organization, course number, and course run " +"fields cannot be more than 65 characters." +msgstr "" + +#: cms/static/js/index.js +msgid "Required field." +msgstr "" + +#: cms/static/js/sock.js +msgid "Hide Studio Help" +msgstr "" + +#: cms/static/js/sock.js +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/static/js/models/course.js cms/static/js/models/section.js +msgid "You must specify a name" +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "" +"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " +"<%= fileExtensions %> to upload." +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "or" +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course must have an assigned start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course end date cannot be before the course start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course start date cannot be before the enrollment start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment start date cannot be after the enrollment end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment end date cannot be after the course end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "Key should only contain letters, numbers, _, or -" +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "There's already another assignment type with this name." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer between 0 and 100." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer greater than 0." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter non-negative integer." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Cannot drop more <% attrs.types %> than will assigned." +msgstr "" + +#: cms/static/js/models/settings/course_grading_policy.js +msgid "Grace period must be specified in HH:MM format." +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Delete File Confirmation" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "" +"Are you sure you wish to delete this item. It cannot be reversed!\n" +"\n" +"Also any content that links/refers to this item will no longer work (e.g. broken images and/or links)" +msgstr "" + +#: cms/static/js/views/asset.js cms/static/js/views/show_textbook.js +msgid "Delete" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Your file has been deleted." +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Name" +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Date Added" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "Are you sure you want to delete this update?" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "This action cannot be undone." +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Upload a new PDF to “<%= name %>”" +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + +#: cms/static/js/views/edit_textbook.js +#: cms/static/js/views/overview_assignment_grader.js +msgid "Saving" +msgstr "" + +#: cms/static/js/views/import.js +msgid "There was an error with the upload" +msgstr "" + +#: cms/static/js/views/import.js +msgid "" +"File format not supported. Please upload a file with a tar.gz " +"extension." +msgstr "" + +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Collapse All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Expand All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Release date:" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "{month}/{day}/{year} at {hour}:{minute} UTC" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Edit section release date" +msgstr "" + +#: cms/static/js/views/overview_assignment_grader.js +msgid "Not Graded" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "ascending" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "descending" +msgstr "" + +#: cms/static/js/views/paging_header.js +msgid "" +"Showing %(current_span)s%(start)s-%(end)s%(end_span)s out of " +"%(total_span)s%(total)s total%(end_span)s, sorted by " +"%(order_span)s%(sort_order)s%(end_span)s %(sort_direction)s" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Your change could not be saved" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Return and resolve this issue" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Delete “<%= name %>”?" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "" +"Deleting a textbook cannot be undone and once deleted any reference to it in" +" your courseware's navigation will also be removed." +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Deleting" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "We're sorry, there was an error" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes will not take effect until you save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes, but there are some errors" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "" +"Please address the errors on this page first, and then save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Save Changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes have been saved." +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Your changes will not take effect until you save your progress. Take care " +"with key and value formatting, as validation is not implemented." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Please note that validation of your policy key and value pairs is not " +"currently in place yet. If you are having difficulties, please review your " +"policy pairs." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Upload your course image." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Files must be in JPEG or PNG format." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/km_KH/LC_MESSAGES/django.mo b/conf/locale/km_KH/LC_MESSAGES/django.mo index 25a62f6576..867c98d209 100644 Binary files a/conf/locale/km_KH/LC_MESSAGES/django.mo and b/conf/locale/km_KH/LC_MESSAGES/django.mo differ diff --git a/conf/locale/km_KH/LC_MESSAGES/django.po b/conf/locale/km_KH/LC_MESSAGES/django.po index 9a7851745f..dca0ac269b 100644 --- a/conf/locale/km_KH/LC_MESSAGES/django.po +++ b/conf/locale/km_KH/LC_MESSAGES/django.po @@ -34,13 +34,14 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# vireax, 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-02-06 03:04+0000\n" -"Last-Translator: nedbat \n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-01 07:30+0000\n" +"Last-Translator: vireax\n" "Language-Team: Khmer (Cambodia) (http://www.transifex.com/projects/p/edx-platform/language/km_KH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -171,6 +172,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -181,6 +192,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -307,7 +325,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -319,6 +337,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -767,7 +801,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -788,6 +822,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -800,6 +838,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -894,6 +954,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -926,11 +990,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -980,6 +1062,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1264,10 +1358,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1695,10 +1803,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1741,6 +1853,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2028,7 +2149,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2255,37 +2376,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2385,6 +2475,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3077,6 +3171,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3143,6 +3238,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3684,35 +3780,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3730,6 +3802,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3754,23 +3839,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3811,14 +3914,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 "" @@ -4026,12 +4121,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4042,12 +4136,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4088,11 +4181,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4201,6 +4330,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4256,18 +4389,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4375,14 +4496,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4425,7 +4542,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4652,10 +4770,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4665,6 +4812,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4708,15 +4863,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4768,6 +4923,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4825,8 +4984,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4883,10 +5043,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4967,6 +5129,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5057,33 +5239,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5092,6 +5258,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5108,14 +5278,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5155,7 +5317,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5200,43 +5362,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5485,8 +5615,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5722,6 +5852,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5730,6 +5864,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5773,17 +5921,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5913,6 +6055,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5933,12 +6079,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6273,12 +6419,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6392,10 +6532,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6568,6 +6716,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6686,6 +6841,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7046,24 +7205,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7075,6 +7224,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7114,10 +7271,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7198,6 +7364,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7208,10 +7378,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7635,7 +7801,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7646,9 +7813,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7666,6 +7834,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7687,7 +7859,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7696,6 +7868,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7827,6 +8009,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8058,6 +8261,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8294,6 +8503,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8533,20 +8752,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8556,7 +8773,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8927,6 +9144,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8967,13 +9186,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9662,19 +9875,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9688,23 +9898,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9739,6 +9966,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11373,6 +11607,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11461,15 +11699,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/km_KH/LC_MESSAGES/djangojs.mo b/conf/locale/km_KH/LC_MESSAGES/djangojs.mo index b1bc4b3eb4..b945a4eb78 100644 Binary files a/conf/locale/km_KH/LC_MESSAGES/djangojs.mo and b/conf/locale/km_KH/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/km_KH/LC_MESSAGES/djangojs.po b/conf/locale/km_KH/LC_MESSAGES/djangojs.po index ce5e5e4db6..cf4cce6112 100644 --- a/conf/locale/km_KH/LC_MESSAGES/djangojs.po +++ b/conf/locale/km_KH/LC_MESSAGES/djangojs.po @@ -10,13 +10,14 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Vita_Ccm , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" -"Last-Translator: sarina \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-05-02 15:31+0000\n" +"Last-Translator: Vita_Ccm \n" "Language-Team: Khmer (Cambodia) (http://www.transifex.com/projects/p/edx-platform/language/km_KH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,6 +27,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -34,6 +36,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -328,6 +332,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -384,15 +390,13 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js @@ -452,6 +456,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -486,6 +495,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -858,9 +871,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -868,7 +882,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1202,15 +1216,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1320,18 +1335,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1347,6 +1357,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1354,19 +1365,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1513,6 +1524,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1528,6 +1543,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1589,6 +1608,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1618,6 +1641,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1642,3 +1685,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/kn/LC_MESSAGES/django.mo b/conf/locale/kn/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..94aae9f663 Binary files /dev/null and b/conf/locale/kn/LC_MESSAGES/django.mo differ diff --git a/conf/locale/kn/LC_MESSAGES/django.po b/conf/locale/kn/LC_MESSAGES/django.po new file mode 100644 index 0000000000..63e1f8aeed --- /dev/null +++ b/conf/locale/kn/LC_MESSAGES/django.po @@ -0,0 +1,12576 @@ +# #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Kannada (http://www.transifex.com/projects/p/edx-platform/language/kn/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Kannada (http://www.transifex.com/projects/p/edx-platform/language/kn/) +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# messages.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2013 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-05-05 13:09+0000\n" +"Last-Translator: sarina \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/edx-platform/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 1.3\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Translators: "Open Ended Panel" appears on a tab that, when clicked, opens +#. up a panel that +#. displays information about open-ended problems that a user has submitted or +#. needs to grade +#: cms/djangoapps/contentstore/utils.py common/lib/xmodule/xmodule/tabs.py +msgid "Open Ended Panel" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "Honor Code Certificate" +msgstr "" + +#: common/djangoapps/course_modes/views.py common/djangoapps/student/views.py +msgid "Enrollment is closed" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment mode not supported" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Invalid amount selected." +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "No selected price or selected price is too low." +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Community TA" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "" +"Your account has been disabled. If you believe this was done in error, " +"please contact us at {link_start}{support_email}{link_end}" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "Disabled Account" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Male" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Female" +msgstr "" + +#. Translators: 'Other' refers to the student's gender +#. Translators: 'Other' refers to the student's level of education +#: common/djangoapps/student/models.py common/djangoapps/student/models.py +msgid "Other" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Doctorate" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Master's or professional degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Bachelor's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Associate's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Secondary/high school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Junior secondary/junior high/middle school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Elementary/primary school" +msgstr "" + +#. Translators: 'None' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "None" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id not specified" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id is invalid" +msgstr "" + +#: common/djangoapps/student/views.py +#: lms/templates/courseware/course_about.html +msgid "Course is full" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You are not enrolled in this course" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Enrollment action is invalid" +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "There was an error receiving your login information. Please email us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has been temporarily locked due to excessive login failures. " +"Try again later." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Too many failed login attempts. Try again later." +msgstr "" + +#: common/djangoapps/student/views.py lms/templates/provider_login.html +msgid "Email or password is incorrect." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has not been activated. We have sent another activation " +"message. Please check your e-mail for the activation instructions." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please enter a username" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please choose an option" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "User with username {} does not exist" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully disabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully reenabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unexpected account status" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Public Username '{username}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Email '{email}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Error (401 {field}). E-mail us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Accepting Terms of Service is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Agreeing to the Honor Code is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Email cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail is required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Could not send activation e-mail." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unknown error. Please e-mail us to let us know how it happened." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "No inactive user with this e-mail exists" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unable to send reactivation email" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Invalid password" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail address required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with this e-mail already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Old email is the same as the new email." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Name required" +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Invalid ID" +msgstr "" + +#. Translators: the translation for "LONG_DATE_FORMAT" must be a format +#. string for formatting dates in a long form. For example, the +#. American English form is "%A, %B %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "LONG_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "DATE_TIME_FORMAT" must be a format +#. string for formatting dates with times. For example, the American +#. English form is "%b %d, %Y at %H:%M". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "DATE_TIME_FORMAT" +msgstr "" + +#. Translators: the translation for "SHORT_DATE_FORMAT" must be a +#. format string for formatting dates in a brief form. For example, +#. the American English form is "%b %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "SHORT_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "TIME_FORMAT" must be a format +#. string for formatting times. For example, the American English +#. form is "%H:%M:%S". See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "TIME_FORMAT" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "AM" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "PM" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Monday Februrary 10, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Monday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Tuesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Wednesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Thursday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Friday Februrary 14, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Friday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Saturday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Sunday" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jan 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Feb 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Mar 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Apr 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "May 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "May" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jun 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jul 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Aug 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Sep 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Oct 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Nov 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Dec 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "January 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "January" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "February 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "February" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "March 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "March" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "April 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "April" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "May 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "May" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "June 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "June" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "July 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "July" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "August 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "August" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "September 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "September" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "October 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "October" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "November 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "November" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "December 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "December" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Invalid Length ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or more" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or less" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Must be more complex ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more uppercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more lowercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more digits" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more punctuation characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more non ascii characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more unique words" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Too similar to a restricted dictionary word." +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +msgid "Cannot rescore problems with possible file submissions" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "correct" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incorrect" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incomplete" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +msgid "unanswered" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "processing" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your file(s) have been submitted. As soon as your submission is graded, this" +" message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your answer has been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Submitted. As soon as a response is returned, this message will be replaced " +"by that feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Error {err} in evaluating hint function {hintfn}." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "(Source code line unavailable)" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "See XML source line {sourcenum}." +msgstr "" + +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +msgid "There was a problem with the staff answer to this problem." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{student_answer}' as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use variables ({bad_variables}) in numerical problems." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "factorial function evaluated outside its domain:'{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid math syntax: '{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use complex numbers in range tolerance problems" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: complex boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: empty boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "CustomResponse: check function returned an invalid dictionary!" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"Unable to deliver your submission to grader (Reason: {error_msg}). Please " +"try again later." +msgstr "" + +#. Translators: 'grader' refers to the edX automatic code grader. +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/capa/capa/responsetypes.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Invalid grader reply. Please contact the course staff." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: {bad_input} not permitted in answer." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"factorial function not permitted in answer for this problem. Provided answer" +" was: {bad_input}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula" +msgstr "" + +#. Translators: 'SchematicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "The Staff answer could not be interpreted as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{given_answer}' as a number." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Final Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Warning: The problem has been reset to its initial state!" +msgstr "" + +#. Translators: Following this message, there will be a bulleted list of +#. items. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"The problem's state was corrupted by an invalid submission. The submission " +"consisted of:" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "If this error persists, please contact the course staff." +msgstr "" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem is closed." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be reset before it can be checked again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You must wait at least {wait} seconds between submissions." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + +#. Translators: {msg} will be replaced with a problem's error message. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Error: {msg}" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + +#. Translators: 'rescoring' refers to the act of re-submitting a student's +#. solution so it can get a new score. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem's definition does not support rescoring." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be answered before it can be graded again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem needs to be reset prior to save." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Your answers have been saved." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Your answers have been saved but not graded. Click 'Check' to grade them." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Refresh the page and make an attempt before resetting." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"We're sorry, there was an error with processing your request. Please try " +"reloading your page and trying again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"The state of this problem has changed since you loaded this page. Please " +"refresh your page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "General" +msgstr "" + +#. Translators: TBD stands for 'To Be Determined' and is used when a course +#. does not yet have an announced start date. +#: common/lib/xmodule/xmodule/course_module.py +msgid "TBD" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: 'Courseware' refers to the tab in the courseware that leads to +#. the content of a course +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/courseware/courseware-error.html +msgid "Courseware" +msgstr "" + +#. Translators: "Course Info" is the name of the course's information and +#. updates page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Course Info" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Progress" is the name of the student's course progress page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/peer_grading/peer_grading.html +msgid "Progress" +msgstr "" + +#. Translators: "Wiki" is the name of the course's wiki page +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/course_wiki/views.py +#: lms/templates/wiki/base.html +msgid "Wiki" +msgstr "" + +#. Translators: "Discussion" is the title of the course forum page +#. Translators: 'Discussion' refers to the tab in the courseware that leads to +#. the discussion forums +#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +msgid "Discussion" +msgstr "" + +#: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Textbooks" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Staff grading" appears on a tab that allows +#. staff to view open-ended problems that require staff grading +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/instructor/staff_grading.html +msgid "Staff grading" +msgstr "" + +#. Translators: "Peer grading" appears on a tab that allows +#. students to view open-ended problems that require grading +#: common/lib/xmodule/xmodule/tabs.py +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 +msgid "Syllabus" +msgstr "" + +#. Translators: 'Instructor' appears on the tab that leads to the instructor +#. dashboard, which is +#. a portal where an instructor can get data and perform various actions on +#. their course +#: common/lib/xmodule/xmodule/tabs.py +msgid "Instructor" +msgstr "" + +#. Translators: "Self" is used to denote an openended response that is self- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Self" +msgstr "" + +#. Translators: "AI" is used to denote an openended response that is machine- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "AI" +msgstr "" + +#. Translators: "Peer" is used to denote an openended response that is peer- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Peer" +msgstr "" + +#. Translators: "Not started" is used to communicate to a student that their +#. response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Not started." +msgstr "" + +#. Translators: "Being scored." is used to communicate to a student that their +#. response +#. are in the process of being scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Being scored." +msgstr "" + +#. Translators: "Scoring finished" is used to communicate to a student that +#. their response +#. have been scored, but the full scoring process is not yet complete +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scoring finished." +msgstr "" + +#. Translators: "Complete" is used to communicate to a student that their +#. openended response has been fully scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Complete." +msgstr "" + +#. Translators: "Scored rubric" appears to a user as part of a longer +#. string that looks something like: "Scored rubric from grader 1". +#. "Scored" is an adjective that modifies the noun "rubric". +#. That longer string appears when a user is viewing a graded rubric +#. returned from one of the graders of their openended response problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scored rubric" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "" +"You have attempted this question {number_of_student_attempts} times. You are" +" only allowed to attempt it {max_number_of_attempts} times." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "The problem state got out-of-sync. Please try reloading the page." +msgstr "" + +#. Translators: "Self-Assessment" refers to the self-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Self-Assessment" +msgstr "" + +#. Translators: "Peer-Assessment" refers to the peer-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Peer-Assessment" +msgstr "" + +#. Translators: "Instructor-Assessment" refers to the instructor-assessed mode +#. of openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Instructor-Assessment" +msgstr "" + +#. Translators: "AI-Assessment" refers to the machine-graded mode of openended +#. evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "AI-Assessment" +msgstr "" + +#. Translators: 'tag' is one of 'feedback', 'submission_id', +#. 'grader_id', or 'score'. They are categories that a student +#. responds to when filling out a post-assessment survey +#. of his or her grade from an openended problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Could not find needed tag {tag_name} in the survey responses. Please try " +"submitting again." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "There was an error saving your feedback. Please contact course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Couldn't submit feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Unable to save your feedback. Please try again later." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your submission." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Unable to submit your submission to the grader. Please try again later." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error getting feedback from grader." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "No feedback available from grader." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error handling action. Please try again." +msgstr "" + +#. Translators: this string appears once an openended response +#. is submitted but before it has been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: "Not started" communicates to a student that their response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Not started" +msgstr "" + +#. Translators: "In progress" communicates to a student that their response +#. is currently in the grading process +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "In progress" +msgstr "" + +#. Translators: "Done" communicates to a student that their response +#. has been fully graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Done" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We could not find a file in your submission. Please try choosing a file or " +"pasting a URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We are having trouble saving your file. Please try another file or paste a " +"URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/self_assessment_module.py +msgid "Error saving your score. Please notify course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Can't receive transcripts from Youtube for {youtube_id}. Status code: " +"{status_code}." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Can't find any transcripts on the Youtube service." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "We support only SubRip (*.srt) transcripts format." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Something wrong with SubRip transcripts file during parsing. Inner message " +"is {error_message}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Something wrong with SubRip transcripts file during parsing." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "A YouTube URL or a link to a file hosted anywhere on the web." +msgstr "" + +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Navigation" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "About these documents" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Index" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Search" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/copyright.html +msgid "Copyright" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: " +"{grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "students" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "questions" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{num_students} student(s) opened Subsection {subsection_num}: " +"{subsection_name}" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{problem_info_x} {problem_info_n} - {count_grade} {students} " +"({percent:.0f}%: {grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#. Translators: this string includes wiki markup. Leave the ** and the _ +#. alone. +#: lms/djangoapps/course_wiki/views.py +msgid "This is the wiki for **{organization}**'s _{course_name}_." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Course page automatically created." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Welcome to the edX Wiki" +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Visit a course wiki to add an article." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} does not exist." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} has never accessed problem {location}" +msgstr "" + +#: lms/djangoapps/courseware/features/video.py lms/templates/video.html +msgid "ERROR: No playable video sources found!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Path {0} doesn't exist, please create it, or configure a different path with" +" GIT_REPO_DIR" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Non usable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to get git log" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "git clone or pull failed!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to run import command." +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "The underlying module store does not support import." +msgstr "" + +#. Translators: This is an error message when they ask for a +#. particular version of a git repository and that version isn't +#. available from the remote source they specified +#: lms/djangoapps/dashboard/git_import.py +msgid "The specified remote branch is not available." +msgstr "" + +#. Translators: Error message shown when they have asked for a git +#. repository branch, a specific version within a repository, that +#. doesn't exist, or there is a problem changing to it. +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to switch to specified branch. Please check your branch name." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}, error {1}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "fixed password" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "All ok!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide full name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email must end in" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed - email {0} already exists as external_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Password must be supplied if not using certificates" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email address required (not username)" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Oops, failed to create user {0}, IntegrityError" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "User {0} created successfully!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with email address {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with username {0} - {1}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted user {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Statistic" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Value" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Site statistics" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Total number of users" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Courses loaded in the modulestore" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/templates/tracking_log.html +msgid "username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "email" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Repair Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Create User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Delete User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "The git repo location should end with '.git', and be a valid url" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Added Course" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Refusing to import. GIT_IMPORT_WITH_XMLMODULESTORE is not turned on, and it " +"is generally not safe to import into an XMLModuleStore with multithreaded. " +"We recommend you enable the MongoDB based module store instead, unless this " +"is a development environment." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "" +"The course {0} already exists in the data directory! (reloading anyway)" +msgstr "" + +#. Translators: unable to download the course content from +#. the source git repository. Clone occurs if this is brand +#. new, and pull is when it is being updated from the +#. source. +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Unable to clone or pull repository. Please check your url. Output was: {0!r}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed to clone repository to {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Successfully switched to branch: {branch_name}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Loaded course {0} {1}
Errors:" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: cms/templates/index.html cms/templates/settings.html +msgid "Course Name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Directory/ID" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Git Commit" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Change" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Editor" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Information about all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Error - cannot get course with ID {0}
{1}
" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "course_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# enrolled" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# staff" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "instructors" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Enrollment information for all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "role" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "full_name" +msgstr "" + +#: lms/djangoapps/dashboard/management/commands/git_add_course.py +msgid "" +"Import the specified git repository and optional branch into the modulestore" +" and optionally specified directory." +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with email address" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with username" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Failed in authenticating" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Unable to clone or pull repository" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Error - cannot get course with ID" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Re-open thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Close thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Title can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Body can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Comment level too deep" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "allowed file types are '%(file_types)s'" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "maximum upload file size is %(file_size)sK" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "" +"Error uploading file. Please contact the site administrator. Thank you." +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Good" +msgstr "" + +#: lms/djangoapps/django_comment_client/forum/views.py +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "All Groups" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "User does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Task is already running." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Username" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Name" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Email" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Language" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Location" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Birth Year" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "Gender" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Level of Education" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +msgid "Mailing Address" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Goals" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Complete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Incomplete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Your grade report is being generated! You can view the status of the " +"generation task in the 'Pending Instructor Tasks' section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"A grade report generation task is already in progress. Check the 'Pending " +"Instructor Tasks' table for the status of the task. When completed, the " +"report will be available for download in the table below." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully changed due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully reset due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Membership" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Student Admin" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Extensions" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Data Download" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/courseware/instructor_dashboard.html +msgid "Analytics" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Course Statistics At A Glance" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found a single student. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find student with that email or username." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Summary Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Raw Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for resetting \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found module. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname: {url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Deleted student module state for {state}!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to delete module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Module state successfully reset!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't reset module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{key}\" for student {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{key}\": {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Progress page for username: {username} with email address: {email}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Assignment Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Please enter an assignment name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Invalid assignment name '{name}'" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "External email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades for assignment \"{name}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Staff" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Instructors" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student profile data for course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found {num} records to dump." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student state for problem {problem}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Beta Testers" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades from {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook defined in course metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook url defined in settings.FEATURES" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No gradebook name defined in course remote_gradebook metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to communicate with gradebook server at {url}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: {err}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Remote gradebook response for {action}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Full name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Roles" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Forum {name}s in course {id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown rolename \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown username \"{username}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" does not have rolename \"{rolename}\", cannot " +"remove" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Removed \"{username}\" from \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: user \"{username}\" already has rolename \"{rolename}\", cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" should first be added as staff before adding as a" +" forum administrator, cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Added \"{username}\" to \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "{title} in course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "ID" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py cms/templates/register.html +#: lms/templates/dashboard.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "Full Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "edX email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Un-enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\", module " +"\"{problem}\" and student \"{student}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\" and module " +"\"{problem}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unable to parse date: " +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Couldn't find module for url: {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor/views/tools.py +msgid "Extended Due Date" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Users with due date extensions for {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unit" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Due date extensions for {0} {1} ({2})" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "rescored" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "reset" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/templates/wiki/plugins/attachments/index.html wiki/models/article.py +msgid "deleted" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "emailed" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks.py +msgid "graded" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#: lms/djangoapps/instructor_task/views.py +msgid "No status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No task_output information found for instructor_task {0}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No message provided" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "Invalid task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No progress status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_input information found for instructor_task {0}: {1}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} and {succeeded} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Progress: {action} {succeeded} of {attempted} so far" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find submission to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any students with submissions to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for any of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem {action} for {succeeded} of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any recipients to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message failed to be {action} for any of {attempted} recipients " +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message successfully {action} for {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Message {action} for {succeeded} of {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Status: {action} {succeeded} of {attempted}" +msgstr "" + +#. Translators: {skipped} is a count. This message is appended to task +#. progress status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (skipping {skipped})" +msgstr "" + +#. Translators: {total} is a count. This message is appended to task progress +#. status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (out of {total})" +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +"\n" +" Dear %(student_name)s,\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +" \n" +" Congratulations on earning your certificate in %(course_name)s!\n" +" Since you have an account on LinkedIn, you can display your hard earned\n" +" credential for your colleagues to see. Click the button below to add the\n" +" certificate to your profile.\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "Add to profile" +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Could not contact the external grading server. Please contact the " +"development team at {email}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Cannot find any open response problems in this course. Have you submitted " +"answers to any open response assessment questions? If not, please do so and " +"return to this page." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "AI Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Peer Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Not yet available" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Automatic Checker" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Instructor Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify course " +"staff." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify your edX" +" point of contact." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "for course {0} and student {1}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View all problems that require peer assessment in this particular course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View ungraded submissions submitted by students for the open ended problems " +"in the course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View open ended problems that you have previously submitted for grading." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "View submissions that have been flagged by students as inappropriate." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +#: lms/djangoapps/open_ended_grading/views.py +msgid "New submissions to grade" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "New grades have been returned" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "Submissions have been flagged for review" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"\n" +" Error with initializing peer grading.\n" +" There has not been a peer grading module created in the courseware that would allow you to grade others.\n" +" Please check back later for this.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Order Payment Confirmation" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Trying to add a different currency into the cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Please visit your dashboard to see your new" +" enrollments." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "[Refund] User-Requested Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Mode {mode} does not exist for {course_id}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Certificate of Achievement, {mode_name} for course {course}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Note - you have up to 2 weeks into the course to unenroll from the Verified " +"Certificate option and receive a full refund. To receive your refund, " +"contact {billing_email}. Please include your order number in your e-mail. " +"Please do NOT include your credit card information." +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order Number" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Customer Name" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Original Transaction" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Amount of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "Service Fees (if any)" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Purchase Time" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order ID" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Status" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +msgid "Quantity" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Unit Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Currency" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: wiki/plugins/attachments/forms.py +msgid "Description" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Comments" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "University" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html +#: cms/templates/widgets/header.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Course" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Announce Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html +msgid "Course Start Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Close Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Period" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Enrolled" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Audit Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Honor Code Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Verified Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue over the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Verified Students Contributing More than the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Dollars Refunded" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Transactions" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Payments Collected" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Successful Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Amount of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You must be logged-in to add to a shopping cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course you requested does not exist." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course {0} is already in your cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "You are already registered in course {0}." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Course added to cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You do not have permission to view this page." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor did not return a required parameter: {0}" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor returned a badly-typed value {0} for param {1}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The payment processor accepted an order whose number is not in our system." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The amount charged by the processor {0} {1} is different than the total cost" +" of the order {2} {3}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor did not accept your payment.\n" +" The decision they returned was {decision},\n" +" and the reason was {reason_code}:{reason_msg}.\n" +" You were not charged. Please try a different form of payment.\n" +" Contact us with payment-related questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a payment confirmation that had inconsistent data!\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" The specific error message is: {msg}.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Due to an error your purchase was charged for a different amount than the order total!\n" +" The specific error message is: {msg}.\n" +" Your credit card has probably been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a corrupted message regarding your charge, so we are\n" +" unable to validate that the message actually came from the payment processor.\n" +" The specific error message is: {msg}.\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Successful transaction." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request is missing one or more required fields." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "One or more fields in the request contains invalid data." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The merchantReferenceCode sent with this authorization request matches the\n" +" merchantReferenceCode of another authorization request that you sent in the last 15 minutes.\n" +" Possible fix: retry the payment after 15 minutes.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Error: General system failure. Possible fix: retry the payment after a few " +"minutes." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received but there was a server timeout.\n" +" This error does not include timeouts between the client and the server.\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but a service did not finish running in time\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The issuing bank has questions about the request. Possible fix: retry with " +"another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Expired card. You might also receive this if the expiration date you\n" +" provided does not match the date the issuing bank has on file.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" General decline of the card. No other information provided by the issuing bank.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Insufficient funds in the account. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Unknown reason" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Issuing bank unavailable. Possible fix: retry again after a few minutes" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Inactive card or card not authorized for card-not-present transactions.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The card has reached the credit limit. Possible fix: retry with another form" +" of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid card verification number. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid account number. Possible fix: retry with another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type is not accepted by the payment processor.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"General decline by the processor. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" There is a problem with our CyberSource merchant configuration. Please let us know at {0}\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The requested amount exceeds the originally authorized amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Processor Failure. Possible fix: retry the payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The authorization has already been captured" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The requested transaction amount must match the previous transaction amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type sent is invalid or does not correlate with the credit card number.\n" +" Possible fix: retry with the same card or another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request ID is invalid." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" You requested a capture through the API, but there is no corresponding, unused authorization record.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The transaction has already been settled or reversed." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The capture or credit is not voidable because the capture or credit information has already been\n" +" submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "You requested a credit for a capture that was previously voided" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but there was a timeout at the payment processor.\n" +" Possible fix: retry the payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource.'\n" +" Possible fix: retry with a different form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Reports" +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "" +"There was an error in your date input. It should be formatted as YYYY-MM-DD" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "No photo ID was provided." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "We couldn't read your name from your photo ID image." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "" +"The name associated with your account and the name on your ID do not match." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "The image of your face was not clear." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "Your face was not visible in your self-photo" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "There was an error verifying your ID photos." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Selected price is not valid number." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "This course doesn't support verified certificates" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "No selected price or selected price is below minimum." +msgstr "" + +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html +msgid "Skip to this view's content" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +#: lms/templates/registration/password_reset_complete.html +msgid "Your Password Reset is Complete" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +msgid "" +"\n" +" Your password has been set. You may go ahead and %(link_start)slog in%(link_end)s now.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Form" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" We're sorry, %(platform_name)s enrollment is not available in your region\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The following errors occurred while processing your registration: " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "You must complete all fields." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The two password fields didn't match." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"We're sorry, our systems seem to be having trouble processing your password " +"reset" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Someone has been made aware of this issue. Please try again shortly. Please %(start_link)scontact us%(end_link)s about any concerns you have.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"Please enter your new password twice so we can verify you typed it in " +"correctly.
Required fields are noted by bold text and an asterisk (*)." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: lms/templates/forgot_password_modal.html lms/templates/login.html +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Required Information" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password Again" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Change My Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your Password Reset Was Unsuccessful" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" The password reset link was invalid, possibly because the link has already been used. Please return to the %(start_link)slogin page%(end_link)s and start the password reset process again.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Help" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: cms/templates/login.html lms/templates/login-sidebar.html +#: lms/templates/register-sidebar.html +msgid "Need Help?" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" View our %(start_link)shelp section for contact information and answers to commonly asked questions%(end_link)s\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"You're receiving this e-mail because you requested a password reset for your" +" user account at edx.org." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet reset your password." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Thanks for using our site!" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "The edX Team" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "Last modified:" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "See all children" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "This article was last modified:" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/create.html.py +msgid "Add new article" +msgstr "" + +#: lms/templates/wiki/create.html +msgid "Create article" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/delete.html +#: lms/templates/wiki/delete.html.py +msgid "Go back" +msgstr "" + +#: lms/templates/wiki/delete.html lms/templates/wiki/delete.html.py +#: lms/templates/wiki/edit.html +msgid "Delete article" +msgstr "" + +#: lms/templates/wiki/delete.html +#: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Delete" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You cannot delete a root article." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You cannot delete this article because you do not have permission to delete " +"articles with children. Try to remove the children manually one-by-one." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You are deleting an article. This means that its children will be deleted as" +" well. If you choose to purge, children will also be purged!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "Articles that will be deleted" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "...and more!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You are deleting an article. Please confirm." +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/wiki/includes/article_menu.html +msgid "Edit" +msgstr "" + +#: lms/templates/wiki/edit.html lms/templates/wiki/edit.html.py +msgid "Save changes" +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/unit.html +msgid "Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this is a control to allow users to exit out of this modal +#. interface (a menu or piece of UI that takes the full focus of the screen) +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/modal/_modal-settings-language.html +#: lms/templates/modal/accessible_confirm.html +msgid "Close" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Wiki Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html +#: lms/templates/modal/_modal-settings-language.html +msgid "window open" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Back to editor" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "History" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"Click each revision to see a list of edited lines. Click the Preview button " +"to see how the article looked at this stage. At the bottom of this page, you" +" can change to a particular revision or merge an old revision with the " +"current one." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "(no log message)" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Preview this revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Auto log:" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Change" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Merge selected with current..." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Switch to selected version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Wiki Revision Preview" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Back to history view" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Switch to this version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge Revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge with current" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"When you merge a revision with the current, all data will be retained from " +"both versions and merged at its approximate location from each revision." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "After this, it's important to do a manual review." +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Create new merged version" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing revision:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing a merge between two revisions:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "This revision has been deleted." +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Restoring to this revision will mark the article as deleted." +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "" +"\n" +" You need to log in or sign up to use this function.\n" +" " +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in or sign up to use this function." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Cheatsheet" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Syntax Help" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"This wiki uses Markdown for styling. There are several " +"useful guides online. See any of the links below for in-depth details:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Markdown: Basics" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quick Markdown Syntax Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Miniature Markdown Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"To create a new wiki article, create a link to it. Clicking the link gives " +"you the creation page." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "[Article Name](wiki:ArticleName)" +msgstr "" + +#. Translators: Do not translate "edX" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Additions:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Math Expression" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Useful examples:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wikipedia" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Wiki" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Huge Header" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Smaller Header" +msgstr "" + +#. Translators: Leave the punctuation, but translate "emphasis" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "*emphasis* or _emphasis_" +msgstr "" + +#. Translators: Leave the punctuation, but translate "strong" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "**strong** or __strong__" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Unordered List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 1" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 2" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Ordered" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quotes" +msgstr "" + +#: lms/templates/wiki/includes/editor_widget.html +msgid "" +"\n" +" Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for help.\n" +" " +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/wiki_plugin.py +msgid "Attachments" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload new file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search and add file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload File" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search files and articles" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"You can reuse files from other articles. These files are subject to updates " +"on other articles which may or may not be a good thing." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"The following files are available for this article. Copy the markdown tag to" +" directly refer to a file from the article text." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Markdown tag" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Uploaded by" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Size" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File History" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Detach" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Replace" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Restore" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "anonymous (IP logged)" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File history" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "revisions" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "There are no attachments for this article." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Invalid course update id." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Course update not found." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " +"configure a different path with GIT_REPO_EXPORT_DIR" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Non writable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"If using http urls, you must provide the username and password in the url. " +"Similar to https://user:pass@github.com/user/course." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to determine branch, repo in detached HEAD mode" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to update or clone git repository." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to export course to xml." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to configure git username and password" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to commit changes. This is usually because there are no changes to be" +" committed" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to push changes. This is usually because the remote repository " +"cannot be contacted" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Bad course location provided" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Missing branch on fresh clone" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command was: {0!r}. Working directory was: {1!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command output was: {0!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Directory already exists, doing a git reset and pull instead of git clone." +msgstr "" + +#: cms/djangoapps/contentstore/utils.py lms/templates/notes.html +msgid "My Notes" +msgstr "" + +#: cms/djangoapps/contentstore/management/commands/git_export.py +msgid "" +"Take the specified course and attempt to export it to a git repository\n" +". Course directory must already be a git repository. Usage: git_export " +msgstr "" + +#: cms/djangoapps/contentstore/views/assets.py +msgid "Upload completed" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Special characters not allowed in organization, course number, and course " +"run." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Unable to create course '{name}'.\n" +"\n" +"{err}" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization, course number," +" and course run. Please change either organization or course number to be " +"unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Please change either the organization or course number so that it is unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization and course " +"number. Please change at least one field to be unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/export_git.py +msgid "Course successfully exported to git repository" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "We only support uploading a .tar.gz file." +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "File upload corrupted. Please try again" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "Could not find the course.xml file in the package." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of {0}" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of '{0}'" +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Incoming video data is empty." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Can't find item by locator." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Transcripts are supported only for \"video\" modules." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Insufficient permissions" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Could not find user by email address '{email}'." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "User {email} has registered but has not yet activated his/her account." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "`role` is required" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Only instructors may create other instructors" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "You may not remove the last instructor from a course" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "unrequested" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "pending" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "granted" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "denied" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Studio user" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "The date when state was last updated" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Current course creator state" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "" +"Optional notes about this user (for example, why course creation access was " +"denied)" +msgstr "" + +#: cms/templates/404.html cms/templates/error.html +#: lms/templates/static_templates/404.html +msgid "Page Not Found" +msgstr "" + +#: cms/templates/404.html lms/templates/static_templates/404.html +msgid "Page not found" +msgstr "" + +#: cms/templates/asset_index.html lms/templates/courseware/courseware.html +#: lms/templates/verify_student/_modal_editname.html +msgid "close" +msgstr "" + +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." +msgstr "" + +#. Translators: this is a verb describing the action of viewing more details +#: cms/templates/container_xblock_component.html +#: lms/templates/wiki/includes/article_menu.html +msgid "View" +msgstr "" + +#: cms/templates/html_error.html lms/templates/module-error.html +msgid "Error:" +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +#: lms/templates/courseware/course_about.html +msgid "Course Number" +msgstr "" + +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Organization:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Number:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Pending" +msgstr "" + +#: cms/templates/login.html lms/templates/login.html +#: lms/templates/university_profile/edge.html +msgid "Forgot password?" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/login.html lms/templates/provider_login.html +#: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Password" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + +#: cms/templates/manage_users.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Admin" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + +#: cms/templates/register.html cms/templates/widgets/header.html +#: lms/templates/index.html +msgid "Sign Up" +msgstr "" + +#: cms/templates/register.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "Public Username" +msgstr "" + +#: cms/templates/register.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "Preferred Language" +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Thanks for activating your account." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "This account has already been activated." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Visit your {link_start}dashboard{link_end} to see your courses." +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html +#: lms/templates/static_templates/tos.html +msgid "Terms of Service" +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/footer.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/privacy.html +msgid "Privacy Policy" +msgstr "" + +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py +msgid "Help" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Register for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sorry, there was an error when trying to register you" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your track:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Certificate of Achievement (ID Verified)" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your contribution for this course (min. $" +msgstr "" + +#: common/templates/course_modes/choose.html +#: lms/templates/verify_student/photo_verification.html +msgid "):" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay? What if I don't meet all the requirements?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"As a not-for-profit, edX uses your contribution to support our mission to " +"provide quality education to everyone around the world, and to improve " +"learning through research. While we have established a minimum fee, we ask " +"that you contribute as much as you can." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"I'd like to pay more than the minimum. Is my contribution tax deductible?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please check with your tax advisor to determine whether your contribution is" +" tax deductible." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What if I can't afford it or don't have the necessary equipment?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"If you can't afford the minimum fee or don't meet the requirements, you can " +"audit the course or elect to pursue an honor code certificate at no cost. If" +" you would like to pursue the honor code certificate, please check the honor" +" code certificate box, tell us why you can't pursue the verified certificate" +" below, and then click the 'Select Certificate' button to complete your " +"registration." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Honor Code Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Explain your situation: " +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please write a few sentences about why you'd like to opt out of the paid " +"verified certificate to pursue the honor code certificate:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Verified Registration Requirements" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To upgrade your registration and work towards a Verified Certificate of " +"Achievement, you will need a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To register for a Verified Certificate of Achievement option, you will need " +"a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What is an ID Verified Certificate?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"An ID Verified Certificate requires proof of your identity through your " +"photo and ID and is checked throughout the course to verify that it is you " +"who earned the passing grade." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "or" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Audit This Course" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up to audit this course for free and track your own progress." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Audit" +msgstr "" + +#: lms/templates/admin_dashboard.html +msgid "{platform_name}-wide Summary" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/open_ended_problems/combined_notifications.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Instructions" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "Collapse Instructions" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Guided Discussion" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Hide Annotations" +msgstr "" + +#: lms/templates/contact.html lms/templates/static_templates/about.html +#: lms/templates/static_templates/about.html +msgid "Vision" +msgstr "" + +#: lms/templates/contact.html +msgid "Faq" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +msgid "Press" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/contact.html +msgid "Contact" +msgstr "" + +#: lms/templates/contact.html +msgid "Class Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"We are always seeking feedback to improve our courses. If you are an " +"enrolled student and have any questions, feedback, suggestions, or any other" +" issues specific to a particular class, please post on the discussion forums" +" of that class." +msgstr "" + +#: lms/templates/contact.html +msgid "General Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." +msgstr "" + +#: lms/templates/contact.html +msgid "Technical Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have suggestions/feedback about the overall {platform_name} platform," +" or are facing general technical issues with the platform (e.g., issues with" +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Media" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"Please visit our {link_start}media/press page{link_end} for more " +"information. For any media or press inquiries, please email {email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Universities" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you are a university wishing to collaborate with or if you have questions" +" about {platform_name}, please email {email}." +msgstr "" + +#: lms/templates/course.html +msgid "New" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Dashboard" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/courseware/course_about.html +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "An error occurred. Please try again later." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please verify your new email" +msgstr "" + +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "edit" +msgstr "" + +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Reset Password" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Current Courses" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't registered for any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Find courses now!" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't been enrolled in any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Course-loading errors" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Email Settings for {course_number}" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Receive course emails" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Save Settings" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Password Reset Email Sent" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"An email has been sent to {email}. Follow the link in the email to change " +"your password." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Change Email" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please enter your new email address:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please confirm your password:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"We will send a confirmation to both {email} and your new email as part of " +"the process." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change your name" +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"To uphold the credibility of your {platform} {cert_name_short}, all name " +"changes will be logged and recorded." +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"Enter your desired full name, as it will appear on your {platform} " +"{cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/verify_student/_modal_editname.html +msgid "Reason for name change:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change My Name" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +" {course_number}? " +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Unregister" +msgstr "" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +msgid "E-mail change failed" +msgstr "" + +#: lms/templates/email_change_failed.html +msgid "We were unable to send a confirmation email to {email}" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +#: lms/templates/invalid_email_key.html +msgid "Go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "E-mail change successful!" +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "You should see your new email in your {link_start}dashboard{link_end}." +msgstr "" + +#: lms/templates/email_exists.html +msgid "An account with the new e-mail address already exists." +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Student Enrollment Form" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Course: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Add new students" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Existing students:" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "New students added: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Students rejected: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Debug: " +msgstr "" + +#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +msgid "External Authentication failed" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Due:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Status:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have successfully gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have not yet gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Completed puzzles" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Level" +msgstr "" + +#: lms/templates/folditbasic.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Submitted" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Puzzle Leaderboard" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "User" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Score" +msgstr "" + +#: lms/templates/footer.html +msgid "About" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/jobs.html +msgid "Jobs" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/faq.html +#: lms/templates/static_templates/faq.html +msgid "FAQ" +msgstr "" + +#: lms/templates/footer.html +msgid "{platform_name} Logo" +msgstr "" + +#: lms/templates/footer.html +msgid "" +"{platform_name} is a non-profit created by founding partners {Harvard} and " +"{MIT} whose mission is to bring the best of higher education to students of " +"all ages anywhere in the world, wherever there is Internet access. " +"{platform_name}'s free online MOOCs are interactive and subjects include " +"computer science, public health, and artificial intelligence." +msgstr "" + +#: lms/templates/footer.html +msgid "© 2014 {platform_name}, some rights reserved." +msgstr "" + +#: lms/templates/footer.html +msgid "Terms of Service and Honor Code" +msgstr "" + +#: lms/templates/forgot_password_modal.html +#: lms/templates/forgot_password_modal.html +msgid "Password Reset" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "" +"Please enter your e-mail address below, and we will e-mail instructions for " +"setting a new password." +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Your E-mail Address" +msgstr "" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +msgid "This is the e-mail address you used to register with {platform}" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Reset My Password" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Email is incorrect." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +msgid "{platform_name} Help" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"For questions on course lectures, homework, tools, or materials for " +"this course, post in the {link_start}course discussion " +"forum{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have general questions about {platform_name}? You can find " +"lots of helpful information in the {platform_name} " +"{link_start}FAQ{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have a question about something specific? You can contact " +"the {platform_name} general support team directly:" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Please note: The {platform_name} support team is English speaking. While we " +"will do our best to address your inquiry in any language, our responses will" +" be in English." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/login.html +#: lms/templates/provider_login.html lms/templates/provider_login.html +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "E-mail" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Briefly describe your issue" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Tell us the details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +#: lms/templates/instructor/staff_grading.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Submit" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Thank You!" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Thank you for your inquiry or feedback. We typically respond to a request " +"within one business day (Monday to Friday, {open_time} UTC to {close_time} " +"UTC.) In the meantime, please review our {link_start}detailed FAQs{link_end}" +" where most questions have already been answered." +msgstr "" + +#: lms/templates/help_modal.html +msgid "problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a Problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of the problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Details of the problem you are encountering" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc." +msgstr "" + +#: lms/templates/help_modal.html +msgid "suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a Suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of your suggestion" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/module-error.html +msgid "Details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a Question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief summary of your question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "An error has occurred." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please {link_start}send us e-mail{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please try again later." +msgstr "" + +#: lms/templates/index.html +msgid "Free courses from {university_name}" +msgstr "" + +#: lms/templates/index.html +msgid "The Future of Online Education" +msgstr "" + +#: lms/templates/index.html +msgid "For anyone, anywhere, anytime" +msgstr "" + +#: lms/templates/index.html +msgid "Stay up to date with all {platform_name} has to offer!" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Invalid email change key" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "This e-mail key is not valid. Please check:" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "" +"Was this key already used? Check whether the e-mail change has already " +"happened." +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Did your e-mail client break the URL into two lines?" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "The keys are valid for a limited amount of time. Has the key expired?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Helpful Information" +msgstr "" + +#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +msgid "Login via OpenID" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "" +"You can now start learning with {platform_name} by logging in with your OpenID account." +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Not Enrolled?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Sign up for {platform_name} today!" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Looking for help in logging in or with your {platform_name} account?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "View our help section for answers to commonly asked questions." +msgstr "" + +#: lms/templates/login.html +msgid "Log into your {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Log into My {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Access My Courses" +msgstr "" + +#: lms/templates/login.html lms/templates/register.html +msgid "Processing your account information…" +msgstr "" + +#: lms/templates/login.html +msgid "Please log in" +msgstr "" + +#: lms/templates/login.html +msgid "to access your account and courses" +msgstr "" + +#: lms/templates/login.html +msgid "We're Sorry, {platform_name} accounts are unavailable currently" +msgstr "" + +#: lms/templates/login.html +msgid "The following errors occurred while logging you in:" +msgstr "" + +#: lms/templates/login.html +msgid "Your email or password is incorrect" +msgstr "" + +#: lms/templates/login.html +msgid "" +"Please provide the following information to log into your {platform_name} " +"account. Required fields are noted by bold text " +"and an asterisk (*)." +msgstr "" + +#: lms/templates/login.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +msgid "example: username@domain.com" +msgstr "" + +#: lms/templates/login.html +msgid "Account Preferences" +msgstr "" + +#: lms/templates/login.html +msgid "Remember me" +msgstr "" + +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS +#: lms/templates/lti.html +msgid "External resource" +msgstr "" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + +#: lms/templates/lti.html +msgid "View resource in a new window" +msgstr "" + +#: lms/templates/lti.html +msgid "" +"Please provide launch_url. Click \"Edit\", and fill in the required fields." +msgstr "" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable or Reenable student accounts" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Username:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Reenable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Students whose accounts have been disabled" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "(reload your page to refresh)" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "working..." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"This page features MathJax technology to render mathematical formulae. To " +"make math accessibile, we suggest using the MathPlayer plugin. Please visit " +"the {link_start}MathPlayer Download Page{link_end} to download the plugin " +"for your browser." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"Your browser does not support the MathPlayer plugin. To use MathPlayer, " +"please use Internet Explorer 6 through 9." +msgstr "" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" +msgstr "" + +#: lms/templates/module-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/module-error.html +msgid "Raw data:" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Accepted" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Error" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Rejected" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Pending name changes" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/modal/accessible_confirm.html +msgid "Confirm" +msgstr "" + +#: lms/templates/name_changes.html +msgid "[Reject]" +msgstr "" + +#: lms/templates/navigation.html +msgid "Global Navigation" +msgstr "" + +#: lms/templates/navigation.html +msgid "Find Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Dashboard for:" +msgstr "" + +#: lms/templates/navigation.html +msgid "More options dropdown" +msgstr "" + +#: lms/templates/navigation.html +msgid "Log Out" +msgstr "" + +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + +#: lms/templates/navigation.html +msgid "How it Works" +msgstr "" + +#: lms/templates/navigation.html lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/courseware/courses.html +msgid "Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Schools" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Register Now" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Log in" +msgstr "" + +#: lms/templates/navigation.html +msgid "" +"Warning: Your browser is not fully supported. We strongly " +"recommend using {chrome_link_start}Chrome{chrome_link_end} or " +"{ff_link_start}Firefox{ff_link_end}." +msgstr "" + +#: lms/templates/notes.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "You do not have any notes." +msgstr "" + +#: lms/templates/problem.html +msgid "Reset" +msgstr "" + +#: lms/templates/problem.html +msgid "Show Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "Reveal Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "You have used {num_used} of {num_total} submissions" +msgstr "" + +#: lms/templates/provider_login.html +#: lms/templates/university_profile/edge.html +msgid "Log In" +msgstr "" + +#: lms/templates/provider_login.html +msgid "" +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." +msgstr "" + +#: lms/templates/provider_login.html +msgid "Return To %s" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Preferences for {platform_name}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update my {platform_name} Account" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Processing your account information …" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Welcome {username}! Please set your preferences below" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"We're sorry, {platform_name} enrollment is not available in your region" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "The following errors occurred while processing your registration:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"Required fields are noted by bold text and an " +"asterisk (*)." +msgstr "" + +#: lms/templates/register-shib.html lms/templates/signup_modal.html +msgid "Enter a public username:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "example: JaneDoe" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "Will be shown in any discussions or forums you participate in" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Account Acknowledgements" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Terms of Service{link_end}" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Honor Code{link_end}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update My Account" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Registration Help" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Already registered?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Click here to log in." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Registering with {platform_name} gives you access to all of our current and " +"future free courses. Not ready to take a course just yet? Registering puts " +"you on our mailing list - we will update you as courses are added." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Next Steps" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"You will receive an activation email. You must click on the activation link" +" to complete the process. Don't see the email? Check your spam folder and " +"mark emails from class.stanford.edu as 'not spam', since you'll want to be " +"able to receive email from your courses." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"As part of joining {platform_name}, you will receive an activation email. " +"You must click on the activation link to complete the process. Don't see " +"the email? Check your spam folder and mark {platform_name} emails as 'not " +"spam'. At {platform_name}, we communicate mostly through email." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Need help in registering with {platform_name}?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "View our FAQs for answers to commonly asked questions." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Once registered, most questions can be answered in the course specific " +"discussion forums or through the FAQs." +msgstr "" + +#: lms/templates/register.html +msgid "Register for {platform_name}" +msgstr "" + +#: lms/templates/register.html +msgid "Create My {platform_name} Account" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome!" +msgstr "" + +#: lms/templates/register.html +msgid "Register below to create your {platform_name} account" +msgstr "" + +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + +#: lms/templates/register.html +msgid "Please complete the following fields to register for an account. " +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "cannot be changed later" +msgstr "" + +#: lms/templates/register.html lms/templates/verify_student/face_upload.html +msgid "example: Jane Doe" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Needed for any certificates you may earn" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome {username}" +msgstr "" + +#: lms/templates/register.html +msgid "Enter a Public Display Name:" +msgstr "" + +#: lms/templates/register.html +msgid "Public Display Name" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Extra Personal Information" +msgstr "" + +#: lms/templates/register.html +msgid "City" +msgstr "" + +#: lms/templates/register.html +msgid "example: New York" +msgstr "" + +#: lms/templates/register.html +msgid "Country" +msgstr "" + +#: lms/templates/register.html +msgid "Highest Level of Education Completed" +msgstr "" + +#: lms/templates/register.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Year of Birth" +msgstr "" + +#: lms/templates/register.html +msgid "Please share with us your reasons for registering with {platform_name}" +msgstr "" + +#: lms/templates/register.html lms/templates/university_profile/edge.html +msgid "Register" +msgstr "" + +#: lms/templates/register.html lms/templates/signup_modal.html +msgid "Create My Account" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "Re-subscribe Successful!" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "" +"You have re-enabled forum notification emails from {platform_name}. Click " +"{dashboard_link_start}here{link_end} to return to your dashboard. " +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Previous" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +msgid "Section Navigation" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Next" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Sign Up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname@domain.com" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname (shown on forums)" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. Your Name (for certificates)" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Welcome {name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Ed. Completed" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Year of birth" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Mailing address" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Goals in signing up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Already have an account?" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Login." +msgstr "" + +#. Translators: The 'Group' here refers to the group of users that has been +#. sorted into group_id +#: lms/templates/split_test_staff_view.html +msgid "Group {group_id}" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug Info" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission history" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "{platform_name} Content Quality Assessment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Optional tag (eg \"done\" or \"broken\"):" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Add comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug" +msgstr "" + +#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +msgid "Module Fields" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "XML attributes" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission History Viewer" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "User:" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "View History" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "{course_number} Textbook" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "Textbook Navigation" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Previous page" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Next page" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Sysadmin Dashboard" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Users" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Staffing and Enrollment" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Logs" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "User Management" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Email or username" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Create user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download list of all users (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Check and repair external authentication map" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "" +"Go to each individual course's Instructor dashboard to manage course " +"enrollment." +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Manage course staff and instructors" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download staff and instructor list (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Administer Courses" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Location" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware and branch is a specific version within that repository +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Branch (optional)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Load new course from github" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Course ID or dir" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete course from site" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Django PID" +msgstr "" + +#. Translators: A version number appears after this string +#: lms/templates/sysadmin_dashboard.html +msgid "Platform Version" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Date" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Course ID" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Action" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Recent git load activity for" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "git action" +msgstr "" + +#: lms/templates/textannotation.html +msgid "Source:" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "Tracking Log" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "datetime" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "ipaddr" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "source" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "type" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "Unsubscribe Successful!" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "" +"You will no longer receive forum notification emails from {platform_name}. " +"Click {dashboard_link_start}here{link_end} to return to your dashboard. If " +"you did not mean to do this, click {undo_link_start}here{link_end} to re-" +"subscribe." +msgstr "" + +#: lms/templates/using.html +msgid "Using the system" +msgstr "" + +#: lms/templates/using.html +msgid "" +"During video playback, use the subtitles and the scroll bar to navigate. " +"Clicking the subtitles is a fast way to skip forwards and backwards by small" +" amounts." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you are on a low-resolution display, the left navigation bar can be " +"hidden by clicking on the set of three left arrows next to it." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you need bigger or smaller fonts, use your browsers settings to scale " +"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" +" ctrl-minus at the same time." +msgstr "" + +#: lms/templates/video.html +msgid "Skip to a navigable version of this video's transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Loading video player" +msgstr "" + +#: lms/templates/video.html +msgid "Play video" +msgstr "" + +#: lms/templates/video.html +msgid "Video position" +msgstr "" + +#: lms/templates/video.html +msgid "Play" +msgstr "" + +#: lms/templates/video.html +msgid "Speeds" +msgstr "" + +#: lms/templates/video.html +msgid "Speed" +msgstr "" + +#: lms/templates/video.html +msgid "Volume" +msgstr "" + +#: lms/templates/video.html +msgid "Fill browser" +msgstr "" + +#: lms/templates/video.html +msgid "HD off" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Turn off captions" +msgstr "" + +#: lms/templates/video.html +msgid "Skip to end of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "" +"Activating an item in this group will spool the video to the corresponding " +"time point. To skip transcript, go to previous item." +msgstr "" + +#: lms/templates/video.html +msgid "Go back to start of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Download video" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Download transcript" +msgstr "" + +#: lms/templates/video.html +msgid "Download Handout" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Your words:" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Total number of words:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Open Response" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Assessments:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Hide Question" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "New Submission" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Next Step" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "" +"Staff Warning: Please note that if you submit a duplicate of text that has " +"already been submitted for grading, it will not show up in the staff grading" +" view. It will be given the same grade that the original received " +"automatically, and will be returned within 30 minutes if the original is " +"already graded, or when the original is graded if not." +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_legend.html +msgid "Legend" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Submitted Rubric" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Toggle Full Rubric" +msgstr "" + +#. Translators: an example of what this string will look +#. like is: "Scored rubric from grader 1", where +#. "Scored rubric" replaces {result_of_task} and +#. "1" replaces {number}. +#. This string appears when a user is viewing one of +#. their graded rubrics for an openended response problem. +#. the number distinguishes between the different +#. graded rubrics the user might have received +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "{result_of_task} from grader {number}" +msgstr "" + +#. Translators: "See full feedback" is the text of +#. a link that allows a user to see more detailed +#. feedback from a self, peer, or instructor +#. graded openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +msgid "See full feedback" +msgstr "" + +#. Translators: this text forms a link that, when +#. clicked, allows a user to respond to the feedback +#. the user received on his or her openended problem +#. Translators: when "Respond to Feedback" is clicked, a survey +#. appears on which a user can respond to the feedback the user +#. received on an openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Respond to Feedback" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "How accurate do you find this feedback?" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "No Opinion" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Additional comments:" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Submit Feedback" +msgstr "" + +#. Translators: "Response" labels an area that contains the user's +#. Response to an openended problem. It is a noun. +#. Translators: "Response" labels a text area into which a user enters +#. his or her response to a prompt from an openended problem. +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Response" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Unanswered" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Skip Post-Assessment" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_combined_rubric.html +msgid "{num} point: {explanatory_text}" +msgid_plural "{num} points: {explanatory_text}" +msgstr[0] "" + +#: lms/templates/combinedopenended/openended/open_ended_error.html +msgid "There was an error with your submission. Please contact course staff." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "Rubric" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "" +"Select the criteria you feel best represents this submission in each " +"category." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "{num} point: {text}" +msgid_plural "{num} points: {text}" +msgstr[0] "" + +#: lms/templates/combinedopenended/selfassessment/self_assessment_hint.html +msgid "Please enter a hint below:" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohort groups" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Show cohorts" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohorts in the course" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add users by username or email. One per line or comma-separated." +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort members" +msgstr "" + +#: lms/templates/courseware/accordion.html +msgid "{chapter}, current chapter" +msgstr "" + +#: lms/templates/courseware/accordion.html +#: lms/templates/courseware/progress.html +msgid "due {date}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"The currently logged-in user account does not have permission to enroll in " +"this course. You may need to {start_logout_tag}log out{end_tag} then try the" +" register button again. Please visit the {start_help_tag}help page{end_tag} " +"for a possible solution." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "About {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "You are registered for this course" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View Courseware" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "This course is in your cart." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"Add {course.display_number_with_default} to Cart ({currency_symbol}{cost})" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Register for {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Overview" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Share with friends and family!" +msgstr "" + +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes Start" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes End" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Estimated Effort" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Prerequisites" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Additional Resources" +msgstr "" + +#. Translators: 'needs attention' is an alternative string for the +#. notification image that indicates the tab "needs attention". +#: lms/templates/courseware/course_navigation.html +msgid "needs attention" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/course_navigation.html +msgid "Staff view" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +msgid "Student view" +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from leading universities." +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from {university_name}." +msgstr "" + +#: lms/templates/courseware/courseware-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "{course_number} Courseware" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Return to Exam" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Course Navigation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Open Calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Input Field" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "" +"Use the arrow keys to navigate the tips or use the tab key to return to the " +"calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Hints" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Integers" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Decimals" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Scientific notation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Appending SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Supported SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Operators" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "parallel resistors function" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Functions" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Constants" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Euler's number" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "ratio of a circle's circumference to it's diameter" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Boltzmann constant" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "speed of light" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "freezing point of water in degrees Kelvin" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "fundamental charge" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculate" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Output Field" +msgstr "" + +#: lms/templates/courseware/error-message.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {link_to_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/grade_summary.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade summary" +msgstr "" + +#: lms/templates/courseware/grade_summary.html +msgid "Not implemented yet" +msgstr "" + +#: lms/templates/courseware/gradebook.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "Search students" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "{course_number} Course Info" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + +#: lms/templates/courseware/info.html lms/templates/courseware/info.html +msgid "Course Updates & News" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Handout Navigation" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Course Handouts" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Instructor Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Try New Beta Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Psychometrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Forum Admin" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "DataDump" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Manage Groups" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Metrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade Downloads" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Note: some of these buttons are known to time out for larger courses. We " +"have temporarily disabled those features for courses with more than " +"{max_enrollment} students. We are urgently working on fixing this issue. " +"Thank you for your patience as we continue working to improve the platform!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Export grades to remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"The assignments defined for this course should match the ones stored in the " +"gradebook, for this to work properly!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Assignment name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Course-specific grade adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Specify a particular problem in the course here by its url:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is " +"i4x://university/course/problem/problemname, then just provide the " +"problemname. If the location is " +"i4x://university/course/notaproblem/someothername, then provide " +"notaproblem/someothername.)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Then select an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"These actions run in the background, and status for active tasks will appear" +" in a table below. To see status for all tasks submitted for this problem, " +"click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student-specific grade inspection and adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Specify the {platform_name} email address or username of a student here:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Click this, and a link to student's progress page will appear below:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may also delete the entire state of a student for the specified module:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" a table below. To see status for all tasks submitted for this problem and " +"student, click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Select a problem and an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"User requires forum administrator privileges to perform administration " +"tasks. See instructor." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Explanation of Roles:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Moderators: can edit or delete any post, remove misuse flags, close " +"and re-open threads, endorse responses, and see posts from all cohorts (if " +"the course is cohorted). Moderators' posts are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Admins: have moderator privileges, as well as the ability to edit the " +"list of forum moderators (e.g. to appoint a new moderator). Admins' posts " +"are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Community TAs: have forum moderator privileges, and their posts are labelled" +" 'Community TA'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment Data" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Pull enrollment from remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Section:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enroll or un-enroll one or many students: enter emails, separated by new " +"lines or commas;" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Notify students by email" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Auto-enroll students when they activate" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Problem urlname:" +msgstr "" + +#. Translators: days_early_for_beta should not be translated +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enter usernames or emails for students who should be beta-testers, one per " +"line, or separated by commas. They will get to see course materials early, " +"as configured via the days_early_for_beta option in the course " +"policy." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send to:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Myself" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Staff and instructors" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "All (students, staff and instructors)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Subject: " +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Max 128 characters)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Please try not to email students more than once per week. Important things " +"to consider before sending:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you read over the email to make sure it says everything you want to " +"say?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you sent the email to yourself first to make sure you're happy with how" +" it's displayed, and that embedded links and images work properly?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "CAUTION!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Once the 'Send Email' button is clicked, your email will be queued for " +"sending." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "A queued email CANNOT be cancelled." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "No Analytics are available at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Students enrolled (historical count, includes those who have since " +"unenrolled):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students active in the last week:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student activity day by day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Score distribution for problems" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Max" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Points Earned (Num Students)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There is no data available to display at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"Loading the latest graphs for you; depending on your class size, this may " +"take a few minutes." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Count of Students that Opened a Subsection" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution per Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There are no problems in this section." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students answering correctly" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Number of students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Student distribution per country, all courses, Sep-12 to Oct-17, 1 server " +"(shown here as an example):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Pending Instructor Tasks" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Type" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task inputs" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Id" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Requester" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task State" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Duration (sec)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Progress" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "unknown" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Course errors" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "About {course_id}" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "Coming Soon" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "About {course_number}" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Access Courseware" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "You Are Registered" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Register for" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Registration Is Closed" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "News - MITx 6.002x" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "Updates to Discussion Posts You Follow" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{course_number} Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress for Student '{username}' ({email})" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{earned:.3n} of {total:.3n} possible points" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Problem Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Practice Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "No problem scores in this section" +msgstr "" + +#: lms/templates/courseware/syllabus.html +msgid "{course.display_number_with_default} Course Info" +msgstr "" + +#: lms/templates/courseware/welcome-back.html +msgid "" +"You were most recently in {section_link}. If you're done with that, choose " +"another section on the left." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Final course details are being wrapped up at this time. Your final standing " +"will be available shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final grade:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required for a {cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your verified {cert_name_long} is being held pending confirmation that the " +"issuance of your {cert_name_short} is in compliance with strict U.S. " +"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " +"mistakenly identified you as being connected with one of those countries, " +"please let us know by contacting {email}. If you would like a refund on your" +" {cert_name_long}, please contact our billing address {billing_email}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your {cert_name_long} is being held pending confirmation that the issuance " +"of your {cert_name_short} is in compliance with strict U.S. embargoes on " +"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " +"identified you as being connected with one of those countries, please let us" +" know by contacting {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your {cert_name_short} is Generating" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open/download a PDF document" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"This link will open/download a PDF document of your verified " +"{cert_name_long}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your ID Verified {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Complete our course feedback survey" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Cover Image" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Enrolled as: " +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +msgid "ID Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Completed - {end_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Started - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course has not yet started" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Starts - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Document your accomplishment!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Challenge Yourself!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Take this course as an ID-verified student." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can still sign up for an ID verified {cert_name_long} for this course. " +"If you plan to complete the whole course, it is a great way to recognize " +"your achievement. {link_start}Learn more about the verified " +"{cert_name_long}{link_end}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Upgrade to Verified Track" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Archived Course" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Course" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Are you sure you want to unregister from" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Are you sure you want to unregister from the verified {cert_name_long} track" +" of" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Email Settings" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "You need to re-verify to continue" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in the following courses, you need to " +"re-verify your identity:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "{course_name}: Re-verify by {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Notification Actions" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course_name}, you need to re-verify" +" your identity by {date}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Your re-verification failed" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"Your re-verification for {course_name} failed and you are no longer eligible" +" for a Verified Certificate. If you think this is in error, please contact " +"us at {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Dismiss" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verification now open for:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verify now:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Pending:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Denied:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Approved:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "ID-Verification Status" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Reviewed and Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Your verification status is good for one year after submission." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification photos have been submitted and will be reviewed shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Re-verify Yourself" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"If you fail to pass a verification attempt before your course ends, you will" +" not receive a verified certificate." +msgstr "" + +#: lms/templates/debug/run_python_form.html +msgid "Results:" +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "" +"Sorry! We can't find anything matching your search. Please try another " +"search." +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "There are no posts here yet. Be the first one to post!" +msgstr "" + +#: lms/templates/discussion/_discussion_course_navigation.html +#: lms/templates/discussion/_discussion_module.html +msgid "New Post" +msgstr "" + +#: lms/templates/discussion/_discussion_module.html +msgid "Show Discussion" +msgstr "" + +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Filter Topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "filter topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Show All Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Show Flagged Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Posts I'm Following" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "follow this post" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously to classmates" +msgstr "" + +#. Translators: This labels the selector for which group of students can view +#. a +#. post +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Make visible to:" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +msgid "My Cohort" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "new post title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: wiki/forms.py wiki/forms.py wiki/forms.py +msgid "Title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Enter your question or comment…" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Add post" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Create new post about:" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter List" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter discussion areas" +msgstr "" + +#: lms/templates/discussion/_recent_active_posts.html +msgid "Following" +msgstr "" + +#: lms/templates/discussion/_search_bar.html +msgid "Search posts" +msgstr "" + +#: lms/templates/discussion/_similar_posts.html +msgid "Hide" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Home" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Topics" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion topics; current selection is: " +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Search all discussions" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Sort by:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "date" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "votes" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "comments" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Show:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View All" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View as {name}" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Add A Response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Post a response:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "anonymous" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "• This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "follow" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow this post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Pin Thread" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Pinned" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "(this post is about %(courseware_title_linked)s)" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Edit post title" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment..." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "endorse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Delete Comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "-posted %(time_ago)s by" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"%(comments_count)s %(span_sr_open)scomments (%(unread_comments_count)s " +"unread comments)%(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(comments_count)s %(span_sr_open)scomments %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(votes_up_count)s%(span_sr_open)s votes %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "DISCUSSION HOME:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "HOW TO USE EDX DISCUSSIONS" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Find discussions" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Focus in on specific topics" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Search for specific posts " +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Sort by date, vote, or comments" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Engage with posts" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Upvote posts and good responses" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Forum Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow posts for updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Receive updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Toggle Notifications Setting" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"Check this box to receive an email digest once a day notifying you about " +"new, unread activity from posts you are following." +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid ", " +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s discussion started" +msgid_plural "%s discussions started" +msgstr[0] "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "" + +#: lms/templates/discussion/index.html +#: lms/templates/discussion/user_profile.html +msgid "Discussion - {course_number}" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "We're sorry" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "" +"The forums are currently undergoing maintenance. We'll have them back up " +"shortly!" +msgstr "" + +#: lms/templates/discussion/user_profile.html +msgid "User Profile" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Collapse discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "This thread has been pinned by course staff." +msgstr "" + +#: lms/templates/discussion/mustache/_pagination.mustache +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "…" +msgstr "" + +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + +#: lms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for {platform_name}! To activate your account, " +"please copy and paste this address into your web browser's address bar:" +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the about section of the {platform_name} Courses web site." +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the {platform_name} web site." +msgstr "" + +#: lms/templates/emails/activation_email_subject.txt +msgid "Your account for {platform_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Dear {full_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "" +"You have been invited to be a beta tester for {course_name} at {site_name} " +"by a member of the course staff." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {course_about_url} to join the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_allowedmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "This email was automatically sent from {site_name} to {email_address}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_subject.txt +msgid "You have been invited to a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us at" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us immediately. Contact information is listed at:" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "" + +#: lms/templates/emails/email_change.txt +msgid "" +"We received a request to change the e-mail associated with your " +"{platform_name} account from {old_email} to {new_email}. If this is correct," +" please confirm your new e-mail address by visiting:" +msgstr "" + +#: lms/templates/emails/email_change_subject.txt +msgid "Request to change {platform_name} account e-mail" +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "Dear student," +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"You have been invited to join {course_name} at {site_name} by a member of " +"the course staff." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "To access the course visit {course_url} and login." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To access the course visit {course_about_url} and register for the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To finish your registration, please visit {registration_url} and fill out " +"the registration form making sure to use {email_address} in the E-mail " +"field." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, you will see " +"{course_name} listed on your dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, visit " +"{course_about_url} to join the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedsubject.txt +msgid "You have been invited to register for {course_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "" +"You have been enrolled in {course_name} at {site_name} by a member of the " +"course staff. The course should now appear on your {site_name} dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "This email was automatically sent from {site_name} to {full_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledsubject.txt +msgid "You have been enrolled in {course_name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Hi {name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"Your payment was successful. You will see the charge below on your next " +"credit or debit card statement." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"The charge will show up on your statement under the company name " +"{merchant_name}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"If you have billing questions, please read the FAQ ({faq_url}) or contact " +"{billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "If you have billing questions, please contact {billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "-The {platform_name} Team" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Your order number is: {order_number}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "The items in your order are:" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Quantity - Description - Price" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/shoppingcart/receipt.html +msgid "#:" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the tech support at" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the course staff at ta@edx.org." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +msgid "" +"You have been removed as a beta tester for {course_name} at {site_name} by a" +" member of the course staff. The course will remain on your dashboard, but " +"you will no longer be part of the beta testing group." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Your other courses have not been affected." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_subject.txt +msgid "You have been removed from a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "Dear Student," +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "" +"You have been un-enrolled from course {course_name} by a member of the " +"course staff. Please disregard the invitation previously sent." +msgstr "" + +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "" +"You have been un-enrolled in {course_name} at {site_name} by a member of the" +" course staff. The course will no longer appear on your {site_name} " +"dashboard." +msgstr "" + +#: lms/templates/emails/unenroll_email_subject.txt +msgid "You have been un-enrolled from {course_name}" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "{course_number} Staff Grading" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"This is the list of problems that currently need to be graded in order to " +"train AI grading and create calibration essays for peer grading. Each " +"problem needs to be treated separately, and we have indicated the number of " +"student submissions that need to be graded. You can grade more than the " +"minimum required number of submissions--this will improve the accuracy of AI" +" grading, though with diminishing returns. You can see the current accuracy " +"of AI grading in the problem view." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Problem List" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"Please note that when you see a submission here, it has been temporarily " +"removed from the grading pool. The submission will return to the grading " +"pool after 30 minutes without any grade being submitted. Hitting the back " +"button will result in a 30 minute wait to be able to grade this submission " +"again." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Prompt" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "(Hide)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Student Response" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Written Feedback" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Feedback for student (optional)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Flag as inappropriate content for later review" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Skip" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Score Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"The chart below displays the score distribution for each standard problem in" +" your class, specified by the problem's url name." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"Scores are shown without weighting applied, so if your problem contains 2 " +"questions, it will display as having a total of 2 points." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Loading problem list..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Gender Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Enrollment Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Total number of enrollees (instructors, staff members, and students)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Basic Course Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Display Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course started?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Yes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course ended?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Grade Cutoffs:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "The status for any active tasks appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Warnings" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 +msgid "" +"For large courses, generating this report may take several hours. Please be " +"patient and do not click the button multiple times. Clicking the button " +"multiple times will significantly slow the grade generation process." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The report is generated in the background, meaning it is OK to navigate away" +" from this page while your report is generating." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Grade Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports Available for Download" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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. +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Note: To keep student data secure, you cannot save or email these " +"links for direct access. Copies of links expire within 5 minutes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Individual due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"In this section, you have the ability to grant extensions on specific units " +"to individual students. Please note that the latest date is always taken; " +"you cannot use this tool to make an assignment due earlier for a particular " +"student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Choose the graded unit:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the extension due date and time (in UTC; please specify MM/DD/YYYY " +"HH:MM)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Change due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Viewing granted extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Here you can see what extensions have been granted on particular units or " +"for a particular student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Choose a graded unit and click the button to obtain a list of all students " +"who have extensions for the given unit." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List all students with due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Specify a specific student to see all of that student's extensions." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List date extensions for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Resetting extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Resetting a problem's due date rescinds a due date extension for a student " +"on a particular unit. This will revert the due date for the student back to " +"the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reset due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Back to Standard Dashboard" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "section_display_name" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"You will not get notification for emails that bounce, so please double-check" +" spelling." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Email Addresses/Usernames" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Auto Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not yet registered for " +"{platform_name} will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is left unchecked, users who have not yet registered" +" for {platform_name} will not be enrolled, but will be allowed to enroll " +"once they make an account." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Notify users by email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users will receive an email " +"notification." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Unenroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Beta Tester Addition" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Note: Users must have an activated {platform_name} account before they can " +"be enrolled as a beta tester." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add beta testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Remove beta testers" +msgstr "" + +#. Translators: an "Administration List" is a list, such as Course Staff, that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Administration List Management" +msgstr "" + +#. Translators: an "Administrator Group" is a group, such as Course Staff, +#. that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Select an Administrator Group:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Getting available lists..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Staff cannot modify staff or beta tester lists. To modify these lists, " +"contact your instructor and ask them to add you as an instructor for staff " +"and beta lists, or a discussion admin for discussion management." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Course Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course staff can help you manage limited aspects of your course. Staff can " +"enroll and unenroll students, as well as modify their grades and see all " +"course data. Course staff are not automatically given access to Studio and " +"will not be able to edit your course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Instructors" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Instructors are the core administration of your course. Instructors can add " +"and remove course staff, as well as administer discussion access." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Instructor" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Beta Testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Beta testers can see course content before the rest of the students. They " +"can make sure that the content works, but have no additional privileges." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Beta Tester" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Admins" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion admins can edit or delete any post, clear misuse flags, close and" +" re-open threads, endorse responses, and see posts from all cohorts. They " +"CAN add/delete other moderators and their posts are marked as 'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Discussion Admin" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Moderators" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion moderators can edit or delete any post, clear misuse flags, close" +" and re-open threads, endorse responses, and see posts from all cohorts. " +"They CANNOT add/delete other moderators and their posts are marked as " +"'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Moderator" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Community TAs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Community TA's are members of the community whom you deem particularly " +"helpful on the discussion boards. They can edit or delete any post, clear " +"misuse flags, close and re-open threads, endorse responses, and see posts " +"from all cohorts. Their posts are marked 'Community TA'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Community TA" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Reload Graphs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Count of Students Opened a Subsection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send Email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Message:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Please try not to email students more than once per week. Before sending " +"your email, consider:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Email actions run in the background. The status for any active tasks - " +"including email tasks - appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"To see the status for all bulk email tasks ever submitted for this course, " +"click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade inspection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Email or Username" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Click this link to view the student's progress page:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Progress Page" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade adjustment" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem urlname" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is {location1}, then just provide the " +"{urlname1}. If the location is {location2}, then provide {urlname2}.)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Next, select an action to perform for the given user and problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset Student Attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Student Submission" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may also delete the entire state of a student for the specified problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Delete Student State for Problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" the 'Pending Instructor Tasks' table. To see status for all tasks submitted" +" for this problem and student, click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Then select an action" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset ALL students' attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore ALL students' problem submissions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"The above actions run in the background, and status for active tasks will " +"appear in a table on the Course Info tab. To see status for all tasks " +"submitted for this problem, click on this button" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Problem" +msgstr "" + +#: lms/templates/licenses/serial_numbers.html +msgid "None Available" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Change Preferred Language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Please choose your preferred language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Save Language Settings" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "" +"Don't see your preferred language? {link_start}Volunteer to become a " +"translator!{link_end}" +msgstr "" + +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/modal/accessible_confirm.html +msgid "modal open" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "{course_number} Combined Notifications" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Open Ended Console" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Here are items that could potentially need your attention." +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "No items require attention at the moment." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "{course_number} Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "" +"Here are a list of open ended problems for this course that have been " +"flagged by students as potentially inappropriate." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "No flagged problems exist." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Unflag" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Ban" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "{course_number} Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Here is a list of open ended problems for this course." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "You have not attempted any open ended problems yet." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Problem Name" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Grader Type" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"\n" +"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" +"{ul_tag}\n" +"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" +"{li_tag}The instructor needs to score the essays that are used to help you better understand the grading\n" +"criteria.{end_li_tag}\n" +"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"Here are a list of problems that need to be peer graded for this course." +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Graded" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Available" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Required" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "No due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "" +"The due date has passed, and peer grading for this problem is closed at this" +" time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "The due date has passed, and peer grading is closed at this time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to Grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Please include some written feedback as well." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"This submission has explicit, offensive, or (I suspect) plagiarized content." +" " +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "How did I do?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Continue" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Ready to grade!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You have finished learning to grade, which means that you are now ready to " +"start grading." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start Grading!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "You have not yet finished learning to grade this problem." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You will now be shown a series of instructor-scored essays, and will be " +"asked to score them yourself." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"Once you can score the essays similarly to an instructor, you will be ready " +"to grade your peers." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Are you sure that you want to flag this submission?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You are about to flag a submission. You should only flag a submission that " +"contains explicit, offensive, or (suspected) plagiarized content. If the " +"submission is not addressed to the question or is incorrect, you should give" +" it a score of zero and accompanying feedback instead of flagging it." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Remove Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Keep Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Go Back" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "Thanks For Registering!" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "" +"Your account is not active yet. An activation link has been sent to {email}," +" along with instructions for activating your account." +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Activation Complete!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Account already active!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "You can now {link_start}log in{link_end}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Activation Invalid" +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "" +"Something went wrong. Check to make sure the URL you went to was correct -- " +"e-mail programs will sometimes split it into two lines. If you still have " +"issues, e-mail us to let us know what happened at {email}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Or you can go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "Password reset successful" +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "" +"We've e-mailed you instructions for setting your password to the e-mail " +"address you submitted. You should be receiving it shortly." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Data" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "These reports are delimited by start and end dates." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"These reports are delimited alphabetically by university name. i.e., " +"generating a report with 'Start Letter' A and 'End Letter' C will generate " +"reports for all universities starting with A, B, and C." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Letter: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Letter: " +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "Payment Error" +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "There was an error processing your order!" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your Shopping Cart" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your selected items:" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Unit Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Total Amount" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "You have selected no items for purchase." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Register for [Course Name] | Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid " () Electronic Receipt" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Order #" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Date:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Items ordered:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Qty" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Note: items with strikethough like " +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid " have been refunded." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Billed To:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are now registered for: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Registered as: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Your Progress" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Current Step: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Intro" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take ID Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Review" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Make Payment" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Confirmation" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Congratulations! You are now verified on " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"You are now registered as a verified student! Your registration details are " +"below." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are registered for:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "A list of courses you have just registered for as a verified student" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Options" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Starts: {start_date}" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to Course" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to your Dashboard" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Verified Status" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"We have received your identification details to verify your identity. If " +"there is a problem with any of the items, we will contact you to resubmit. " +"You can now register for any of the verified certificate courses this " +"semester without having to re-verify." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"The professor will ask you to periodically submit a new photo to verify your" +" work during the course (usually at exam times)." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Payment Details" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"Please print this page for your records; it serves as your receipt. You will" +" also receive an email with the same information." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Order No." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Total" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "this" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Billed To" +msgstr "" + +#: lms/templates/static_templates/404.html +msgid "" +"The page that you were looking for was not found. Go back to the " +"{link_start}homepage{link_end} or let us know about any pages that may have " +"been moved at {email}." +msgstr "" + +#: lms/templates/static_templates/about.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/faq.html +#: lms/templates/static_templates/help.html +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/tos.html +msgid "" +"This page left intentionally blank. It is not used by edx.org but is left " +"here for possible use by installations of Open edX." +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "This Course Unavailable In Your Country" +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "" +"Our system indicates that you are trying to access an edX course from an IP " +"address associated with a country currently subjected to U.S. economic and " +"trade sanctions. Unfortunately, at this time edX must comply with export " +"controls, and we cannot allow you to access this particular course. Feel " +"free to browse our catalogue to find other courses you may be interested in " +"taking." +msgstr "" + +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/honor.html +msgid "Honor Code" +msgstr "" + +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/media-kit.html +msgid "Media Kit" +msgstr "" + +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/press.html +msgid "In the Press" +msgstr "" + +#: lms/templates/static_templates/server-down.html +msgid "Currently the {platform_name} servers are down" +msgstr "" + +#: lms/templates/static_templates/server-down.html +#: lms/templates/static_templates/server-overloaded.html +msgid "" +"Our staff is currently working to get the site back up as soon as possible. " +"Please email us at {tech_support_email} to report any problems or downtime." +msgstr "" + +#: lms/templates/static_templates/server-error.html +msgid "There has been a 500 error on the {platform_name} servers" +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}." +msgstr "" + +#: lms/templates/static_templates/server-overloaded.html +msgid "Currently the {platform_name} servers are overloaded" +msgstr "" + +#: lms/templates/university_profile/edge.html +#: lms/templates/university_profile/edge.html +msgid "edX edge" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Log in to your courses" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Register for classes" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Take free online courses from today's leading universities." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Edit Your Name" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "The following error occurred while editing your name:" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "" +"To uphold the credibility of {platform} certificates, all name changes will " +"be logged and recorded." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Change my name" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Why Do I Need to Re-Verify?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity. We will send the new photo to be matched up with the photo of the " +"original ID you submitted when you signed up for the course." +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Having Technical Trouble?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Have questions?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please read {a_start}our FAQs to view common questions about our " +"certificates{a_end}." +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are upgrading your registration for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are re-verifying for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are registering for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Upgrading to:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Re-verifying for:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Registering as: " +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Change your mind?" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "You can always continue to audit the course without verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You can always {a_start} audit the course for free {a_end} without " +"verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "Technical Requirements" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)." +msgstr "" + +#: lms/templates/verify_student/face_upload.html +msgid "Edit Your Full Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Re-Verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Webcam Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Flash Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have Flash installed. {a_start} Get Flash {a_end} to " +"continue your registration." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Error submitting your images" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Oops! Something went wrong. Please confirm your details and try again." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with your " +"original verification." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Don't see your picture? Make sure to allow your browser to use your camera " +"when it asks for permission." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Take photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Looks good" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Tips on taking a successful photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your face is well-lit" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be sure your entire face is inside the frame" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Can we match the photo you took with the one on your ID?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once in position, use the camera button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your picture" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Use the checkmark button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "once you are happy with the photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Common Questions" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need my photo?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"As part of the verification process, we need your photo to confirm that you " +"are you." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "What do you do with this picture?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "We only use it to verify your identity. It is not displayed anywhere." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches the ID " +"you originally submitted. We will also use this as the name on your " +"certificate." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Edit your name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Once you verify your photo looks good and your name is correct, you can " +"finish your re-verification and return to your course. Note: You " +"will not have another chance to re-verify." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Yes! You can confirm my identity with this information." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Submit photos & re-verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Verification Submission Confirmation" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Your Credentials Have Been Updated" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"We have received your re-verification details and submitted them for review." +" Your dashboard will show the notification status once the review is " +"complete." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"Please note: The professor may ask you to re-verify again at other key " +"points in the course." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "Complete your other re-verifications" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Return to where you left off" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Reverification Status" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You are in the ID Verified track" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following courses:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Re-verify by {date}" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following course:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You have no re-verifications at present." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "The status of your submitted re-verifications:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Failed" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Don't want to re-verify right now?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Why do I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity by submitting a new photo of your face. We will send the new photo " +"to be matched up with the photo of the original ID you submitted when you " +"signed up for the course. If you are taking multiple courses, you may need " +"to re-verify multiple times, once for every important point in each course " +"you are taking as a verified student." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What will I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because you are just confirming that you are still you, the only thing you " +"will need to do to re-verify is to submit a new photo of your face with " +"your webcam. The process is quick and you will be brought back to where " +"you left off so you can keep on learning." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"If you changed your name during the semester and it no longer matches the " +"original ID you submitted, you will need to re-edit your name to match as " +"well." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What if I have trouble with my re-verification?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because of the short time that re-verification is open, you will not" +" be able to correct a failed verification. If you think there was " +"an error in the review, please contact us at {email}" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Verification" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Please Resubmit Your Verification Information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"There was an error with your previous verification. In order proceed in the " +"verified certificate of achievement track of your current courses, please " +"complete the following steps." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with the " +"picture on your ID." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your photo looks good, you can move on to step 2." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Go to Step 2: Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show Us Your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your ID so we can match it with your " +"photo and the name on your account." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your ID is well-lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Acceptable IDs include drivers licenses, passports, or other goverment-" +"issued IDs that include your name and photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check that there isn't any glare" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Ensure that you can see your photo and read your name" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Try to keep your fingers at the edge to avoid covering important information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need a photo of my ID?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We need to match your ID with your photo and name to confirm that you are " +"you." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We encrypt it and send it to our secure authorization service for review. We" +" use the highest levels of security and do not save the photo or information" +" anywhere once the match has been completed." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your ID photo looks good, you can move on to step 3." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 3: Review Your Info" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Verify Your Submission" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure we can verify your identity with the photos and information below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Review the Photos You've Re-Taken" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Please review the photos and verify that they meet the requirements listed " +"below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo above needs to meet the following requirements:" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be well lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show your whole face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo on your ID must match the photo of your face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be readable (not too far away, no glare)" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The name on your ID must match the name on your account below" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Photos don't meet the requirements?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake Your Photos" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches your ID. " +"We will also use this as the name on your certificate." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"Once you verify your details match the requirements, you can move onto to " +"confirm your re-verification submisssion." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Yes! My details all match." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Upgrade Your Registration for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/verified.html +msgid "Register for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue registering, or select to {a_start} audit " +"the course for free {a_end} without verifying." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Error processing your order" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Oops! Something went wrong. Please confirm your details again and click the " +"button to move on to payment. If you are still having trouble, please try " +"again later." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "What if my camera isn't working?" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 2: Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Review the Photos You've Taken" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Contribution Level" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Please confirm your contribution for this course (min. $" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Once you verify your details match the requirements, you can move on to step" +" 4, payment on our secure server." +msgstr "" + +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course}, you need to re-verify your" +" identity by {date}. Go to URL." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +msgid "" +"We've captured your re-submitted information and will review it to verify " +"your identity shortly. You should receive an update to your veriication " +"status within 1-2 days. In the meantime, you still have access to all of " +"your course content." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Return to Your Dashboard" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Re-Verification Failed" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "" +"Your re-verification was submitted after the re-verification deadline, and " +"you can no longer be re-verified." +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Please contact support if you believe this message to be in error." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Upgrade Your Registration for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Register for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "You need to activate your edX account before proceeding" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please check your email for further instructions on activating your new " +"account." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Upgrade" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to upgrade to being an ID verified " +"student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Register" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to register as an ID verified student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Activate Your Account" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Check your email" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"you need an active edX account before registering - check your email for " +"instructions" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Identification" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A photo identification document" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"a drivers license, passport, or other goverment or school-issued ID with " +"your name and picture on it" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Webcam" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A webcam and a modern browser" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " +"{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please make sure your browser is updated to the most recent version possible" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Credit or Debit Card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A major credit or debit card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Visa, Master Card, American Express, Discover, Diners Club, JCB with " +"Discover logo" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always continue to audit this course instead." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always {a_start}audit this course instead{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Go to Step 1: Take my Photo" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "ID Verification" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You've Been Verified Previously" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "" +"We've already verified your identity (through the photos of you and your ID " +"you provided earlier). You can proceed to make your secure payment and " +"complete registration." +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You have decided to pay $ " +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}(active){span_end}" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "Changes" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}active{span_end}" +msgstr "" + +#: lms/templates/wiki/includes/breadcrumbs.html +msgid "Add article" +msgstr "" + +#: cms/templates/404.html +msgid "The page that you were looking for was not found." +msgstr "" + +#: cms/templates/404.html +msgid "" +"Go back to the {homepage} or let us know about any pages that may have been " +"moved at {email}." +msgstr "" + +#: cms/templates/500.html +msgid "Studio Server Error" +msgstr "" + +#: cms/templates/500.html +msgid "The Studio servers encountered an error" +msgstr "" + +#: cms/templates/500.html +msgid "" +"An error occurred in Studio and the page could not be loaded. Please try " +"again in a few moments." +msgstr "" + +#: cms/templates/500.html +msgid "" +"We've logged the error and our staff is currently working to resolve this " +"error as soon as possible." +msgstr "" + +#: cms/templates/500.html +msgid "If the problem persists, please email us at {email_link}." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +#: cms/templates/activation_invalid.html +msgid "Studio Account Activation" +msgstr "" + +#: cms/templates/activation_active.html +msgid "Your account is already active" +msgstr "" + +#: cms/templates/activation_active.html +msgid "" +"This account, set up using {0}, has already been activated. Please sign in " +"to start working within edX Studio." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +msgid "Sign into Studio" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "Your account activation is complete!" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "" +"Thank you for activating your account. You may now sign in and start using " +"edX Studio to author courses." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Your account activation is invalid" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"We're sorry. Something went wrong with your activation. Check to make sure " +"the URL you went to was correct — e-mail programs will sometimes split" +" it into two lines." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"If you still have issues, contact edX Support. In the meatime, you can also " +"return to" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Contact edX Support" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/widgets/header.html +msgid "Files & Uploads" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Uploading…" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +msgid "Choose File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/asset_index.html +msgid "Upload New File" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Load Another File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/course_info.html +#: cms/templates/edit-tabs.html cms/templates/overview.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Content" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/course_info.html cms/templates/edit-tabs.html +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/textbooks.html +msgid "Page Actions" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + +#: cms/templates/asset_index.html +msgid "What files are listed here?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"In addition to the files you upload on this page, any files that you add to " +"the course appear in this list. These files include your course image, " +"textbook chapters, and files that appear on your Course Handouts sidebar." +msgstr "" + +#: cms/templates/asset_index.html +msgid "File URLs" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the Embed URL value to link to the file or image from a component, a" +" course update, or a course handout." +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the External URL value to reference the file or image from outside " +"of your course. Do not use the External URL as a link value within your " +"course." +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/overview.html cms/templates/settings_graders.html +msgid "What can I do on this page?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You can upload new files or view, download, or delete existing files. You " +"can lock a file so that people who are not enrolled in your course cannot " +"access that file." +msgstr "" + +#: cms/templates/asset_index.html +msgid "Your file has been deleted." +msgstr "" + +#: cms/templates/asset_index.html +msgid "close alert" +msgstr "" + +#: cms/templates/checklists.html cms/templates/export.html +#: cms/templates/export_git.html cms/templates/import.html +#: cms/templates/widgets/header.html +msgid "Tools" +msgstr "" + +#: cms/templates/checklists.html +msgid "Course Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "Current Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "What are course checklists?" +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Course checklists are tools to help you understand and keep track of all the" +" steps necessary to get your course ready for students." +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Any changes you make to these checklists are saved automatically and are " +"immediately visible to other course team members." +msgstr "" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +msgid "Duplicate" +msgstr "" + +#: cms/templates/component.html +msgid "Duplicate this component" +msgstr "" + +#: cms/templates/component.html +msgid "Delete this component" +msgstr "" + +#: cms/templates/component.html cms/templates/container_xblock_component.html +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/overview.html cms/templates/overview.html +msgid "Drag to reorder" +msgstr "" + +#: cms/templates/container.html +msgid "Container" +msgstr "" + +#: cms/templates/container.html +msgid "This page has no content yet." +msgstr "" + +#: cms/templates/container.html cms/templates/container.html +msgid "Publishing Status" +msgstr "" + +#: cms/templates/container.html +msgid "Published" +msgstr "" + +#: cms/templates/container.html +msgid "" +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." +msgstr "" + +#: cms/templates/course_info.html cms/templates/course_info.html +msgid "Course Updates" +msgstr "" + +#: cms/templates/course_info.html +msgid "New Update" +msgstr "" + +#: cms/templates/course_info.html +msgid "" +"Use course updates to notify students of important dates or exams, highlight" +" particular discussions in the forums, announce schedule changes, and " +"respond to student questions. You add or edit updates in HTML." +msgstr "" + +#. Translators: Pages refer to the tabs that appear in the top navigation of +#. each course. +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/export.html cms/templates/widgets/header.html +msgid "Pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "New Page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit_subsection.html +#: cms/templates/index.html cms/templates/overview.html +#: cms/templates/unit.html +msgid "View Live" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Show this page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "Show/hide page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "This page cannot be reordered" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "You can add additional custom pages to your course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Add a New Page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "What are pages?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages are listed horizontally at the top of your course. Default pages " +"(Courseware, Course info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages that you create." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Custom pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"You can create and edit custom pages to provide students with additional " +"course content. For example, you can create pages for the grading policy, " +"course slides, and a course calendar. " +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "How do pages look to students in my course?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Students see the default and custom pages at the top of your course and use " +"these links to navigate." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "See an example" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Pages in Your Course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Preview of Pages in your course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages appear in your course's top navigation bar. The default pages " +"(Courseware, Course Info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages." +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/howitworks.html +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "close modal" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "CMS Subsection" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/unit.html +msgid "Display Name:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Units:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Subsection Settings" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Day" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Time" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/edit_subsection.html +#: cms/templates/overview.html +msgid "Coordinated Universal Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "UTC" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "" +"The date above differs from the release date of {name}, which is unset." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "The date above differs from the release date of {name} - {start_time}" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Sync to {name}." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Graded as:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Set a due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Day" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Remove due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Preview Drafts" +msgstr "" + +#: cms/templates/error.html +msgid "Internal Server Error" +msgstr "" + +#: cms/templates/error.html +msgid "The Page You Requested Page Cannot be Found" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. We couldn't find the Studio page you're looking for. You may " +"want to return to the Studio Dashboard and try again. If you are still " +"having problems accessing things, please feel free to {link_start}contact " +"Studio support{link_end} for further help." +msgstr "" + +#: cms/templates/error.html cms/templates/error.html +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Use our feedback tool, Tender, to share your feedback" +msgstr "" + +#: cms/templates/error.html +msgid "The Server Encountered an Error" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. There was a problem with the server while trying to process " +"your last request. You may want to return to the Studio Dashboard or try " +"this request again. If you are still having problems accessing things, " +"please feel free to {link_start}contact Studio support{link_end} for further" +" help." +msgstr "" + +#: cms/templates/error.html +msgid "Back to dashboard" +msgstr "" + +#: cms/templates/export.html cms/templates/export.html +msgid "Course Export" +msgstr "" + +#: cms/templates/export.html +msgid "About Exporting Courses" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export courses and edit them outside of Studio. The exported file is" +" a .tar.gz file (that is, a .tar file compressed with GNU Zip) that contains" +" the course structure and content. You can also re-import courses that " +"you've exported." +msgstr "" + +#: cms/templates/export.html +msgid "Export My Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Export Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}exported with{em_end} your course:" +msgstr "" + +#: cms/templates/export.html +msgid "Course Content (all Sections, Sub-sections, and Units)" +msgstr "" + +#: cms/templates/export.html +msgid "Course Structure" +msgstr "" + +#: cms/templates/export.html +msgid "Individual Problems" +msgstr "" + +#: cms/templates/export.html +msgid "Course Assets" +msgstr "" + +#: cms/templates/export.html +msgid "Course Settings" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}not exported{em_end} with your course:" +msgstr "" + +#: cms/templates/export.html +msgid "User Data" +msgstr "" + +#: cms/templates/export.html +msgid "Course Team Data" +msgstr "" + +#: cms/templates/export.html +msgid "Forum/discussion Data" +msgstr "" + +#: cms/templates/export.html +msgid "Certificates" +msgstr "" + +#: cms/templates/export.html +msgid "Why export a course?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your course directly, outside of Studio. You" +" may want to create a backup copy of your course. Or, you may want to create" +" a copy of your course that you can later import into another course " +"instance and customize." +msgstr "" + +#: cms/templates/export.html +msgid "What content is exported?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are exported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, is not exported." +msgstr "" + +#: cms/templates/export.html +msgid "Opening the downloaded file" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the course.xml file, as well as subfolders that contain course" +" content." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git" +msgstr "" + +#: cms/templates/export_git.html cms/templates/export_git.html +#: cms/templates/widgets/header.html +msgid "Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "About Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "Use this to export your course to its git repository." +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"This will then trigger an automatic update of the main LMS site and update " +"the contents of your course visible there to students if automatic git " +"imports are configured." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git:" +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"giturl must be defined in your course settings before you can export to git." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Failed" +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Succeeded" +msgstr "" + +#: cms/templates/export_git.html +msgid "Your course:" +msgstr "" + +#: cms/templates/export_git.html +msgid "Course git url:" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome to" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio helps manage your courses online, so you can focus on teaching them" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Studio's Many Features" +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "Studio Helps You Keep Your Courses Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Keeping Your Course Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"The backbone of your course is how it is organized. Studio offers an " +"Outline editor, providing a simple hierarchy and easy drag " +"and drop to help you and your students stay organized." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple Organization For Content" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio uses a simple hierarchy of sections and " +"subsections to organize your content." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Change Your Mind Anytime" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Draft your outline and build content anywhere. Simple drag and drop tools " +"let your reorganize quickly." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Go A Week Or A Semester At A Time" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Build and release sections to your students incrementally. " +"You don't have to have it all done at once." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html +msgid "Learning is More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio lets you weave your content together in a way that reinforces " +"learning — short video lectures interleaved with exercises and more. " +"Insert videos and author a wide variety of exercise types with just a few " +"clicks." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Create Learning Pathways" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Help your students understand a small interactive piece at a time with " +"multimedia, HTML, and exercises." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work Visually, Organize Quickly" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Work visually and see exactly what your students will see. Reorganize all " +"your content with drag and drop." +msgstr "" + +#: cms/templates/howitworks.html +msgid "A Broad Library of Problem Types" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"It's more than just multiple choice. Studio has nearly a dozen types of " +"problems to challenge your learners." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "" +"Studio Gives You Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio works like web applications you already know, yet understands how you" +" build curriculum. Instant publishing to the web when you want it, " +"incremental release when it makes sense. And with co-authors, you can have a" +" whole team building a course, together." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Instant Changes" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Caught a bug? No problem. When you want, your changes to live when you hit " +"Save." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Release-On Date Publishing" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"When you've finished a section, pick when you want it to go" +" live and Studio takes care of the rest. Build your course incrementally." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work in Teams" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Co-authors have full access to all the same authoring tools. Make your " +"course better through a team effort." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up for Studio Today!" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up & Start Making an edX Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Already have a Studio Account? Sign In" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Outlining Your Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simple two-level outline to organize your couse. Drag and drop, and see your" +" course at a glance." +msgstr "" + +#: cms/templates/howitworks.html +msgid "More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Quickly create videos, text snippets, inline discussions, and a variety of " +"problem types." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Publishing on Date" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simply set the date of a section or subsection, and Studio will publish it " +"to your students for you." +msgstr "" + +#: cms/templates/html_error.html +msgid "We're having trouble rendering your component" +msgstr "" + +#: cms/templates/html_error.html +msgid "" +"Students will not be able to access this component. Re-edit your component " +"to fix the error." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Course Import" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a course before continuing. Content of the " +"imported course replaces all the content of this course. {em_start}You " +"cannot undo a course import{em_end}. We recommend that you first export the " +"current course, so you have a backup copy of it." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "" +"The course that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " +"It may also contain other files." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your course until the import operation has completed." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Course Content" +msgstr "" + +#: cms/templates/import.html +msgid "Choose a File to Import" +msgstr "" + +#: cms/templates/import.html +msgid "File Chosen:" +msgstr "" + +#: cms/templates/import.html +msgid "Replace my course with the one above" +msgstr "" + +#: cms/templates/import.html +msgid "Course Import Status" +msgstr "" + +#: cms/templates/import.html +msgid "Uploading" +msgstr "" + +#: cms/templates/import.html +msgid "Transferring your file to our servers" +msgstr "" + +#: cms/templates/import.html +msgid "Unpacking" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Expanding and preparing folder/file structure (You can now leave this page " +"safely, but avoid making drastic changes to content until this import is " +"complete)" +msgstr "" + +#: cms/templates/import.html +msgid "Verifying" +msgstr "" + +#: cms/templates/import.html +msgid "Reviewing semantics, syntax, and required data" +msgstr "" + +#: cms/templates/import.html +msgid "Updating Course" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this course. This may take a while " +"with larger courses." +msgstr "" + +#: cms/templates/import.html +msgid "Success" +msgstr "" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this course" +msgstr "" + +#: cms/templates/import.html +msgid "View Updated Outline" +msgstr "" + +#: cms/templates/import.html +msgid "Why import a course?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"You may want to run a new version of an existing course, or replace an " +"existing course altogether. Or, you may have developed a course outside " +"Studio." +msgstr "" + +#: cms/templates/import.html +msgid "What content is imported?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are imported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, remains the same as it was in the existing course." +msgstr "" + +#: cms/templates/import.html +msgid "Warning: Importing while a course is running" +msgstr "" + +#: cms/templates/import.html +msgid "" +"If you perform an import while your course is running, and you change the " +"URL names (or url_name nodes) of any Problem components, the student data " +"associated with those Problem components may be lost. This data includes " +"students' problem scores." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error during the upload process." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while unpacking the file." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while verifying the file you submitted." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while importing the new course to our database." +msgstr "" + +#: cms/templates/import.html +msgid "Your import has failed." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Choose new file" +msgstr "" + +#: cms/templates/import.html +msgid "Your import is in progress; navigating away will abort it." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +#: cms/templates/widgets/header.html +msgid "My Courses" +msgstr "" + +#: cms/templates/index.html +msgid "New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Email staff to create course" +msgstr "" + +#: cms/templates/index.html +msgid "Welcome, {0}!" +msgstr "" + +#: cms/templates/index.html +msgid "Here are all of the courses you currently have access to in Studio:" +msgstr "" + +#: cms/templates/index.html +msgid "You currently aren't associated with any Studio Courses." +msgstr "" + +#: cms/templates/index.html +msgid "Please correct the highlighted fields below." +msgstr "" + +#: cms/templates/index.html +msgid "Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Required Information to Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. Introduction to Computer Science" +msgstr "" + +#: cms/templates/index.html +msgid "The public display name for your course." +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +msgid "Organization" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. UniversityX or OrganizationX" +msgstr "" + +#: cms/templates/index.html +msgid "The name of the organization sponsoring the course." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed." +msgstr "" + +#: cms/templates/index.html +msgid "" +"This cannot be changed, but you can set a different display name in Advanced" +" Settings later." +msgstr "" + +#: cms/templates/index.html +msgid "e.g. CS101" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The unique number that identifies your course within your organization." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed and it cannot be changed." +msgstr "" + +#: cms/templates/index.html +msgid "Course Run" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. 2014_T1" +msgstr "" + +#: cms/templates/index.html +msgid "The term in which your course will run." +msgstr "" + +#: cms/templates/index.html +msgid "Create" +msgstr "" + +#: cms/templates/index.html +msgid "Course Run:" +msgstr "" + +#: cms/templates/index.html +msgid "Are you staff on an existing Studio course?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"You will need to be added to the course in Studio by the course creator. " +"Please get in touch with the course creator or administrator for the " +"specific course you are helping to author." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Create Your First Course" +msgstr "" + +#: cms/templates/index.html +msgid "Your new course is just a click away!" +msgstr "" + +#: cms/templates/index.html +msgid "Becoming a Course Creator in Studio" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team will " +"evaluate your request and provide you feedback within 24 hours during the " +"work week." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status:" +msgstr "" + +#: cms/templates/index.html +msgid "Request the Ability to Create Courses" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is has " +"completed evaluating your request." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator request is:" +msgstr "" + +#: cms/templates/index.html +msgid "Denied" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request did not meet the criteria/guidelines specified by edX Staff." +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is " +"currently evaluating your request." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request is currently being reviewed by edX staff and should be updated " +"shortly." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Need help?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"If you are new to Studio and having trouble getting started, there are a few" +" things that may be of help:" +msgstr "" + +#: cms/templates/index.html +msgid "Get started by reading Studio's Documentation" +msgstr "" + +#: cms/templates/index.html +msgid "Request help with Studio" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Can I create courses in Studio?" +msgstr "" + +#: cms/templates/index.html +msgid "In order to create courses in Studio, you must" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX staff to help you create a course" +msgstr "" + +#: cms/templates/index.html +msgid "" +"In order to create courses in Studio, you must have course creator " +"privileges to create your own course." +msgstr "" + +#: cms/templates/index.html +msgid "Your request to author courses in studio has been denied. Please" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX Staff with further questions" +msgstr "" + +#: cms/templates/index.html +msgid "Thanks for signing up, %(name)s!" +msgstr "" + +#: cms/templates/index.html +msgid "We need to verify your email address" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Almost there! In order to complete your sign up we need you to verify your " +"email address (%(email)s). An activation message and next steps should be " +"waiting for you there." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Please check your Junk or Spam folders in case our email isn't in your " +"INBOX. Still can't find the verification email? Request help via the link " +"below." +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/header.html +msgid "Sign In" +msgstr "" + +#: cms/templates/login.html cms/templates/login.html +msgid "Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html +msgid "Don't have a Studio Account? Sign up!" +msgstr "" + +#: cms/templates/login.html +msgid "Required Information to Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +msgid "Email Address" +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/sock.html +msgid "Studio Support" +msgstr "" + +#: cms/templates/login.html +msgid "" +"Having trouble with your account? Use {link_start}our support " +"center{link_end} to look over self help steps, find solutions others have " +"found to the same problem, or let us know of your issue." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Settings" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Course Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a User to Your Course's Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member Information" +msgstr "" + +#: cms/templates/manage_users.html +msgid "User's Email Address" +msgstr "" + +#: cms/templates/manage_users.html +msgid "e.g. jane.doe@gmail.com" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Please provide the email address of the course staff member you'd like to " +"add" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add User" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "Current Role:" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "You!" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Staff" +msgstr "" + +#: cms/templates/manage_users.html +msgid "send an email message to {email}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Promote another member to Admin to remove your admin rights" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Remove Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Delete the user, {username}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Team Members to This Course" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Adding team members makes course authoring collaborative. Users must be " +"signed up for Studio and have an active account. " +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Roles" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Course team members, or staff, are course co-authors. They have full writing" +" and editing privileges on all course content." +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Admins are course team members who can add and remove other course team " +"members." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Transferring Ownership" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Every course must have an Admin. If you're the Admin and you want transfer " +"ownership of the course, click Add admin access to make another user the " +"Admin, then ask that user to remove you from the Course Team list." +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Course Outline" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html +msgid "Expand/collapse this section" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Section Name" +msgstr "" + +#: cms/templates/overview.html +msgid "Add a new section name" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Delete this section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to re-order" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Subsection" +msgstr "" + +#: cms/templates/overview.html cms/templates/widgets/units.html +msgid "New Unit" +msgstr "" + +#: cms/templates/overview.html +msgid "You haven't added any sections to your course outline yet." +msgstr "" + +#: cms/templates/overview.html +msgid "Add your first section" +msgstr "" + +#: cms/templates/overview.html +msgid "Collapse All Sections" +msgstr "" + +#: cms/templates/overview.html +msgid "New Section" +msgstr "" + +#: cms/templates/overview.html +msgid "This section is not scheduled for release" +msgstr "" + +#: cms/templates/overview.html +msgid "Schedule" +msgstr "" + +#: cms/templates/overview.html +msgid "Release date:" +msgstr "" + +#: cms/templates/overview.html +msgid "Edit section release date" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to reorder section" +msgstr "" + +#: cms/templates/overview.html +msgid "Expand/collapse this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"You can create new sections and subsections, set the release date for " +"sections, and create new units in existing subsections. You can set the " +"assignment type for subsections that are to be graded, and you can open a " +"subsection for further editing." +msgstr "" + +#: cms/templates/overview.html +msgid "" +"In addition, you can drag and drop sections, subsections, and units to " +"reorganize your course." +msgstr "" + +#: cms/templates/overview.html +msgid "Section Release Date" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"On the date set below, this section - {name} - will be released to students." +" Any units marked private will only be visible to admins." +msgstr "" + +#: cms/templates/overview.html +msgid "Form Actions" +msgstr "" + +#: cms/templates/register.html +msgid "Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "Already have a Studio Account? Sign in" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Ready to start creating online courses? Sign up below and start creating " +"your first edX course today." +msgstr "" + +#: cms/templates/register.html +msgid "Required Information to Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "" +"This will be used in public discussions with your courses and in our edX101 " +"support forums" +msgstr "" + +#: cms/templates/register.html +msgid "Your Location" +msgstr "" + +#: cms/templates/register.html +msgid "I agree to the {a_start} Terms of Service {a_end}" +msgstr "" + +#: cms/templates/register.html +msgid "Create My Account & Start Authoring Courses" +msgstr "" + +#: cms/templates/register.html +msgid "Common Studio Questions" +msgstr "" + +#: cms/templates/register.html +msgid "Who is Studio for?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is for anyone that wants to create online courses that leverage the " +"global edX platform. Our users are often faculty members, teaching " +"assistants and course staff, and members of instructional technology groups." +msgstr "" + +#: cms/templates/register.html +msgid "How technically savvy do I need to be to create courses in Studio?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is designed to be easy to use by almost anyone familiar with common " +"web-based authoring environments (Wordpress, Moodle, etc.). No programming " +"knowledge is required, but for some of the more advanced features, a " +"technical background would be helpful. As always, we are here to help, so " +"don't hesitate to dive right in." +msgstr "" + +#: cms/templates/register.html +msgid "I've never authored a course online before. Is there help?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Absolutely. We have created an online course, edX101, that describes some " +"best practices: from filming video, creating exercises, to the basics of " +"running an online course. Additionally, we're always here to help, just drop" +" us a note." +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details Settings" +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/settings.html +msgid "Basic Information" +msgstr "" + +#: cms/templates/settings.html +msgid "The nuts and bolts of your course" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "This field is disabled: this information cannot be changed." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Summary Page" +msgstr "" + +#: cms/templates/settings.html +msgid "(for student enrollment and access)" +msgstr "" + +#: cms/templates/settings.html +msgid "Send a note to students via email" +msgstr "" + +#: cms/templates/settings.html +msgid "Invite your students" +msgstr "" + +#: cms/templates/settings.html +msgid "Promoting Your Course with edX" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course summary page will not be viewable until your course has been " +"announced. To provide content for the page and preview it, follow the " +"instructions provided by your PM." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Schedule" +msgstr "" + +#: cms/templates/settings.html +msgid "Dates that control when your course can be viewed" +msgstr "" + +#: cms/templates/settings.html +msgid "First day the course begins" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day your course is active" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Date" +msgstr "" + +#: cms/templates/settings.html +msgid "First day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "These Dates Are Not Used When Promoting Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"These dates impact when your courseware can be viewed, but " +"they are not the dates shown on your course summary page. " +"To provide the course start and registration dates as shown on your course " +"summary page, follow the instructions provided by your PM or Conrad Warre (conrad@edx.org)." +msgstr "" + +#: cms/templates/settings.html +msgid "Introducing Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "Information for prospective students" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Short Description" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Appears on the course catalog page when students roll over the course name. " +"Limit to ~150 characters" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Overview" +msgstr "" + +#: cms/templates/settings.html +msgid "your course summary page" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"You can manage this image along with all of your other files " +"& uploads" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 375px wide by 200px tall)" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your course image (Note: only JPEG " +"or PNG format supported)" +msgstr "" + +#: cms/templates/settings.html +msgid "Upload Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Introduction Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Delete Current Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Enter your YouTube video's ID (along with any restriction parameters)" +msgstr "" + +#: cms/templates/settings.html +msgid "Requirements" +msgstr "" + +#: cms/templates/settings.html +msgid "Expectations of the students taking this course" +msgstr "" + +#: cms/templates/settings.html +msgid "Hours of Effort per Week" +msgstr "" + +#: cms/templates/settings.html +msgid "Time spent on all course work" +msgstr "" + +#: cms/templates/settings.html +msgid "How are these settings used?" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course's schedule determines when students can enroll in and begin a " +"course." +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Other information from this page appears on the About page for your course. " +"This information includes the course overview, course image, introduction " +"video, and estimated time requirements. Students use About pages to choose " +"new courses to take." +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html +msgid "Other Course Settings" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +msgid "Grading" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Advanced Settings" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "There was an error saving your information. Please see below." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Manual Policy Definition" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Warning: Do not modify these policies unless you are " +"familiar with their purpose." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "What do advanced settings do?" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Advanced settings control specific course functionality. On this page, you " +"can edit manual policies, which are JSON-based key and value pairs that " +"control specific course settings." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Any policies you modify here override all other information you've defined " +"elsewhere in Studio. Do not edit policies unless you are familiar with both " +"their purpose and syntax." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" +" you use double quotation marks (") around the string. Do not use " +"single quotation marks (')." +msgstr "" + +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +msgid "Details & Schedule" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Settings" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Overall Grade Range" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Your overall grading scale for student final grades" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Rules & Policies" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Deadlines, requirements, and logistics around grading student work" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grace Period on Deadline:" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Leeway on due dates" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Assignment Types" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Categories and labels for any exercises that are gradable" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "New Assignment Type" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can use the slider under Overall Grade Range to specify whether your " +"course is pass/fail or graded by letter, and to establish the thresholds for" +" each grade." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can specify whether your course offers students a grace period for late " +"assignments." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can also create assignment types, such as homework, labs, quizzes, and " +"exams, and specify how much of a student's grade each assignment type is " +"worth." +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +#: cms/templates/studio_vertical_wrapper.html +msgid "Expand or Collapse" +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + +#: cms/templates/textbooks.html +msgid "You have unsaved changes. Do you really want to leave this page?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "New Textbook" +msgstr "" + +#: cms/templates/textbooks.html +msgid "Why should I break my textbook into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"Breaking your textbook into multiple chapters reduces loading times for " +"students, especially those with slow Internet connections. Breaking up " +"textbooks into chapters can also help students more easily find topic-based " +"information." +msgstr "" + +#: cms/templates/textbooks.html +msgid "What if my book isn't divided into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"If your textbook doesn't have individual chapters, you can upload the entire" +" text as a single chapter and enter a name of your choice in the Chapter " +"Name field." +msgstr "" + +#: cms/templates/unit.html cms/templates/ux/reference/unit.html +msgid "Individual Unit" +msgstr "" + +#: cms/templates/unit.html +msgid "You are editing a draft." +msgstr "" + +#: cms/templates/unit.html +msgid "This unit was originally published on {date}." +msgstr "" + +#: cms/templates/unit.html +msgid "View the Live Version" +msgstr "" + +#: cms/templates/unit.html +msgid "Add New Component" +msgstr "" + +#: cms/templates/unit.html +msgid "Common Problem Types" +msgstr "" + +#: cms/templates/unit.html +msgid "Advanced" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Settings" +msgstr "" + +#: cms/templates/unit.html +msgid "Visibility:" +msgstr "" + +#: cms/templates/unit.html +msgid "Public" +msgstr "" + +#: cms/templates/unit.html +msgid "Private" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit has been published. To make changes, you must {link_start}edit a " +"draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This is a draft of the published unit. To update the live version, you must " +"{link_start}replace it with this draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "Delete Draft" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Location" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Identifier:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for edX Studio! To activate your account, please " +"copy and paste this address into your web browser's address bar:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the edX web site." +msgstr "" + +#: cms/templates/emails/activation_email_subject.txt +msgid "Your account for edX Studio" +msgstr "" + +#: cms/templates/emails/course_creator_admin_subject.txt +msgid "{email} has requested Studio course creator privileges on edge" +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "" +"User '{user}' with e-mail {email} has requested Studio course creator " +"privileges on edge." +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "To grant or deny this request, use the course creator admin table." +msgstr "" + +#: cms/templates/emails/course_creator_denied.txt +msgid "" +"Your request for course creation rights to edX Studio have been denied. If " +"you believe this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_granted.txt +msgid "" +"Your request for course creation rights to edX Studio have been granted. To " +"create your first course, visit:" +msgstr "" + +#: cms/templates/emails/course_creator_revoked.txt +msgid "" +"Your course creation rights to edX Studio have been revoked. If you believe " +"this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_subject.txt +msgid "Your course creator status for edX Studio" +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "You can now {link_start}login{link_end}." +msgstr "" + +#: cms/templates/registration/reg_complete.html +msgid "" +"An activation link has been sent to {email}, along with instructions for " +"activating your account." +msgstr "" + +#: cms/templates/widgets/footer.html +msgid "All rights reserved." +msgstr "" + +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Contact Us" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Current Course:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "{course_name}'s Navigation:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Outline" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Updates" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Checklists" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Import" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Export" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Help & Account Navigation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +msgid "This is a PDF Document" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Documentation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html +msgid "Studio Help Center" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Currently signed in as:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Sign Out" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "You're not currently signed in" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "How Studio Works" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Help" +msgstr "" + +#: cms/templates/widgets/metadata-edit.html +msgid "Launch Latex Source Compiler" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Heading 1" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Multiple Choice" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Checkboxes" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Text Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Numerical Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Dropdown" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Explanation" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Advanced Editor" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Toggle Cheatsheet" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Label" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "edX Studio Help" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Need help with Studio? Creating a course is complex, so we're here to help. " +"Take advantage of our documentation, help center, as well as our edX101 " +"introduction course for course authors." +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Download Studio Documentation" +msgstr "" + +#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +msgid "How to use Studio to build your course" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Enroll in edX101" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Contact us about Studio" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Have problems, questions, or suggestions about Studio? We're also here to " +"listen to any feedback you want to share." +msgstr "" + +#: cms/templates/widgets/tabs-aggregator.html +msgid "name" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete this unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to sort" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to reorder unit" +msgstr "" + +# empty +msgid "This is a key string." +msgstr "" + +#: wiki/admin.py wiki/models/article.py +msgid "created" +msgstr "" + +#: wiki/forms.py +msgid "Only localhost... muahahaha" +msgstr "" + +#: wiki/forms.py +msgid "Initial title of the article. May be overridden with revision titles." +msgstr "" + +#: wiki/forms.py +msgid "Type in some contents" +msgstr "" + +#: wiki/forms.py +msgid "" +"This is just the initial contents of your article. After creating it, you " +"can use more complex features like adding plugins, meta data, related " +"articles etc..." +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Contents" +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Summary" +msgstr "" + +#: wiki/forms.py +msgid "" +"Give a short reason for your edit, which will be stated in the revision log." +msgstr "" + +#: wiki/forms.py +msgid "" +"While you were editing, someone else changed the revision. Your contents " +"have been automatically merged with the new contents. Please review the text" +" below." +msgstr "" + +#: wiki/forms.py +msgid "No changes made. Nothing to save." +msgstr "" + +#: wiki/forms.py +msgid "Select an option" +msgstr "" + +#: wiki/forms.py +msgid "Slug" +msgstr "" + +#: wiki/forms.py +msgid "" +"This will be the address where your article can be found. Use only " +"alphanumeric characters and - or _. Note that you cannot change the slug " +"after creating the article." +msgstr "" + +#: wiki/forms.py +msgid "Write a brief message for the article's history log." +msgstr "" + +#: wiki/forms.py +msgid "A slug may not begin with an underscore." +msgstr "" + +#: wiki/forms.py +msgid "A deleted article with slug \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "A slug named \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "Yes, I am sure" +msgstr "" + +#: wiki/forms.py +msgid "Purge" +msgstr "" + +#: wiki/forms.py +msgid "" +"Purge the article: Completely remove it (and all its contents) with no undo." +" Purging is a good idea if you want to free the slug such that users can " +"create new articles in its place." +msgstr "" + +#: wiki/forms.py wiki/plugins/attachments/forms.py +#: wiki/plugins/images/forms.py +msgid "You are not sure enough!" +msgstr "" + +#: wiki/forms.py +msgid "While you tried to delete this article, it was modified. TAKE CARE!" +msgstr "" + +#: wiki/forms.py +msgid "Lock article" +msgstr "" + +#: wiki/forms.py +msgid "Deny all users access to edit this article." +msgstr "" + +#: wiki/forms.py +msgid "Permissions" +msgstr "" + +#: wiki/forms.py +msgid "Owner" +msgstr "" + +#: wiki/forms.py +msgid "Enter the username of the owner." +msgstr "" + +#: wiki/forms.py +msgid "(none)" +msgstr "" + +#: wiki/forms.py +msgid "Inherit permissions" +msgstr "" + +#: wiki/forms.py +msgid "" +"Check here to apply the above permissions recursively to articles under this" +" one." +msgstr "" + +#: wiki/forms.py +msgid "Permission settings for the article were updated." +msgstr "" + +#: wiki/forms.py +msgid "Your permission settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/forms.py +msgid "No user with that username" +msgstr "" + +#: wiki/forms.py +msgid "Article locked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Article unlocked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Filter..." +msgstr "" + +#: wiki/core/plugins/base.py +msgid "Settings for plugin" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +#: wiki/plugins/attachments/models.py +msgid "current revision" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The revision being displayed for this article. If you need to do a roll-" +"back, simply change the value of this field." +msgstr "" + +#: wiki/models/article.py +msgid "modified" +msgstr "" + +#: wiki/models/article.py +msgid "Article properties last modified" +msgstr "" + +#: wiki/models/article.py +msgid "owner" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The owner of the article, usually the creator. The owner always has both " +"read and write access." +msgstr "" + +#: wiki/models/article.py +msgid "group" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Like in a UNIX file system, permissions can be given to a user according to " +"group membership. Groups are handled through the Django auth system." +msgstr "" + +#: wiki/models/article.py +msgid "group read access" +msgstr "" + +#: wiki/models/article.py +msgid "group write access" +msgstr "" + +#: wiki/models/article.py +msgid "others read access" +msgstr "" + +#: wiki/models/article.py +msgid "others write access" +msgstr "" + +#: wiki/models/article.py +msgid "Article without content (%(id)d)" +msgstr "" + +#: wiki/models/article.py +msgid "content type" +msgstr "" + +#: wiki/models/article.py +msgid "object ID" +msgstr "" + +#: wiki/models/article.py +msgid "Article for object" +msgstr "" + +#: wiki/models/article.py +msgid "Articles for object" +msgstr "" + +#: wiki/models/article.py +msgid "revision number" +msgstr "" + +#: wiki/models/article.py +msgid "IP address" +msgstr "" + +#: wiki/models/article.py +msgid "user" +msgstr "" + +#: wiki/models/article.py +msgid "locked" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +msgid "article" +msgstr "" + +#: wiki/models/article.py +msgid "article contents" +msgstr "" + +#: wiki/models/article.py +msgid "article title" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Each revision contains a title field that must be filled out, even if the " +"title has not changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "original article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "Permissions are inherited from this article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "A plugin was changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "" +"The revision being displayed for this plugin.If you need to do a roll-back, " +"simply change the value of this field." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Cache lookup value for articles" +msgstr "" + +#: wiki/models/urlpath.py +msgid "slug" +msgstr "" + +#: wiki/models/urlpath.py +msgid "(root)" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL path" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL paths" +msgstr "" + +#: wiki/models/urlpath.py +msgid "Sorry but you cannot have a root article with a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "A non-root note must always have a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "There is already a root node on %s" +msgstr "" + +#: wiki/models/urlpath.py +msgid "" +"Articles who lost their parents\n" +"===============================\n" +"\n" +"The children of this article have had their parents deleted. You should probably find a new home for them." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Lost and found" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "A short summary of what the file contains" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "Yes I am sure..." +msgstr "" + +#: wiki/plugins/attachments/markdown_extensions.py +msgid "Click to download file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "" +"The revision of this attachment currently in use (on all articles using the " +"attachment)" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "original filename" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachments" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revision" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revisions" +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s was successfully added." +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "Your file could not be saved: %s" +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "" +"Your file could not be saved, probably because of a permission error on the " +"web server." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s uploaded and replaces old attachment." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your new file will automatically be renamed to match the file already " +"present. Files with different extensions are not allowed." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Current revision changed for %s." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "The file %s was deleted." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "This article is no longer related to the file %s." +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was changed: %s" +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was deleted: %s" +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "" +"New image %s was successfully uploaded. You can use it by selecting it from " +"the list of available images." +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "Are you sure?" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "images" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image: %s" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Current revision not set!!" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revision" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revisions" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image Revsion: %d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been restored" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been marked as deleted" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been changed to revision #%(revision)d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been saved." +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "Images" +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "An image was added: %s" +msgstr "" + +#: wiki/plugins/links/wiki_plugin.py +msgid "Links" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Notifications" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "When this article is edited" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Also receive emails about article edits" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were updated." +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "%(user)s subscribing to %(article)s (%(type)s)" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article deleted: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article modified: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "New article created: %s" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now sign up... and now you can sign in!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are no longer logged in. Bye bye!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now logged in! Have fun!" +msgstr "" + +#: wiki/views/article.py +msgid "New article '%s' created." +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article: %s" +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article cannot be deleted because it has children or is a root article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article together with all its contents are now completely gone! Thanks!" +msgstr "" + +#: wiki/views/article.py +msgid "" +"The article \"%s\" is now marked as deleted! Thanks for keeping the site " +"free from unwanted material!" +msgstr "" + +#: wiki/views/article.py +msgid "Your changes were saved." +msgstr "" + +#: wiki/views/article.py +msgid "A new revision of the article was succesfully added." +msgstr "" + +#: wiki/views/article.py +msgid "Restoring article" +msgstr "" + +#: wiki/views/article.py +msgid "The article \"%s\" and its children are now restored." +msgstr "" + +#: wiki/views/article.py +msgid "The article %s is now set to display revision #%d" +msgstr "" + +#: wiki/views/article.py +msgid "New title" +msgstr "" + +#: wiki/views/article.py +msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" +msgstr "" + +#: wiki/views/article.py +msgid "" +"A new revision was created: Merge between Revision #%(r1)d and Revision " +"#%(r2)d" +msgstr "" diff --git a/conf/locale/kn/LC_MESSAGES/djangojs.mo b/conf/locale/kn/LC_MESSAGES/djangojs.mo new file mode 100644 index 0000000000..31dffeeae8 Binary files /dev/null and b/conf/locale/kn/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/kn/LC_MESSAGES/djangojs.po b/conf/locale/kn/LC_MESSAGES/djangojs.po new file mode 100644 index 0000000000..6bd11a5373 --- /dev/null +++ b/conf/locale/kn/LC_MESSAGES/djangojs.po @@ -0,0 +1,1696 @@ +# #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Kannada (http://www.transifex.com/projects/p/edx-platform/language/kn/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-05-05 13:09+0000\n" +"Last-Translator: sarina \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/edx-platform/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: cms/static/coffee/src/views/tabs.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js +#: common/static/coffee/src/discussion/utils.js +msgid "OK" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/asset.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Cancel" +msgstr "" + +#: cms/static/js/base.js lms/static/js/verify_student/photocapture.js +msgid "This link will open in a new browser window/tab" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Show Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Hide Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Expand Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Collapse Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Commentary" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Reply to Annotation" +msgstr "" + +#. Translators: %(earned)s is the number of points earned. %(total)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(earned)s/%(possible)s point)" +msgid_plural "(%(earned)s/%(possible)s points)" +msgstr[0] "" + +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10). There will always be at least 1 point possible.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(num_points)s point possible)" +msgid_plural "(%(num_points)s points possible)" +msgstr[0] "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer:" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Hide Answer" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Show Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Reveal Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer hidden" +msgstr "" + +#. Translators: the word unanswered here is about answering a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "unanswered" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Status: unsubmitted" +msgstr "" + +#. Translators: A "rating" is a score a student gives to indicate how well +#. they feel they were graded on this problem +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "You need to pick a rating before you can submit." +msgstr "" + +#. Translators: this message appears when transitioning between openended +#. grading +#. types (i.e. self assesment to peer assessment). Sometimes, if a student +#. did not perform well at one step, they cannot move on to the next one. +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Your score did not meet the criteria to move to the next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Submit" +msgstr "" + +#. Translators: one clicks this button after one has finished filling out the +#. grading +#. form for an openended assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: this button is clicked to submit a student's rating of +#. an evaluator's assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit post-assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Answer saved, but not yet submitted." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Please confirm that you wish to submit your work. You will not be able to " +"make any changes after submitting." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"You are trying to upload a file that is too large for our system. Please " +"choose a file under 2MB or paste a link to it into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Are you sure you want to remove your previous response to this question?" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Moved to next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"File uploads are required for this question, but are not supported in your " +"browser. Try the newest version of Google Chrome. Alternatively, if you have" +" uploaded the image to another website, you can paste a link to it into the " +"answer box." +msgstr "" + +#. Translators: "Show Question" is some text that, when clicked, shows a +#. question's +#. content that had been hidden +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Show Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Hide Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/sequence/display.js +msgid "" +"Sequence error! Cannot navigate to tab %(tab_name)s in the current " +"SequenceModule. Please contact the course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Video slider" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Pause" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Play" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Fill browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Exit full browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD on" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD off" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video ended" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s hour" +msgid_plural "%(value)s hours" +msgstr[0] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s minute" +msgid_plural "%(value)s minutes" +msgstr[0] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s second" +msgid_plural "%(value)s seconds" +msgstr[0] "" + +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Volume" +msgstr "" + +#. Translators: Volume level equals 0%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Muted" +msgstr "" + +#. Translators: Volume level in range (0,20]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very low" +msgstr "" + +#. Translators: Volume level in range (20,40]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Low" +msgstr "" + +#. Translators: Volume level in range (40,60]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Average" +msgstr "" + +#. Translators: Volume level in range (60,80]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Loud" +msgstr "" + +#. Translators: Volume level in range (80,100)% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very loud" +msgstr "" + +#. Translators: Volume level equals 100%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Maximum" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Caption will be displayed when " +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on captions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn off captions" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Hide Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Show Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Sorry" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "We had some trouble loading the discussion. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "" +"We had some trouble loading the threads you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "Loading content" +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "" +"We had some trouble processing your request. Please ensure you have copied " +"any unsaved work and then reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "We had some trouble processing your request. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +msgid "…" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Close" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Open" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "remove vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" +msgstr[0] "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" +msgstr[0] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Load more" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading more threads" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "We had some trouble loading more threads. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "%(unread_count)s new comment" +msgid_plural "%(unread_count)s new comments" +msgstr[0] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading thread list" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to remove report" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported%(start_sr_span)s, click to remove report%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Report Misuse" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned%(start_sr_span)s, click to unpin%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to unpin" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pin Thread" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading responses. Please reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading more responses. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "%(numResponses)s response" +msgid_plural "%(numResponses)s responses" +msgstr[0] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing first response" +msgid_plural "Showing first %(numResponses)s responses" +msgstr[0] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load next %(numResponses)s responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Are you sure you want to delete this post?" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +msgid "anonymous" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "staff" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Community TA" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported, click to remove report" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Are you sure you want to delete this comment?" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "We had some trouble deleting this comment. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/thread_response_view.js +msgid "Are you sure you want to delete this response?" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s ago" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s from now" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "less than a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about an hour" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about %d hour" +msgid_plural "about %d hours" +msgstr[0] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "a day" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a month" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a year" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Available %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of available %s. You may choose some by selecting them in " +"the box below and then clicking the \"Choose\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Type into this box to filter down the list of available %s." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Filter" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to choose all %s at once." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Chosen %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of chosen %s. You may remove some by selecting them in the " +"box below and then clicking the \"Remove\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to remove all chosen %s at once." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "%(sel)s of %(cnt)s selected" +msgid_plural "%(sel)s of %(cnt)s selected" +msgstr[0] "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have unsaved changes on individual editable fields. If you run an " +"action, your unsaved changes will be lost." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, but you haven't saved your changes to " +"individual fields yet. Please click OK to save. You'll need to re-run the " +"action." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, and you haven't made any changes on individual " +"fields. You're probably looking for the Go button rather than the Save " +"button." +msgstr "" + +#. Translators: the names of months, keep the pipe (|) separators. +#: lms/static/admin/js/calendar.js lms/static/admin/js/dateparse.js +msgid "" +"January|February|March|April|May|June|July|August|September|October|November|December" +msgstr "" + +#. Translators: abbreviations for days of the week, keep the pipe (|) +#. separators. +#: lms/static/admin/js/calendar.js +msgid "S|M|T|W|T|F|S" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.js.c +#: lms/static/admin/js/collapse.min.js +msgid "Show" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.min.js +msgid "Hide" +msgstr "" + +#. Translators: the names of days, keep the pipe (|) separators. +#: lms/static/admin/js/dateparse.js +msgid "Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Now" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Clock" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Choose a time" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Midnight" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "6 a.m." +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Noon" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Today" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Calendar" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Yesterday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Tomorrow" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Open Calculator" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Close Calculator" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Preview" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Post body" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching distribution." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Unavailable metric display." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching grade distributions." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Last Updated: <%= timestamp %>" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "<%= num_students %> students scored." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Loading..." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error getting student list." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error retrieving grading configuration." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error generating grades. Please try again." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "File Name" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "" +"Links are generated on demand and expire within 5 minutes due to the " +"sensitive nature of student information." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Username" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Revoke access" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Enter username or email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Please enter a username or email." +msgstr "" + +#. Translators: A rolename appears this sentence.; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error fetching list for role" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +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 "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully removed as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not removed as beta testers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Users must create and activate their account before they can be promoted to " +"beta tester." +msgstr "" + +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Could not find users associated with the following identifiers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error enrolling/unenrolling users." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following email addresses and/or usernames are invalid:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled and sent email to the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Emails successfully sent. The following users are no longer enrolled in the " +"course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following users are no longer enrolled in the course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"These users were not affiliated with the course so could not be unenrolled:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message must have a subject." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message cannot be blank." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to yourself. Is this " +"OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to everyone who is " +"staff or instructor on this course. Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to ALL (everyone who " +"is enrolled in this course as student, staff, or instructor). Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Error sending email." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There is no email history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There was an error obtaining email task history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a student email address or username." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting student progress url for '<%= student_id %>'. Check that the " +"student identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a problem urlname." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Success! Problem attempts reset for problem '<%= problem_id %>' and student " +"'<%= student_id %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error resetting problem attempts for problem '<%= problem_id %>' and student" +" '<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Delete student '<%= student_id %>'s state on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id" +" %>'. Check that the problem and student identifiers are spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Module state successfully deleted." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Started rescore problem task for problem '<%= problem_id %>' and student " +"'<%= student_id %>'. Click the 'Show Background Task History for Student' " +"button to see the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>' for student " +"'<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting task history for problem '<%= problem_id %>' and student '<%= " +"student_id %>'. Check that the problem and student identifiers are spelled " +"correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Reset attempts for all students on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to reset attempts for problem '<%= problem_id %>'." +" Click the 'Show Background Task History for Problem' button to see the " +"status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to reset attempts for all students on problem '<%= " +"problem_id %>'. Check that the problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Rescore problem '<%= problem_id %>' for all students?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to rescore problem '<%= problem_id %>' for all " +"students. Click the 'Show Background Task History for Problem' button to see" +" the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>'. Check that the" +" problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Error listing task history for this student and problem." +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Type" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task inputs" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task ID" +msgstr "" + +#. Translators: a "Requester" is a username that requested a task such as +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Requester" +msgstr "" + +#. Translators: A timestamp of when a task (eg, sending email) was submitted +#. appears after this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Submitted" +msgstr "" + +#. Translators: The length of a task (eg, sending email) in seconds appears +#. this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Duration (sec)" +msgstr "" + +#. Translators: The state (eg, "In progress") of a task (eg, sending email) +#. appears after this. +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "State" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Status" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Grades saved. Fetching the next submission to grade." +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Problem Name" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Graded" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Available to Grade" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Required" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Back to problem list" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Try loading again" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> available " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> graded " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> more needed to start ML" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Re-check for submissions" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state: <%= state %>" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state for submission: " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Hide)" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Show)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Image (upload file or type url)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Markdown Editing Help" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bold (Ctrl+B)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Italic (Ctrl+I)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Hyperlink (Ctrl+L)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote (Ctrl+Q)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Code Sample (Ctrl+K)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Image (Ctrl+G)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Numbered List (Ctrl+O)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bulleted List (Ctrl+U)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading (Ctrl+H)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Horizontal Rule (Ctrl+R)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Undo (Ctrl+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Y)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Shift+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "strong text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "emphasized text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter image description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter link description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote" +msgstr "" + +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +msgid "enter code here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "List item" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading" +msgstr "" + +#: lms/templates/class_dashboard/all_section_metrics.js +#: lms/templates/class_dashboard/all_section_metrics.js +msgid "Unable to retrieve data, please try again later." +msgstr "" + +#: lms/templates/class_dashboard/d3_stacked_bar_graph.js +msgid "Number of Students" +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "" +"This may be happening because of an error with our server or your internet " +"connection. Try refreshing the page or making sure you are online." +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "Studio's having trouble saving your work" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/xblock/cms.runtime.v1.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js +#: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js +#: cms/static/js/views/xblock_editor.js +msgid "Saving…" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "Delete Component Confirmation" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "" +"Are you sure you want to delete this component? This action cannot be " +"undone." +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js +msgid "Deleting…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js +msgid "Adding…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Duplicating…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Delete this component?" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Deleting this component is permanent and cannot be undone." +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Yes, delete this component" +msgstr "" + +#: cms/static/js/base.js +msgid "This link will open in a modal window" +msgstr "" + +#: cms/static/js/base.js +msgid "Delete this " +msgstr "" + +#: cms/static/js/base.js +msgid "Deleting this " +msgstr "" + +#: cms/static/js/base.js +msgid "Yes, delete this " +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces or special characters in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "" +"The combined length of the organization, course number, and course run " +"fields cannot be more than 65 characters." +msgstr "" + +#: cms/static/js/index.js +msgid "Required field." +msgstr "" + +#: cms/static/js/sock.js +msgid "Hide Studio Help" +msgstr "" + +#: cms/static/js/sock.js +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/static/js/models/course.js cms/static/js/models/section.js +msgid "You must specify a name" +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "" +"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " +"<%= fileExtensions %> to upload." +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "or" +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course must have an assigned start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course end date cannot be before the course start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course start date cannot be before the enrollment start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment start date cannot be after the enrollment end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment end date cannot be after the course end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "Key should only contain letters, numbers, _, or -" +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "There's already another assignment type with this name." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer between 0 and 100." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer greater than 0." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter non-negative integer." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Cannot drop more <% attrs.types %> than will assigned." +msgstr "" + +#: cms/static/js/models/settings/course_grading_policy.js +msgid "Grace period must be specified in HH:MM format." +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Delete File Confirmation" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "" +"Are you sure you wish to delete this item. It cannot be reversed!\n" +"\n" +"Also any content that links/refers to this item will no longer work (e.g. broken images and/or links)" +msgstr "" + +#: cms/static/js/views/asset.js cms/static/js/views/show_textbook.js +msgid "Delete" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Your file has been deleted." +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Name" +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Date Added" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "Are you sure you want to delete this update?" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "This action cannot be undone." +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Upload a new PDF to “<%= name %>”" +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + +#: cms/static/js/views/edit_textbook.js +#: cms/static/js/views/overview_assignment_grader.js +msgid "Saving" +msgstr "" + +#: cms/static/js/views/import.js +msgid "There was an error with the upload" +msgstr "" + +#: cms/static/js/views/import.js +msgid "" +"File format not supported. Please upload a file with a tar.gz " +"extension." +msgstr "" + +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Collapse All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Expand All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Release date:" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "{month}/{day}/{year} at {hour}:{minute} UTC" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Edit section release date" +msgstr "" + +#: cms/static/js/views/overview_assignment_grader.js +msgid "Not Graded" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "ascending" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "descending" +msgstr "" + +#: cms/static/js/views/paging_header.js +msgid "" +"Showing %(current_span)s%(start)s-%(end)s%(end_span)s out of " +"%(total_span)s%(total)s total%(end_span)s, sorted by " +"%(order_span)s%(sort_order)s%(end_span)s %(sort_direction)s" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Your change could not be saved" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Return and resolve this issue" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Delete “<%= name %>”?" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "" +"Deleting a textbook cannot be undone and once deleted any reference to it in" +" your courseware's navigation will also be removed." +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Deleting" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "We're sorry, there was an error" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes will not take effect until you save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes, but there are some errors" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "" +"Please address the errors on this page first, and then save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Save Changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes have been saved." +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Your changes will not take effect until you save your progress. Take care " +"with key and value formatting, as validation is not implemented." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Please note that validation of your policy key and value pairs is not " +"currently in place yet. If you are having difficulties, please review your " +"policy pairs." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Upload your course image." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Files must be in JPEG or PNG format." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/ko_KR/LC_MESSAGES/django.mo b/conf/locale/ko_KR/LC_MESSAGES/django.mo index 53013434f7..a1cf81b339 100644 Binary files a/conf/locale/ko_KR/LC_MESSAGES/django.mo and b/conf/locale/ko_KR/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ko_KR/LC_MESSAGES/django.po b/conf/locale/ko_KR/LC_MESSAGES/django.po index 82e9d6b512..b5aa35b1eb 100644 --- a/conf/locale/ko_KR/LC_MESSAGES/django.po +++ b/conf/locale/ko_KR/LC_MESSAGES/django.po @@ -58,7 +58,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-04-15 15:10+0000\n" "Last-Translator: 김 규동 \n" "Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/edx-platform/language/ko_KR/)\n" @@ -820,7 +820,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1371,6 +1371,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -4789,10 +4799,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4802,6 +4826,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5623,10 +5651,6 @@ msgstr "비디오 다운로드" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/ko_KR/LC_MESSAGES/djangojs.mo b/conf/locale/ko_KR/LC_MESSAGES/djangojs.mo index 967bb05ef3..cc0e62fade 100644 Binary files a/conf/locale/ko_KR/LC_MESSAGES/djangojs.mo and b/conf/locale/ko_KR/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ko_KR/LC_MESSAGES/djangojs.po b/conf/locale/ko_KR/LC_MESSAGES/djangojs.po index 3ee0f08728..c976b3c751 100644 --- a/conf/locale/ko_KR/LC_MESSAGES/djangojs.po +++ b/conf/locale/ko_KR/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-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/edx-platform/language/ko_KR/)\n" diff --git a/conf/locale/lt_LT/LC_MESSAGES/django.mo b/conf/locale/lt_LT/LC_MESSAGES/django.mo index 1ac28fbf3f..2094d93fd3 100644 Binary files a/conf/locale/lt_LT/LC_MESSAGES/django.mo and b/conf/locale/lt_LT/LC_MESSAGES/django.mo differ diff --git a/conf/locale/lt_LT/LC_MESSAGES/django.po b/conf/locale/lt_LT/LC_MESSAGES/django.po index 2eba9cbd1b..1c1fdf34d4 100644 --- a/conf/locale/lt_LT/LC_MESSAGES/django.po +++ b/conf/locale/lt_LT/LC_MESSAGES/django.po @@ -4,6 +4,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Riina , 2014 # Edukometrija , 2014 # Gediminas Trakas , 2014 # zzygis , 2013 @@ -55,8 +56,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" -"PO-Revision-Date: 2014-02-13 21:00+0000\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-30 21:00+0000\n" "Last-Translator: Edukometrija \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/edx-platform/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -826,7 +827,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1389,6 +1390,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "URL nuoroda į vaizdo įrašą YouTube arba kitoje vietoje Internete." +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Navigacija" @@ -4876,10 +4887,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4889,6 +4914,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5688,10 +5717,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/lt_LT/LC_MESSAGES/djangojs.mo b/conf/locale/lt_LT/LC_MESSAGES/djangojs.mo index 8e7ada4e2b..ce309a5db5 100644 Binary files a/conf/locale/lt_LT/LC_MESSAGES/djangojs.mo and b/conf/locale/lt_LT/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/lt_LT/LC_MESSAGES/djangojs.po b/conf/locale/lt_LT/LC_MESSAGES/djangojs.po index ee4a352504..1ac50017a0 100644 --- a/conf/locale/lt_LT/LC_MESSAGES/djangojs.po +++ b/conf/locale/lt_LT/LC_MESSAGES/djangojs.po @@ -4,6 +4,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# Riina , 2014 # Edukometrija , 2014 # Gediminas Trakas , 2013 # zzygis , 2013 @@ -21,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/edx-platform/language/lt_LT/)\n" diff --git a/conf/locale/ml/LC_MESSAGES/django.mo b/conf/locale/ml/LC_MESSAGES/django.mo index d7776bd944..dfb688023f 100644 Binary files a/conf/locale/ml/LC_MESSAGES/django.mo and b/conf/locale/ml/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ml/LC_MESSAGES/django.po b/conf/locale/ml/LC_MESSAGES/django.po index 424d390e66..96c93e573a 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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -171,6 +171,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -181,6 +191,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -307,7 +324,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -319,6 +336,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -767,7 +800,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -788,6 +821,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -800,6 +837,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -894,6 +953,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -926,11 +989,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -980,6 +1061,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1264,10 +1357,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1695,10 +1802,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1741,6 +1852,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2028,7 +2148,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2255,37 +2375,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2385,6 +2474,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3077,6 +3170,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3143,6 +3237,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3684,35 +3779,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3730,6 +3801,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3754,23 +3838,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3811,14 +3913,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 "" @@ -4026,12 +4120,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4042,12 +4135,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4088,11 +4180,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4201,6 +4329,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4256,18 +4388,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4375,14 +4495,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4425,7 +4541,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4652,10 +4769,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4665,6 +4811,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4708,15 +4862,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4768,6 +4922,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4825,8 +4983,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4883,10 +5042,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4967,6 +5128,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5057,33 +5238,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5092,6 +5257,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5108,14 +5277,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5155,7 +5316,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5200,43 +5361,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5485,8 +5614,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5724,6 +5853,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5732,6 +5865,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5775,17 +5922,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5915,6 +6056,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5935,12 +6080,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6275,12 +6420,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6394,10 +6533,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6570,6 +6717,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6688,6 +6842,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7050,24 +7208,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7079,6 +7227,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7118,10 +7274,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7202,6 +7367,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7212,10 +7381,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7639,7 +7804,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7650,9 +7816,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7670,6 +7837,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7691,7 +7862,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7700,6 +7871,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7831,6 +8012,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8062,6 +8264,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8298,6 +8506,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8537,20 +8755,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8560,7 +8776,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8931,6 +9147,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8971,13 +9189,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9666,19 +9878,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9692,23 +9901,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9743,6 +9969,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11377,6 +11610,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11465,15 +11702,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/ml/LC_MESSAGES/djangojs.mo b/conf/locale/ml/LC_MESSAGES/djangojs.mo index ef5e55a9c1..491f73cd62 100644 Binary files a/conf/locale/ml/LC_MESSAGES/djangojs.mo and b/conf/locale/ml/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ml/LC_MESSAGES/djangojs.po b/conf/locale/ml/LC_MESSAGES/djangojs.po index 0ecf820496..b2017cd2bf 100644 --- a/conf/locale/ml/LC_MESSAGES/djangojs.po +++ b/conf/locale/ml/LC_MESSAGES/djangojs.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 23:13+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/edx-platform/language/ml/)\n" "MIME-Version: 1.0\n" @@ -28,6 +28,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -36,6 +37,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -335,6 +338,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -391,16 +396,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -462,6 +465,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -498,6 +506,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -876,9 +888,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -886,7 +899,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1220,15 +1233,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1338,18 +1352,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1365,6 +1374,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1372,19 +1382,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1531,6 +1541,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1546,6 +1560,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1607,6 +1625,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1636,6 +1658,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1660,3 +1702,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/mn/LC_MESSAGES/django.mo b/conf/locale/mn/LC_MESSAGES/django.mo index 2c8fa55af4..9c35ea77b7 100644 Binary files a/conf/locale/mn/LC_MESSAGES/django.mo and b/conf/locale/mn/LC_MESSAGES/django.mo differ diff --git a/conf/locale/mn/LC_MESSAGES/django.po b/conf/locale/mn/LC_MESSAGES/django.po index 9f088cf8c5..4ed0f0b93d 100644 --- a/conf/locale/mn/LC_MESSAGES/django.po +++ b/conf/locale/mn/LC_MESSAGES/django.po @@ -28,19 +28,23 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# zolboo0411 , 2014 # #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2014 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# ggtulga , 2014 +# uuganaa45 , 2014 +# zolboo0411 , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-02-15 19:51+0000\n" -"Last-Translator: nedbat \n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-30 08:01+0000\n" +"Last-Translator: uuganaa45 \n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/edx-platform/language/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -171,6 +175,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -181,6 +195,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -307,7 +328,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -319,6 +340,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -767,7 +804,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -788,6 +825,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -800,6 +841,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -894,6 +957,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -926,11 +993,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -980,6 +1065,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1264,10 +1361,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1695,10 +1806,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1741,6 +1856,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2028,7 +2152,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2255,37 +2379,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2385,6 +2478,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3077,6 +3174,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3143,6 +3241,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3684,35 +3783,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3730,6 +3805,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3754,23 +3842,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3811,14 +3917,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 "" @@ -4026,12 +4124,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4042,12 +4139,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4088,11 +4184,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4201,6 +4333,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4256,18 +4392,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4375,14 +4499,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4425,7 +4545,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4652,10 +4773,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4665,6 +4815,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4708,15 +4866,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4768,6 +4926,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4825,8 +4987,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4883,10 +5046,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4967,6 +5132,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5057,33 +5242,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5092,6 +5261,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5108,14 +5281,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5155,7 +5320,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5200,43 +5365,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5485,8 +5618,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5724,6 +5857,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5732,6 +5869,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5775,17 +5926,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5915,6 +6060,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5935,12 +6084,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6275,12 +6424,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6394,10 +6537,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6570,6 +6721,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6688,6 +6846,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7050,24 +7212,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7079,6 +7231,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7118,10 +7278,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7202,6 +7371,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7212,10 +7385,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7639,7 +7808,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7650,9 +7820,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7670,6 +7841,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7691,7 +7866,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7700,6 +7875,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7831,6 +8016,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8062,6 +8268,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8298,6 +8510,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8537,20 +8759,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8560,7 +8780,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8931,6 +9151,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8971,13 +9193,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9666,19 +9882,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9692,23 +9905,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9743,6 +9973,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11377,6 +11614,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11465,15 +11706,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/mn/LC_MESSAGES/djangojs.mo b/conf/locale/mn/LC_MESSAGES/djangojs.mo index d41c113601..d841c437da 100644 Binary files a/conf/locale/mn/LC_MESSAGES/djangojs.mo and b/conf/locale/mn/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/mn/LC_MESSAGES/djangojs.po b/conf/locale/mn/LC_MESSAGES/djangojs.po index 611e12ddbc..65fbc31c27 100644 --- a/conf/locale/mn/LC_MESSAGES/djangojs.po +++ b/conf/locale/mn/LC_MESSAGES/djangojs.po @@ -4,19 +4,22 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# zolboo0411 , 2014 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# # edX translation file. # Copyright (C) 2014 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# uuganaa45 , 2014 +# zolboo0411 , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" -"Last-Translator: sarina \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-30 07:50+0000\n" +"Last-Translator: uuganaa45 \n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/edx-platform/language/mn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,6 +29,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -34,6 +38,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -333,6 +339,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -389,16 +397,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -460,6 +466,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -496,6 +507,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -874,9 +889,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -884,7 +900,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1218,15 +1234,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1336,18 +1353,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1363,6 +1375,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1370,19 +1383,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1529,6 +1542,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1544,6 +1561,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1605,6 +1626,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1634,6 +1659,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1658,3 +1703,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/ms/LC_MESSAGES/django.mo b/conf/locale/ms/LC_MESSAGES/django.mo index 62087c7cbb..487856a0ca 100644 Binary files a/conf/locale/ms/LC_MESSAGES/django.mo and b/conf/locale/ms/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ms/LC_MESSAGES/django.po b/conf/locale/ms/LC_MESSAGES/django.po index 72e7a24f2c..b3ef799844 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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -172,6 +172,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -182,6 +192,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -308,7 +325,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -320,6 +337,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -768,7 +801,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -789,6 +822,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -801,6 +838,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -895,6 +954,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -927,11 +990,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -981,6 +1062,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1265,10 +1358,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1696,10 +1803,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1742,6 +1853,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2029,7 +2149,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2256,37 +2376,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2386,6 +2475,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3078,6 +3171,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3144,6 +3238,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3685,35 +3780,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3731,6 +3802,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3755,23 +3839,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3812,14 +3914,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 "" @@ -4027,12 +4121,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4043,12 +4136,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4089,11 +4181,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4202,6 +4330,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4257,18 +4389,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4376,14 +4496,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4426,7 +4542,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4653,10 +4770,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4666,6 +4812,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4709,15 +4863,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4769,6 +4923,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4826,8 +4984,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4884,10 +5043,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4968,6 +5129,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5058,33 +5239,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5093,6 +5258,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5109,14 +5278,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5156,7 +5317,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5201,43 +5362,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5486,8 +5615,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5723,6 +5852,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5731,6 +5864,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5774,17 +5921,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5914,6 +6055,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5934,12 +6079,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6274,12 +6419,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6393,10 +6532,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6569,6 +6716,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6687,6 +6841,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7047,24 +7205,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7076,6 +7224,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7115,10 +7271,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7199,6 +7364,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7209,10 +7378,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7636,7 +7801,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7647,9 +7813,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7667,6 +7834,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7688,7 +7859,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7697,6 +7868,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7828,6 +8009,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8059,6 +8261,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8295,6 +8503,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8534,20 +8752,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8557,7 +8773,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8928,6 +9144,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8968,13 +9186,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9663,19 +9875,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9689,23 +9898,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9740,6 +9966,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11374,6 +11607,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11462,15 +11699,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/ms/LC_MESSAGES/djangojs.mo b/conf/locale/ms/LC_MESSAGES/djangojs.mo index 67249ec811..3de19fa402 100644 Binary files a/conf/locale/ms/LC_MESSAGES/djangojs.mo and b/conf/locale/ms/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ms/LC_MESSAGES/djangojs.po b/conf/locale/ms/LC_MESSAGES/djangojs.po index 8f119c6459..f88e4fba1f 100644 --- a/conf/locale/ms/LC_MESSAGES/djangojs.po +++ b/conf/locale/ms/LC_MESSAGES/djangojs.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Malay (http://www.transifex.com/projects/p/edx-platform/language/ms/)\n" "MIME-Version: 1.0\n" @@ -27,6 +27,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -35,6 +36,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -329,6 +332,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -385,15 +390,13 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js @@ -453,6 +456,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -487,6 +495,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -859,9 +871,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -869,7 +882,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1203,15 +1216,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1321,18 +1335,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1348,6 +1357,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1355,19 +1365,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1514,6 +1524,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1529,6 +1543,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1590,6 +1608,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1619,6 +1641,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1643,3 +1685,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/nb/LC_MESSAGES/django.mo b/conf/locale/nb/LC_MESSAGES/django.mo index 2294b1a5a4..efd1734b22 100644 Binary files a/conf/locale/nb/LC_MESSAGES/django.mo and b/conf/locale/nb/LC_MESSAGES/django.mo differ diff --git a/conf/locale/nb/LC_MESSAGES/django.po b/conf/locale/nb/LC_MESSAGES/django.po index ca7105b54c..bb66605d0e 100644 --- a/conf/locale/nb/LC_MESSAGES/django.po +++ b/conf/locale/nb/LC_MESSAGES/django.po @@ -46,6 +46,7 @@ # # Translators: # aalst , 2014 +# tekla, 2014 # espenbye , 2014 # Paalmessenlien , 2014 # Paalmessenlien , 2014 @@ -70,7 +71,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-03-31 22:11+0000\n" "Last-Translator: Paalmessenlien \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/edx-platform/language/nb/)\n" @@ -846,7 +847,7 @@ msgid "unanswered" msgstr "ubesvart" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1430,6 +1431,16 @@ msgstr "" "En YouTube URL eller en lenke til en fil som er lagret hvor som helst på " "weben." +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Navigering" @@ -4678,7 +4689,7 @@ msgstr "Studenter avvist:" #: lms/templates/enroll_students.html msgid "Debug: " -msgstr "" +msgstr "Debug:" #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" @@ -4694,11 +4705,11 @@ msgstr "Status:" #: lms/templates/folditbasic.html msgid "You have successfully gotten to level {goal_level}." -msgstr "" +msgstr "Du har kommet til nivå {goal_level}." #: lms/templates/folditbasic.html msgid "You have not yet gotten to level {goal_level}." -msgstr "" +msgstr "Du har ennå ikke kommet til nivå {goal_level}." #: lms/templates/folditbasic.html msgid "Completed puzzles" @@ -4943,7 +4954,7 @@ msgstr "Gratis kurs fra {university_name}" #: lms/templates/index.html msgid "The Future of Online Education" -msgstr "Fremtidens nettbaserte utdanning" +msgstr "Fremtiden til nettbasert undervisning" #: lms/templates/index.html msgid "For anyone, anywhere, anytime" @@ -5078,10 +5089,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -5091,6 +5116,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5894,10 +5923,6 @@ msgstr "Last ned video" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "{file_format}" - #: lms/templates/video.html msgid "Download Handout" msgstr "" @@ -6805,7 +6830,7 @@ msgstr "" #: lms/templates/courseware/news.html msgid "News - MITx 6.002x" -msgstr "" +msgstr "Nyheter - MITx 6.002x" #: lms/templates/courseware/news.html msgid "Updates to Discussion Posts You Follow" @@ -8941,11 +8966,11 @@ msgstr "" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Starts: {start_date}" -msgstr "" +msgstr "Starter: {start_date}" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Go to Course" -msgstr "" +msgstr "Gå til kurs" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Go to your Dashboard" @@ -9170,7 +9195,7 @@ msgstr "" #: lms/templates/verify_student/_verification_support.html #: lms/templates/verify_student/_verification_support.html msgid "Change your mind?" -msgstr "" +msgstr "Ombestemt deg?" #: lms/templates/verify_student/_verification_support.html #: lms/templates/verify_student/photo_verification.html @@ -9830,7 +9855,7 @@ msgstr "" #: lms/templates/verify_student/show_requirements.html msgid "You need to activate your edX account before proceeding" -msgstr "" +msgstr "Du må aktivere din edX-konto før du fortsetter" #: lms/templates/verify_student/show_requirements.html msgid "" @@ -9902,7 +9927,7 @@ msgstr "" #: lms/templates/verify_student/show_requirements.html msgid "" "Please make sure your browser is updated to the most recent version possible" -msgstr "" +msgstr "Forsikre deg om at nettleseren din er oppdatert til siste versjon" #: lms/templates/verify_student/show_requirements.html msgid "Credit or Debit Card" diff --git a/conf/locale/nb/LC_MESSAGES/djangojs.mo b/conf/locale/nb/LC_MESSAGES/djangojs.mo index c345001d68..7c8721d58d 100644 Binary files a/conf/locale/nb/LC_MESSAGES/djangojs.mo and b/conf/locale/nb/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/nb/LC_MESSAGES/djangojs.po b/conf/locale/nb/LC_MESSAGES/djangojs.po index d60c8f028b..0a5bb14af8 100644 --- a/conf/locale/nb/LC_MESSAGES/djangojs.po +++ b/conf/locale/nb/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-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 19:11+0000\n" "Last-Translator: Frode \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/edx-platform/language/nb/)\n" diff --git a/conf/locale/ne/LC_MESSAGES/django.mo b/conf/locale/ne/LC_MESSAGES/django.mo index b8f4007ca2..285881692f 100644 Binary files a/conf/locale/ne/LC_MESSAGES/django.mo and b/conf/locale/ne/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ne/LC_MESSAGES/django.po b/conf/locale/ne/LC_MESSAGES/django.po index 2f6d073231..370f31442e 100644 --- a/conf/locale/ne/LC_MESSAGES/django.po +++ b/conf/locale/ne/LC_MESSAGES/django.po @@ -28,6 +28,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# dipendra , 2014 # #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2014 edX @@ -38,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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -171,6 +172,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -181,6 +192,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -307,7 +325,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -319,6 +337,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -767,7 +801,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -788,6 +822,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -800,6 +838,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -894,6 +954,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -926,11 +990,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -980,6 +1062,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1264,10 +1358,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1695,10 +1803,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1741,6 +1853,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2028,7 +2149,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2255,37 +2376,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2385,6 +2475,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3077,6 +3171,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3143,6 +3238,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3684,35 +3780,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3730,6 +3802,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3754,23 +3839,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3811,14 +3914,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 "" @@ -4026,12 +4121,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4042,12 +4136,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4088,11 +4181,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4201,6 +4330,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4256,18 +4389,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4375,14 +4496,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4425,7 +4542,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4652,10 +4770,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4665,6 +4812,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4708,15 +4863,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4768,6 +4923,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4825,8 +4984,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4883,10 +5043,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4967,6 +5129,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5057,33 +5239,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5092,6 +5258,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5108,14 +5278,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5155,7 +5317,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5200,43 +5362,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5485,8 +5615,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5724,6 +5854,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5732,6 +5866,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5775,17 +5923,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5915,6 +6057,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5935,12 +6081,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6275,12 +6421,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6394,10 +6534,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6570,6 +6718,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6688,6 +6843,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7050,24 +7209,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7079,6 +7228,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7118,10 +7275,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7202,6 +7368,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7212,10 +7382,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7639,7 +7805,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7650,9 +7817,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7670,6 +7838,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7691,7 +7863,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7700,6 +7872,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7831,6 +8013,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8062,6 +8265,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8298,6 +8507,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8537,20 +8756,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8560,7 +8777,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8931,6 +9148,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8971,13 +9190,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9666,19 +9879,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9692,23 +9902,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9743,6 +9970,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11377,6 +11611,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11465,15 +11703,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html @@ -11739,7 +11977,7 @@ msgstr "" # empty msgid "This is a key string." -msgstr "" +msgstr "यो की स्ट्रिंग हो" #: wiki/admin.py wiki/models/article.py msgid "created" diff --git a/conf/locale/ne/LC_MESSAGES/djangojs.mo b/conf/locale/ne/LC_MESSAGES/djangojs.mo index 5f85a4deb4..64e5e00a60 100644 Binary files a/conf/locale/ne/LC_MESSAGES/djangojs.mo and b/conf/locale/ne/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ne/LC_MESSAGES/djangojs.po b/conf/locale/ne/LC_MESSAGES/djangojs.po index 07c7505c5c..bee82b3055 100644 --- a/conf/locale/ne/LC_MESSAGES/djangojs.po +++ b/conf/locale/ne/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-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/edx-platform/language/ne/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -34,6 +35,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -333,6 +336,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -389,16 +394,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -460,6 +463,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -496,6 +504,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -874,9 +886,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -884,7 +897,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1218,15 +1231,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1336,18 +1350,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1363,6 +1372,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1370,19 +1380,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1529,6 +1539,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1544,6 +1558,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1605,6 +1623,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1634,6 +1656,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1658,3 +1700,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/nl_NL/LC_MESSAGES/django.mo b/conf/locale/nl_NL/LC_MESSAGES/django.mo index 377f7bf23c..259f3ac274 100644 Binary files a/conf/locale/nl_NL/LC_MESSAGES/django.mo and b/conf/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/conf/locale/nl_NL/LC_MESSAGES/django.po b/conf/locale/nl_NL/LC_MESSAGES/django.po index 3483818cbb..3c29b6d12e 100644 --- a/conf/locale/nl_NL/LC_MESSAGES/django.po +++ b/conf/locale/nl_NL/LC_MESSAGES/django.po @@ -22,6 +22,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# HanMi, 2014 # GlassParade , 2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX translation file @@ -43,15 +44,17 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# HanMi, 2014 # GlassParade , 2014 # kajhuisman , 2014 +# marlasinger1470 , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" -"PO-Revision-Date: 2014-04-25 11:30+0000\n" -"Last-Translator: kajhuisman \n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-30 15:00+0000\n" +"Last-Translator: HanMi\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/edx-platform/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -816,7 +819,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1381,6 +1384,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Navigatie" @@ -4787,10 +4800,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4800,6 +4827,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5599,10 +5630,6 @@ msgstr "Download video" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/nl_NL/LC_MESSAGES/djangojs.mo b/conf/locale/nl_NL/LC_MESSAGES/djangojs.mo index 4ab707aadf..e8b323f69b 100644 Binary files a/conf/locale/nl_NL/LC_MESSAGES/djangojs.mo and b/conf/locale/nl_NL/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/nl_NL/LC_MESSAGES/djangojs.po b/conf/locale/nl_NL/LC_MESSAGES/djangojs.po index 08daae21d8..3ab929a2c6 100644 --- a/conf/locale/nl_NL/LC_MESSAGES/djangojs.po +++ b/conf/locale/nl_NL/LC_MESSAGES/djangojs.po @@ -4,6 +4,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# HanMi, 2014 # GlassParade , 2014 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# # edX translation file. @@ -11,14 +12,15 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# HanMi, 2014 # kajhuisman , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" -"PO-Revision-Date: 2014-04-24 13:01+0000\n" -"Last-Translator: sarina \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-05-01 09:30+0000\n" +"Last-Translator: HanMi\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/edx-platform/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/conf/locale/pl/LC_MESSAGES/django.mo b/conf/locale/pl/LC_MESSAGES/django.mo index d9678c07ba..d078decd68 100644 Binary files a/conf/locale/pl/LC_MESSAGES/django.mo and b/conf/locale/pl/LC_MESSAGES/django.mo differ diff --git a/conf/locale/pl/LC_MESSAGES/django.po b/conf/locale/pl/LC_MESSAGES/django.po index c3748c4e67..ee98c93e87 100644 --- a/conf/locale/pl/LC_MESSAGES/django.po +++ b/conf/locale/pl/LC_MESSAGES/django.po @@ -30,7 +30,7 @@ # lazarus_zamenhof , 2014 # Cairath, 2014 # Oninix , 2014 -# rutek , 2014 +# rutek , 2014 # kmti , 2014 # ajafo , 2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# @@ -57,14 +57,15 @@ # # Translators: # kmti , 2014 +# AlinaG , 2014 # Cairath, 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" -"PO-Revision-Date: 2014-03-14 16:10+0000\n" -"Last-Translator: Cairath\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-29 17:50+0000\n" +"Last-Translator: AlinaG \n" "Language-Team: Polish (http://www.transifex.com/projects/p/edx-platform/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -824,7 +825,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1389,6 +1390,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -4792,10 +4803,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4805,6 +4830,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5604,10 +5633,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "{file_format}" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/pl/LC_MESSAGES/djangojs.mo b/conf/locale/pl/LC_MESSAGES/djangojs.mo index a5f5cd9d04..6adb08b11c 100644 Binary files a/conf/locale/pl/LC_MESSAGES/djangojs.mo and b/conf/locale/pl/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/pl/LC_MESSAGES/djangojs.po b/conf/locale/pl/LC_MESSAGES/djangojs.po index d1912b4745..ba5c4aad6d 100644 --- a/conf/locale/pl/LC_MESSAGES/djangojs.po +++ b/conf/locale/pl/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-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Polish (http://www.transifex.com/projects/p/edx-platform/language/pl/)\n" diff --git a/conf/locale/pt_BR/LC_MESSAGES/django.mo b/conf/locale/pt_BR/LC_MESSAGES/django.mo index 4b3eadb091..5bbbe608d8 100644 Binary files a/conf/locale/pt_BR/LC_MESSAGES/django.mo and b/conf/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/conf/locale/pt_BR/LC_MESSAGES/django.po b/conf/locale/pt_BR/LC_MESSAGES/django.po index a0786411fe..fed038ed9f 100644 --- a/conf/locale/pt_BR/LC_MESSAGES/django.po +++ b/conf/locale/pt_BR/LC_MESSAGES/django.po @@ -45,6 +45,7 @@ # alex_unipampa , 2013 # alex_unipampa , 2013 # andreibosco , 2014 +# anunciato , 2014 # brk0_0, 2013 # brunojm , 2013 # brunojm , 2013 @@ -58,6 +59,7 @@ # brk0_0, 2013 # RenataBarboza, 2013-2014 # rpietrobon , 2013-2014 +# RODRIGOR77 , 2014 # sarina , 2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX translation file @@ -103,7 +105,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: Álex Filipe \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/edx-platform/language/pt_BR/)\n" @@ -880,7 +882,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1467,6 +1469,16 @@ msgstr "" "Uma URL do YouTube ou um link para um arquivo hospedado em qualquer lugar na" " web." +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Navegação" @@ -5202,10 +5214,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "Recurso externo" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "Veja o recurso em uma nova janela" @@ -5217,6 +5243,10 @@ msgstr "" "Por favor disponibilize uma URL de lançamento. Clique em \"Editar\" e " "preencha os campos necessários" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -6066,10 +6096,6 @@ msgstr "Baixar Vídeo" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "{file_format}" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo b/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo index 3730a03441..859ce78fe6 100644 Binary files a/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo and b/conf/locale/pt_BR/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/pt_BR/LC_MESSAGES/djangojs.po b/conf/locale/pt_BR/LC_MESSAGES/djangojs.po index 4657229def..94f7d43bee 100644 --- a/conf/locale/pt_BR/LC_MESSAGES/djangojs.po +++ b/conf/locale/pt_BR/LC_MESSAGES/djangojs.po @@ -19,6 +19,7 @@ # RenataBarboza, 2013 # RenataBarboza, 2013-2014 # rpietrobon , 2013-2014 +# RODRIGOR77 , 2014 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# # edX translation file. # Copyright (C) 2014 EdX @@ -37,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/edx-platform/language/pt_BR/)\n" diff --git a/conf/locale/pt_PT/LC_MESSAGES/django.mo b/conf/locale/pt_PT/LC_MESSAGES/django.mo index 5cfffc8036..95b8638948 100644 Binary files a/conf/locale/pt_PT/LC_MESSAGES/django.mo and b/conf/locale/pt_PT/LC_MESSAGES/django.mo differ diff --git a/conf/locale/pt_PT/LC_MESSAGES/django.po b/conf/locale/pt_PT/LC_MESSAGES/django.po index 17fb6fc3b3..3a85bd1c9c 100644 --- a/conf/locale/pt_PT/LC_MESSAGES/django.po +++ b/conf/locale/pt_PT/LC_MESSAGES/django.po @@ -8,6 +8,7 @@ # david1980 , 2014 # david1980 , 2014 # ksh , 2013 +# Ricardo Basílio , 2014 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# # edX translation file. # Copyright (C) 2014 EdX @@ -24,6 +25,7 @@ # ksh , 2013 # david1980 , 2014 # ksh , 2013 +# CptOrange , 2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2014 edX @@ -45,13 +47,14 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# luismg9 , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-16 17:10+0000\n" -"Last-Translator: nedbat \n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-30 13:20+0000\n" +"Last-Translator: luismg9 \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/edx-platform/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -182,6 +185,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -192,6 +205,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -318,7 +338,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -330,6 +350,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -778,7 +814,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -799,6 +835,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -811,6 +851,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -905,6 +967,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -937,11 +1003,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -991,6 +1075,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1275,10 +1371,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1706,10 +1816,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1752,6 +1866,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2039,7 +2162,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2266,37 +2389,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2396,6 +2488,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3088,6 +3184,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3154,6 +3251,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3695,35 +3793,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3741,6 +3815,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3765,23 +3852,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3822,14 +3927,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 "" @@ -4037,12 +4134,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4053,12 +4149,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4099,11 +4194,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4212,6 +4343,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4267,18 +4402,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4386,14 +4509,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4436,7 +4555,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4663,10 +4783,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4676,6 +4825,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4719,15 +4876,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4779,6 +4936,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4836,8 +4997,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4894,10 +5056,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4978,6 +5142,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5068,33 +5252,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5103,6 +5271,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5119,14 +5291,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5166,7 +5330,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5211,43 +5375,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5496,8 +5628,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5735,6 +5867,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5743,6 +5879,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5786,17 +5936,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5926,6 +6070,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5946,12 +6094,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6286,12 +6434,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6405,10 +6547,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6581,6 +6731,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6699,6 +6856,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7061,24 +7222,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7090,6 +7241,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7129,10 +7288,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7213,6 +7381,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7223,10 +7395,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7650,7 +7818,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7661,9 +7830,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7681,6 +7851,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7702,7 +7876,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7711,6 +7885,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7842,6 +8026,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8073,6 +8278,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8309,6 +8520,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8548,20 +8769,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8571,7 +8790,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8942,6 +9161,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8982,13 +9203,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9677,19 +9892,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9703,23 +9915,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9754,6 +9983,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11388,6 +11624,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11476,15 +11716,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/pt_PT/LC_MESSAGES/djangojs.mo b/conf/locale/pt_PT/LC_MESSAGES/djangojs.mo index 8cf780481e..6a3d461334 100644 Binary files a/conf/locale/pt_PT/LC_MESSAGES/djangojs.mo and b/conf/locale/pt_PT/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/pt_PT/LC_MESSAGES/djangojs.po b/conf/locale/pt_PT/LC_MESSAGES/djangojs.po index dbae7105d4..d0e7cf1bc3 100644 --- a/conf/locale/pt_PT/LC_MESSAGES/djangojs.po +++ b/conf/locale/pt_PT/LC_MESSAGES/djangojs.po @@ -6,6 +6,7 @@ # Translators: # ksh , 2013 # ksh , 2013 +# Ricardo Basílio , 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-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 23:13+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/edx-platform/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -29,6 +30,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -37,6 +39,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -336,6 +340,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -392,16 +398,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -463,6 +467,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -499,6 +508,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -877,9 +890,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -887,7 +901,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1221,15 +1235,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1339,18 +1354,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1366,6 +1376,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1373,19 +1384,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1532,6 +1543,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1547,6 +1562,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1608,6 +1627,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1637,6 +1660,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1661,3 +1704,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/ro/LC_MESSAGES/django.mo b/conf/locale/ro/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..059f48042e Binary files /dev/null and b/conf/locale/ro/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ro/LC_MESSAGES/django.po b/conf/locale/ro/LC_MESSAGES/django.po new file mode 100644 index 0000000000..3577f70671 --- /dev/null +++ b/conf/locale/ro/LC_MESSAGES/django.po @@ -0,0 +1,12584 @@ +# #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Romanian (http://www.transifex.com/projects/p/edx-platform/language/ro/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Romanian (http://www.transifex.com/projects/p/edx-platform/language/ro/) +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# messages.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2013 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-02-06 03:04+0000\n" +"Last-Translator: \n" +"Language-Team: Romanian (http://www.transifex.com/projects/p/edx-platform/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 1.3\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. Translators: "Open Ended Panel" appears on a tab that, when clicked, opens +#. up a panel that +#. displays information about open-ended problems that a user has submitted or +#. needs to grade +#: cms/djangoapps/contentstore/utils.py common/lib/xmodule/xmodule/tabs.py +msgid "Open Ended Panel" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "Honor Code Certificate" +msgstr "" + +#: common/djangoapps/course_modes/views.py common/djangoapps/student/views.py +msgid "Enrollment is closed" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment mode not supported" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Invalid amount selected." +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "No selected price or selected price is too low." +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Community TA" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "" +"Your account has been disabled. If you believe this was done in error, " +"please contact us at {link_start}{support_email}{link_end}" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "Disabled Account" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Male" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Female" +msgstr "" + +#. Translators: 'Other' refers to the student's gender +#. Translators: 'Other' refers to the student's level of education +#: common/djangoapps/student/models.py common/djangoapps/student/models.py +msgid "Other" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Doctorate" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Master's or professional degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Bachelor's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Associate's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Secondary/high school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Junior secondary/junior high/middle school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Elementary/primary school" +msgstr "" + +#. Translators: 'None' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "None" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id not specified" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id is invalid" +msgstr "" + +#: common/djangoapps/student/views.py +#: lms/templates/courseware/course_about.html +msgid "Course is full" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You are not enrolled in this course" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Enrollment action is invalid" +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "There was an error receiving your login information. Please email us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has been temporarily locked due to excessive login failures. " +"Try again later." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Too many failed login attempts. Try again later." +msgstr "" + +#: common/djangoapps/student/views.py lms/templates/provider_login.html +msgid "Email or password is incorrect." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has not been activated. We have sent another activation " +"message. Please check your e-mail for the activation instructions." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please enter a username" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please choose an option" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "User with username {} does not exist" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully disabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully reenabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unexpected account status" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Public Username '{username}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Email '{email}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Error (401 {field}). E-mail us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Accepting Terms of Service is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Agreeing to the Honor Code is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Email cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail is required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Could not send activation e-mail." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unknown error. Please e-mail us to let us know how it happened." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "No inactive user with this e-mail exists" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unable to send reactivation email" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Invalid password" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail address required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with this e-mail already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Old email is the same as the new email." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Name required" +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Invalid ID" +msgstr "" + +#. Translators: the translation for "LONG_DATE_FORMAT" must be a format +#. string for formatting dates in a long form. For example, the +#. American English form is "%A, %B %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "LONG_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "DATE_TIME_FORMAT" must be a format +#. string for formatting dates with times. For example, the American +#. English form is "%b %d, %Y at %H:%M". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "DATE_TIME_FORMAT" +msgstr "" + +#. Translators: the translation for "SHORT_DATE_FORMAT" must be a +#. format string for formatting dates in a brief form. For example, +#. the American English form is "%b %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "SHORT_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "TIME_FORMAT" must be a format +#. string for formatting times. For example, the American English +#. form is "%H:%M:%S". See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "TIME_FORMAT" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "AM" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "PM" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Monday Februrary 10, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Monday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Tuesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Wednesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Thursday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Friday Februrary 14, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Friday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Saturday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Sunday" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jan 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Feb 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Mar 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Apr 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "May 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "May" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jun 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jul 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Aug 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Sep 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Oct 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Nov 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Dec 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "January 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "January" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "February 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "February" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "March 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "March" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "April 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "April" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "May 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "May" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "June 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "June" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "July 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "July" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "August 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "August" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "September 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "September" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "October 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "October" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "November 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "November" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "December 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "December" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Invalid Length ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or more" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or less" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Must be more complex ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more uppercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more lowercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more digits" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more punctuation characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more non ascii characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more unique words" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Too similar to a restricted dictionary word." +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +msgid "Cannot rescore problems with possible file submissions" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "correct" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incorrect" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incomplete" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +msgid "unanswered" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "processing" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your file(s) have been submitted. As soon as your submission is graded, this" +" message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your answer has been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Submitted. As soon as a response is returned, this message will be replaced " +"by that feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Error {err} in evaluating hint function {hintfn}." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "(Source code line unavailable)" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "See XML source line {sourcenum}." +msgstr "" + +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +msgid "There was a problem with the staff answer to this problem." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{student_answer}' as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use variables ({bad_variables}) in numerical problems." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "factorial function evaluated outside its domain:'{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid math syntax: '{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use complex numbers in range tolerance problems" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: complex boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: empty boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "CustomResponse: check function returned an invalid dictionary!" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"Unable to deliver your submission to grader (Reason: {error_msg}). Please " +"try again later." +msgstr "" + +#. Translators: 'grader' refers to the edX automatic code grader. +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/capa/capa/responsetypes.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Invalid grader reply. Please contact the course staff." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: {bad_input} not permitted in answer." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"factorial function not permitted in answer for this problem. Provided answer" +" was: {bad_input}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula" +msgstr "" + +#. Translators: 'SchematicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "The Staff answer could not be interpreted as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{given_answer}' as a number." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Final Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Warning: The problem has been reset to its initial state!" +msgstr "" + +#. Translators: Following this message, there will be a bulleted list of +#. items. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"The problem's state was corrupted by an invalid submission. The submission " +"consisted of:" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "If this error persists, please contact the course staff." +msgstr "" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem is closed." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be reset before it can be checked again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You must wait at least {wait} seconds between submissions." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + +#. Translators: {msg} will be replaced with a problem's error message. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Error: {msg}" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + +#. Translators: 'rescoring' refers to the act of re-submitting a student's +#. solution so it can get a new score. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem's definition does not support rescoring." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be answered before it can be graded again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem needs to be reset prior to save." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Your answers have been saved." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Your answers have been saved but not graded. Click 'Check' to grade them." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Refresh the page and make an attempt before resetting." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"We're sorry, there was an error with processing your request. Please try " +"reloading your page and trying again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"The state of this problem has changed since you loaded this page. Please " +"refresh your page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "General" +msgstr "" + +#. Translators: TBD stands for 'To Be Determined' and is used when a course +#. does not yet have an announced start date. +#: common/lib/xmodule/xmodule/course_module.py +msgid "TBD" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: 'Courseware' refers to the tab in the courseware that leads to +#. the content of a course +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/courseware/courseware-error.html +msgid "Courseware" +msgstr "" + +#. Translators: "Course Info" is the name of the course's information and +#. updates page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Course Info" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Progress" is the name of the student's course progress page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/peer_grading/peer_grading.html +msgid "Progress" +msgstr "" + +#. Translators: "Wiki" is the name of the course's wiki page +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/course_wiki/views.py +#: lms/templates/wiki/base.html +msgid "Wiki" +msgstr "" + +#. Translators: "Discussion" is the title of the course forum page +#. Translators: 'Discussion' refers to the tab in the courseware that leads to +#. the discussion forums +#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +msgid "Discussion" +msgstr "" + +#: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Textbooks" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Staff grading" appears on a tab that allows +#. staff to view open-ended problems that require staff grading +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/instructor/staff_grading.html +msgid "Staff grading" +msgstr "" + +#. Translators: "Peer grading" appears on a tab that allows +#. students to view open-ended problems that require grading +#: common/lib/xmodule/xmodule/tabs.py +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 +msgid "Syllabus" +msgstr "" + +#. Translators: 'Instructor' appears on the tab that leads to the instructor +#. dashboard, which is +#. a portal where an instructor can get data and perform various actions on +#. their course +#: common/lib/xmodule/xmodule/tabs.py +msgid "Instructor" +msgstr "" + +#. Translators: "Self" is used to denote an openended response that is self- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Self" +msgstr "" + +#. Translators: "AI" is used to denote an openended response that is machine- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "AI" +msgstr "" + +#. Translators: "Peer" is used to denote an openended response that is peer- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Peer" +msgstr "" + +#. Translators: "Not started" is used to communicate to a student that their +#. response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Not started." +msgstr "" + +#. Translators: "Being scored." is used to communicate to a student that their +#. response +#. are in the process of being scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Being scored." +msgstr "" + +#. Translators: "Scoring finished" is used to communicate to a student that +#. their response +#. have been scored, but the full scoring process is not yet complete +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scoring finished." +msgstr "" + +#. Translators: "Complete" is used to communicate to a student that their +#. openended response has been fully scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Complete." +msgstr "" + +#. Translators: "Scored rubric" appears to a user as part of a longer +#. string that looks something like: "Scored rubric from grader 1". +#. "Scored" is an adjective that modifies the noun "rubric". +#. That longer string appears when a user is viewing a graded rubric +#. returned from one of the graders of their openended response problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scored rubric" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "" +"You have attempted this question {number_of_student_attempts} times. You are" +" only allowed to attempt it {max_number_of_attempts} times." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "The problem state got out-of-sync. Please try reloading the page." +msgstr "" + +#. Translators: "Self-Assessment" refers to the self-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Self-Assessment" +msgstr "" + +#. Translators: "Peer-Assessment" refers to the peer-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Peer-Assessment" +msgstr "" + +#. Translators: "Instructor-Assessment" refers to the instructor-assessed mode +#. of openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Instructor-Assessment" +msgstr "" + +#. Translators: "AI-Assessment" refers to the machine-graded mode of openended +#. evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "AI-Assessment" +msgstr "" + +#. Translators: 'tag' is one of 'feedback', 'submission_id', +#. 'grader_id', or 'score'. They are categories that a student +#. responds to when filling out a post-assessment survey +#. of his or her grade from an openended problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Could not find needed tag {tag_name} in the survey responses. Please try " +"submitting again." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "There was an error saving your feedback. Please contact course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Couldn't submit feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Unable to save your feedback. Please try again later." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your submission." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Unable to submit your submission to the grader. Please try again later." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error getting feedback from grader." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "No feedback available from grader." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error handling action. Please try again." +msgstr "" + +#. Translators: this string appears once an openended response +#. is submitted but before it has been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: "Not started" communicates to a student that their response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Not started" +msgstr "" + +#. Translators: "In progress" communicates to a student that their response +#. is currently in the grading process +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "In progress" +msgstr "" + +#. Translators: "Done" communicates to a student that their response +#. has been fully graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Done" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We could not find a file in your submission. Please try choosing a file or " +"pasting a URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We are having trouble saving your file. Please try another file or paste a " +"URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/self_assessment_module.py +msgid "Error saving your score. Please notify course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Can't receive transcripts from Youtube for {youtube_id}. Status code: " +"{status_code}." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Can't find any transcripts on the Youtube service." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "We support only SubRip (*.srt) transcripts format." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Something wrong with SubRip transcripts file during parsing. Inner message " +"is {error_message}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Something wrong with SubRip transcripts file during parsing." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "A YouTube URL or a link to a file hosted anywhere on the web." +msgstr "" + +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Navigation" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "About these documents" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Index" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Search" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/copyright.html +msgid "Copyright" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: " +"{grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "students" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "questions" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{num_students} student(s) opened Subsection {subsection_num}: " +"{subsection_name}" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{problem_info_x} {problem_info_n} - {count_grade} {students} " +"({percent:.0f}%: {grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#. Translators: this string includes wiki markup. Leave the ** and the _ +#. alone. +#: lms/djangoapps/course_wiki/views.py +msgid "This is the wiki for **{organization}**'s _{course_name}_." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Course page automatically created." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Welcome to the edX Wiki" +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Visit a course wiki to add an article." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} does not exist." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} has never accessed problem {location}" +msgstr "" + +#: lms/djangoapps/courseware/features/video.py lms/templates/video.html +msgid "ERROR: No playable video sources found!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Path {0} doesn't exist, please create it, or configure a different path with" +" GIT_REPO_DIR" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Non usable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to get git log" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "git clone or pull failed!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to run import command." +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "The underlying module store does not support import." +msgstr "" + +#. Translators: This is an error message when they ask for a +#. particular version of a git repository and that version isn't +#. available from the remote source they specified +#: lms/djangoapps/dashboard/git_import.py +msgid "The specified remote branch is not available." +msgstr "" + +#. Translators: Error message shown when they have asked for a git +#. repository branch, a specific version within a repository, that +#. doesn't exist, or there is a problem changing to it. +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to switch to specified branch. Please check your branch name." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}, error {1}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "fixed password" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "All ok!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide full name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email must end in" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed - email {0} already exists as external_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Password must be supplied if not using certificates" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email address required (not username)" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Oops, failed to create user {0}, IntegrityError" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "User {0} created successfully!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with email address {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with username {0} - {1}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted user {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Statistic" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Value" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Site statistics" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Total number of users" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Courses loaded in the modulestore" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/templates/tracking_log.html +msgid "username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "email" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Repair Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Create User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Delete User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "The git repo location should end with '.git', and be a valid url" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Added Course" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Refusing to import. GIT_IMPORT_WITH_XMLMODULESTORE is not turned on, and it " +"is generally not safe to import into an XMLModuleStore with multithreaded. " +"We recommend you enable the MongoDB based module store instead, unless this " +"is a development environment." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "" +"The course {0} already exists in the data directory! (reloading anyway)" +msgstr "" + +#. Translators: unable to download the course content from +#. the source git repository. Clone occurs if this is brand +#. new, and pull is when it is being updated from the +#. source. +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Unable to clone or pull repository. Please check your url. Output was: {0!r}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed to clone repository to {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Successfully switched to branch: {branch_name}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Loaded course {0} {1}
Errors:" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: cms/templates/index.html cms/templates/settings.html +msgid "Course Name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Directory/ID" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Git Commit" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Change" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Editor" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Information about all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Error - cannot get course with ID {0}
{1}
" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "course_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# enrolled" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# staff" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "instructors" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Enrollment information for all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "role" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "full_name" +msgstr "" + +#: lms/djangoapps/dashboard/management/commands/git_add_course.py +msgid "" +"Import the specified git repository and optional branch into the modulestore" +" and optionally specified directory." +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with email address" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with username" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Failed in authenticating" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Unable to clone or pull repository" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Error - cannot get course with ID" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Re-open thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Close thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Title can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Body can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Comment level too deep" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "allowed file types are '%(file_types)s'" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "maximum upload file size is %(file_size)sK" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "" +"Error uploading file. Please contact the site administrator. Thank you." +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Good" +msgstr "" + +#: lms/djangoapps/django_comment_client/forum/views.py +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "All Groups" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "User does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Task is already running." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Username" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Name" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Email" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Language" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Location" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Birth Year" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "Gender" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Level of Education" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +msgid "Mailing Address" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Goals" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Complete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Incomplete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Your grade report is being generated! You can view the status of the " +"generation task in the 'Pending Instructor Tasks' section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"A grade report generation task is already in progress. Check the 'Pending " +"Instructor Tasks' table for the status of the task. When completed, the " +"report will be available for download in the table below." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully changed due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully reset due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Membership" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Student Admin" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Extensions" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Data Download" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/courseware/instructor_dashboard.html +msgid "Analytics" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Course Statistics At A Glance" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found a single student. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find student with that email or username." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Summary Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Raw Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for resetting \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found module. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname: {url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Deleted student module state for {state}!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to delete module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Module state successfully reset!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't reset module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{key}\" for student {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{key}\": {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Progress page for username: {username} with email address: {email}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Assignment Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Please enter an assignment name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Invalid assignment name '{name}'" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "External email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades for assignment \"{name}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Staff" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Instructors" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student profile data for course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found {num} records to dump." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student state for problem {problem}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Beta Testers" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades from {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook defined in course metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook url defined in settings.FEATURES" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No gradebook name defined in course remote_gradebook metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to communicate with gradebook server at {url}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: {err}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Remote gradebook response for {action}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Full name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Roles" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Forum {name}s in course {id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown rolename \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown username \"{username}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" does not have rolename \"{rolename}\", cannot " +"remove" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Removed \"{username}\" from \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: user \"{username}\" already has rolename \"{rolename}\", cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" should first be added as staff before adding as a" +" forum administrator, cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Added \"{username}\" to \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "{title} in course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "ID" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py cms/templates/register.html +#: lms/templates/dashboard.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "Full Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "edX email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Un-enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\", module " +"\"{problem}\" and student \"{student}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\" and module " +"\"{problem}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unable to parse date: " +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Couldn't find module for url: {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor/views/tools.py +msgid "Extended Due Date" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Users with due date extensions for {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unit" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Due date extensions for {0} {1} ({2})" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "rescored" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "reset" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/templates/wiki/plugins/attachments/index.html wiki/models/article.py +msgid "deleted" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "emailed" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks.py +msgid "graded" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#: lms/djangoapps/instructor_task/views.py +msgid "No status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No task_output information found for instructor_task {0}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No message provided" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "Invalid task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No progress status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_input information found for instructor_task {0}: {1}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} and {succeeded} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Progress: {action} {succeeded} of {attempted} so far" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find submission to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any students with submissions to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for any of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem {action} for {succeeded} of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any recipients to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message failed to be {action} for any of {attempted} recipients " +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message successfully {action} for {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Message {action} for {succeeded} of {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Status: {action} {succeeded} of {attempted}" +msgstr "" + +#. Translators: {skipped} is a count. This message is appended to task +#. progress status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (skipping {skipped})" +msgstr "" + +#. Translators: {total} is a count. This message is appended to task progress +#. status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (out of {total})" +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +"\n" +" Dear %(student_name)s,\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +" \n" +" Congratulations on earning your certificate in %(course_name)s!\n" +" Since you have an account on LinkedIn, you can display your hard earned\n" +" credential for your colleagues to see. Click the button below to add the\n" +" certificate to your profile.\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "Add to profile" +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Could not contact the external grading server. Please contact the " +"development team at {email}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Cannot find any open response problems in this course. Have you submitted " +"answers to any open response assessment questions? If not, please do so and " +"return to this page." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "AI Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Peer Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Not yet available" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Automatic Checker" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Instructor Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify course " +"staff." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify your edX" +" point of contact." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "for course {0} and student {1}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View all problems that require peer assessment in this particular course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View ungraded submissions submitted by students for the open ended problems " +"in the course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View open ended problems that you have previously submitted for grading." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "View submissions that have been flagged by students as inappropriate." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +#: lms/djangoapps/open_ended_grading/views.py +msgid "New submissions to grade" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "New grades have been returned" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "Submissions have been flagged for review" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"\n" +" Error with initializing peer grading.\n" +" There has not been a peer grading module created in the courseware that would allow you to grade others.\n" +" Please check back later for this.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Order Payment Confirmation" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Trying to add a different currency into the cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Please visit your dashboard to see your new" +" enrollments." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "[Refund] User-Requested Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Mode {mode} does not exist for {course_id}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Certificate of Achievement, {mode_name} for course {course}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Note - you have up to 2 weeks into the course to unenroll from the Verified " +"Certificate option and receive a full refund. To receive your refund, " +"contact {billing_email}. Please include your order number in your e-mail. " +"Please do NOT include your credit card information." +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order Number" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Customer Name" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Original Transaction" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Amount of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "Service Fees (if any)" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Purchase Time" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order ID" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Status" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +msgid "Quantity" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Unit Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Currency" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: wiki/plugins/attachments/forms.py +msgid "Description" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Comments" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "University" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html +#: cms/templates/widgets/header.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Course" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Announce Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html +msgid "Course Start Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Close Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Period" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Enrolled" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Audit Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Honor Code Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Verified Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue over the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Verified Students Contributing More than the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Dollars Refunded" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Transactions" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Payments Collected" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Successful Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Amount of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You must be logged-in to add to a shopping cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course you requested does not exist." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course {0} is already in your cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "You are already registered in course {0}." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Course added to cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You do not have permission to view this page." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor did not return a required parameter: {0}" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor returned a badly-typed value {0} for param {1}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The payment processor accepted an order whose number is not in our system." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The amount charged by the processor {0} {1} is different than the total cost" +" of the order {2} {3}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor did not accept your payment.\n" +" The decision they returned was {decision},\n" +" and the reason was {reason_code}:{reason_msg}.\n" +" You were not charged. Please try a different form of payment.\n" +" Contact us with payment-related questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a payment confirmation that had inconsistent data!\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" The specific error message is: {msg}.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Due to an error your purchase was charged for a different amount than the order total!\n" +" The specific error message is: {msg}.\n" +" Your credit card has probably been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a corrupted message regarding your charge, so we are\n" +" unable to validate that the message actually came from the payment processor.\n" +" The specific error message is: {msg}.\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Successful transaction." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request is missing one or more required fields." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "One or more fields in the request contains invalid data." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The merchantReferenceCode sent with this authorization request matches the\n" +" merchantReferenceCode of another authorization request that you sent in the last 15 minutes.\n" +" Possible fix: retry the payment after 15 minutes.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Error: General system failure. Possible fix: retry the payment after a few " +"minutes." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received but there was a server timeout.\n" +" This error does not include timeouts between the client and the server.\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but a service did not finish running in time\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The issuing bank has questions about the request. Possible fix: retry with " +"another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Expired card. You might also receive this if the expiration date you\n" +" provided does not match the date the issuing bank has on file.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" General decline of the card. No other information provided by the issuing bank.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Insufficient funds in the account. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Unknown reason" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Issuing bank unavailable. Possible fix: retry again after a few minutes" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Inactive card or card not authorized for card-not-present transactions.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The card has reached the credit limit. Possible fix: retry with another form" +" of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid card verification number. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid account number. Possible fix: retry with another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type is not accepted by the payment processor.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"General decline by the processor. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" There is a problem with our CyberSource merchant configuration. Please let us know at {0}\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The requested amount exceeds the originally authorized amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Processor Failure. Possible fix: retry the payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The authorization has already been captured" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The requested transaction amount must match the previous transaction amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type sent is invalid or does not correlate with the credit card number.\n" +" Possible fix: retry with the same card or another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request ID is invalid." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" You requested a capture through the API, but there is no corresponding, unused authorization record.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The transaction has already been settled or reversed." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The capture or credit is not voidable because the capture or credit information has already been\n" +" submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "You requested a credit for a capture that was previously voided" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but there was a timeout at the payment processor.\n" +" Possible fix: retry the payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource.'\n" +" Possible fix: retry with a different form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Reports" +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "" +"There was an error in your date input. It should be formatted as YYYY-MM-DD" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "No photo ID was provided." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "We couldn't read your name from your photo ID image." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "" +"The name associated with your account and the name on your ID do not match." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "The image of your face was not clear." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "Your face was not visible in your self-photo" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "There was an error verifying your ID photos." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Selected price is not valid number." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "This course doesn't support verified certificates" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "No selected price or selected price is below minimum." +msgstr "" + +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html +msgid "Skip to this view's content" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +#: lms/templates/registration/password_reset_complete.html +msgid "Your Password Reset is Complete" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +msgid "" +"\n" +" Your password has been set. You may go ahead and %(link_start)slog in%(link_end)s now.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Form" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" We're sorry, %(platform_name)s enrollment is not available in your region\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The following errors occurred while processing your registration: " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "You must complete all fields." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The two password fields didn't match." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"We're sorry, our systems seem to be having trouble processing your password " +"reset" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Someone has been made aware of this issue. Please try again shortly. Please %(start_link)scontact us%(end_link)s about any concerns you have.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"Please enter your new password twice so we can verify you typed it in " +"correctly.
Required fields are noted by bold text and an asterisk (*)." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: lms/templates/forgot_password_modal.html lms/templates/login.html +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Required Information" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password Again" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Change My Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your Password Reset Was Unsuccessful" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" The password reset link was invalid, possibly because the link has already been used. Please return to the %(start_link)slogin page%(end_link)s and start the password reset process again.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Help" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: cms/templates/login.html lms/templates/login-sidebar.html +#: lms/templates/register-sidebar.html +msgid "Need Help?" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" View our %(start_link)shelp section for contact information and answers to commonly asked questions%(end_link)s\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"You're receiving this e-mail because you requested a password reset for your" +" user account at edx.org." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet reset your password." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Thanks for using our site!" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "The edX Team" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "Last modified:" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "See all children" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "This article was last modified:" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/create.html.py +msgid "Add new article" +msgstr "" + +#: lms/templates/wiki/create.html +msgid "Create article" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/delete.html +#: lms/templates/wiki/delete.html.py +msgid "Go back" +msgstr "" + +#: lms/templates/wiki/delete.html lms/templates/wiki/delete.html.py +#: lms/templates/wiki/edit.html +msgid "Delete article" +msgstr "" + +#: lms/templates/wiki/delete.html +#: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Delete" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You cannot delete a root article." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You cannot delete this article because you do not have permission to delete " +"articles with children. Try to remove the children manually one-by-one." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You are deleting an article. This means that its children will be deleted as" +" well. If you choose to purge, children will also be purged!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "Articles that will be deleted" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "...and more!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You are deleting an article. Please confirm." +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/wiki/includes/article_menu.html +msgid "Edit" +msgstr "" + +#: lms/templates/wiki/edit.html lms/templates/wiki/edit.html.py +msgid "Save changes" +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/unit.html +msgid "Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this is a control to allow users to exit out of this modal +#. interface (a menu or piece of UI that takes the full focus of the screen) +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/modal/_modal-settings-language.html +#: lms/templates/modal/accessible_confirm.html +msgid "Close" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Wiki Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html +#: lms/templates/modal/_modal-settings-language.html +msgid "window open" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Back to editor" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "History" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"Click each revision to see a list of edited lines. Click the Preview button " +"to see how the article looked at this stage. At the bottom of this page, you" +" can change to a particular revision or merge an old revision with the " +"current one." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "(no log message)" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Preview this revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Auto log:" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Change" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Merge selected with current..." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Switch to selected version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Wiki Revision Preview" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Back to history view" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Switch to this version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge Revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge with current" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"When you merge a revision with the current, all data will be retained from " +"both versions and merged at its approximate location from each revision." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "After this, it's important to do a manual review." +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Create new merged version" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing revision:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing a merge between two revisions:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "This revision has been deleted." +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Restoring to this revision will mark the article as deleted." +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "" +"\n" +" You need to log in or sign up to use this function.\n" +" " +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in or sign up to use this function." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Cheatsheet" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Syntax Help" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"This wiki uses Markdown for styling. There are several " +"useful guides online. See any of the links below for in-depth details:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Markdown: Basics" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quick Markdown Syntax Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Miniature Markdown Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"To create a new wiki article, create a link to it. Clicking the link gives " +"you the creation page." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "[Article Name](wiki:ArticleName)" +msgstr "" + +#. Translators: Do not translate "edX" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Additions:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Math Expression" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Useful examples:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wikipedia" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Wiki" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Huge Header" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Smaller Header" +msgstr "" + +#. Translators: Leave the punctuation, but translate "emphasis" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "*emphasis* or _emphasis_" +msgstr "" + +#. Translators: Leave the punctuation, but translate "strong" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "**strong** or __strong__" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Unordered List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 1" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 2" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Ordered" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quotes" +msgstr "" + +#: lms/templates/wiki/includes/editor_widget.html +msgid "" +"\n" +" Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for help.\n" +" " +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/wiki_plugin.py +msgid "Attachments" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload new file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search and add file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload File" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search files and articles" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"You can reuse files from other articles. These files are subject to updates " +"on other articles which may or may not be a good thing." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"The following files are available for this article. Copy the markdown tag to" +" directly refer to a file from the article text." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Markdown tag" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Uploaded by" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Size" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File History" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Detach" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Replace" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Restore" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "anonymous (IP logged)" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File history" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "revisions" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "There are no attachments for this article." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Invalid course update id." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Course update not found." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " +"configure a different path with GIT_REPO_EXPORT_DIR" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Non writable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"If using http urls, you must provide the username and password in the url. " +"Similar to https://user:pass@github.com/user/course." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to determine branch, repo in detached HEAD mode" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to update or clone git repository." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to export course to xml." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to configure git username and password" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to commit changes. This is usually because there are no changes to be" +" committed" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to push changes. This is usually because the remote repository " +"cannot be contacted" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Bad course location provided" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Missing branch on fresh clone" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command was: {0!r}. Working directory was: {1!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command output was: {0!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Directory already exists, doing a git reset and pull instead of git clone." +msgstr "" + +#: cms/djangoapps/contentstore/utils.py lms/templates/notes.html +msgid "My Notes" +msgstr "" + +#: cms/djangoapps/contentstore/management/commands/git_export.py +msgid "" +"Take the specified course and attempt to export it to a git repository\n" +". Course directory must already be a git repository. Usage: git_export " +msgstr "" + +#: cms/djangoapps/contentstore/views/assets.py +msgid "Upload completed" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Special characters not allowed in organization, course number, and course " +"run." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Unable to create course '{name}'.\n" +"\n" +"{err}" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization, course number," +" and course run. Please change either organization or course number to be " +"unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Please change either the organization or course number so that it is unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization and course " +"number. Please change at least one field to be unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/export_git.py +msgid "Course successfully exported to git repository" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "We only support uploading a .tar.gz file." +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "File upload corrupted. Please try again" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "Could not find the course.xml file in the package." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of {0}" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of '{0}'" +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Incoming video data is empty." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Can't find item by locator." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Transcripts are supported only for \"video\" modules." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Insufficient permissions" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Could not find user by email address '{email}'." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "User {email} has registered but has not yet activated his/her account." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "`role` is required" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Only instructors may create other instructors" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "You may not remove the last instructor from a course" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "unrequested" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "pending" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "granted" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "denied" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Studio user" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "The date when state was last updated" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Current course creator state" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "" +"Optional notes about this user (for example, why course creation access was " +"denied)" +msgstr "" + +#: cms/templates/404.html cms/templates/error.html +#: lms/templates/static_templates/404.html +msgid "Page Not Found" +msgstr "" + +#: cms/templates/404.html lms/templates/static_templates/404.html +msgid "Page not found" +msgstr "" + +#: cms/templates/asset_index.html lms/templates/courseware/courseware.html +#: lms/templates/verify_student/_modal_editname.html +msgid "close" +msgstr "" + +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." +msgstr "" + +#. Translators: this is a verb describing the action of viewing more details +#: cms/templates/container_xblock_component.html +#: lms/templates/wiki/includes/article_menu.html +msgid "View" +msgstr "" + +#: cms/templates/html_error.html lms/templates/module-error.html +msgid "Error:" +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +#: lms/templates/courseware/course_about.html +msgid "Course Number" +msgstr "" + +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Organization:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Number:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Pending" +msgstr "" + +#: cms/templates/login.html lms/templates/login.html +#: lms/templates/university_profile/edge.html +msgid "Forgot password?" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/login.html lms/templates/provider_login.html +#: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Password" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + +#: cms/templates/manage_users.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Admin" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + +#: cms/templates/register.html cms/templates/widgets/header.html +#: lms/templates/index.html +msgid "Sign Up" +msgstr "" + +#: cms/templates/register.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "Public Username" +msgstr "" + +#: cms/templates/register.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "Preferred Language" +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Thanks for activating your account." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "This account has already been activated." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Visit your {link_start}dashboard{link_end} to see your courses." +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html +#: lms/templates/static_templates/tos.html +msgid "Terms of Service" +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/footer.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/privacy.html +msgid "Privacy Policy" +msgstr "" + +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py +msgid "Help" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Register for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sorry, there was an error when trying to register you" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your track:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Certificate of Achievement (ID Verified)" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your contribution for this course (min. $" +msgstr "" + +#: common/templates/course_modes/choose.html +#: lms/templates/verify_student/photo_verification.html +msgid "):" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay? What if I don't meet all the requirements?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"As a not-for-profit, edX uses your contribution to support our mission to " +"provide quality education to everyone around the world, and to improve " +"learning through research. While we have established a minimum fee, we ask " +"that you contribute as much as you can." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"I'd like to pay more than the minimum. Is my contribution tax deductible?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please check with your tax advisor to determine whether your contribution is" +" tax deductible." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What if I can't afford it or don't have the necessary equipment?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"If you can't afford the minimum fee or don't meet the requirements, you can " +"audit the course or elect to pursue an honor code certificate at no cost. If" +" you would like to pursue the honor code certificate, please check the honor" +" code certificate box, tell us why you can't pursue the verified certificate" +" below, and then click the 'Select Certificate' button to complete your " +"registration." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Honor Code Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Explain your situation: " +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please write a few sentences about why you'd like to opt out of the paid " +"verified certificate to pursue the honor code certificate:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Verified Registration Requirements" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To upgrade your registration and work towards a Verified Certificate of " +"Achievement, you will need a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To register for a Verified Certificate of Achievement option, you will need " +"a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What is an ID Verified Certificate?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"An ID Verified Certificate requires proof of your identity through your " +"photo and ID and is checked throughout the course to verify that it is you " +"who earned the passing grade." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "or" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Audit This Course" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up to audit this course for free and track your own progress." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Audit" +msgstr "" + +#: lms/templates/admin_dashboard.html +msgid "{platform_name}-wide Summary" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/open_ended_problems/combined_notifications.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Instructions" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "Collapse Instructions" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Guided Discussion" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Hide Annotations" +msgstr "" + +#: lms/templates/contact.html lms/templates/static_templates/about.html +#: lms/templates/static_templates/about.html +msgid "Vision" +msgstr "" + +#: lms/templates/contact.html +msgid "Faq" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +msgid "Press" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/contact.html +msgid "Contact" +msgstr "" + +#: lms/templates/contact.html +msgid "Class Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"We are always seeking feedback to improve our courses. If you are an " +"enrolled student and have any questions, feedback, suggestions, or any other" +" issues specific to a particular class, please post on the discussion forums" +" of that class." +msgstr "" + +#: lms/templates/contact.html +msgid "General Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." +msgstr "" + +#: lms/templates/contact.html +msgid "Technical Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have suggestions/feedback about the overall {platform_name} platform," +" or are facing general technical issues with the platform (e.g., issues with" +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Media" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"Please visit our {link_start}media/press page{link_end} for more " +"information. For any media or press inquiries, please email {email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Universities" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you are a university wishing to collaborate with or if you have questions" +" about {platform_name}, please email {email}." +msgstr "" + +#: lms/templates/course.html +msgid "New" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Dashboard" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/courseware/course_about.html +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "An error occurred. Please try again later." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please verify your new email" +msgstr "" + +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "edit" +msgstr "" + +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Reset Password" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Current Courses" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't registered for any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Find courses now!" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't been enrolled in any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Course-loading errors" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Email Settings for {course_number}" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Receive course emails" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Save Settings" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Password Reset Email Sent" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"An email has been sent to {email}. Follow the link in the email to change " +"your password." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Change Email" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please enter your new email address:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please confirm your password:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"We will send a confirmation to both {email} and your new email as part of " +"the process." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change your name" +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"To uphold the credibility of your {platform} {cert_name_short}, all name " +"changes will be logged and recorded." +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"Enter your desired full name, as it will appear on your {platform} " +"{cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/verify_student/_modal_editname.html +msgid "Reason for name change:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change My Name" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +" {course_number}? " +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Unregister" +msgstr "" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +msgid "E-mail change failed" +msgstr "" + +#: lms/templates/email_change_failed.html +msgid "We were unable to send a confirmation email to {email}" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +#: lms/templates/invalid_email_key.html +msgid "Go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "E-mail change successful!" +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "You should see your new email in your {link_start}dashboard{link_end}." +msgstr "" + +#: lms/templates/email_exists.html +msgid "An account with the new e-mail address already exists." +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Student Enrollment Form" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Course: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Add new students" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Existing students:" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "New students added: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Students rejected: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Debug: " +msgstr "" + +#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +msgid "External Authentication failed" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Due:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Status:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have successfully gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have not yet gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Completed puzzles" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Level" +msgstr "" + +#: lms/templates/folditbasic.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Submitted" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Puzzle Leaderboard" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "User" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Score" +msgstr "" + +#: lms/templates/footer.html +msgid "About" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/jobs.html +msgid "Jobs" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/faq.html +#: lms/templates/static_templates/faq.html +msgid "FAQ" +msgstr "" + +#: lms/templates/footer.html +msgid "{platform_name} Logo" +msgstr "" + +#: lms/templates/footer.html +msgid "" +"{platform_name} is a non-profit created by founding partners {Harvard} and " +"{MIT} whose mission is to bring the best of higher education to students of " +"all ages anywhere in the world, wherever there is Internet access. " +"{platform_name}'s free online MOOCs are interactive and subjects include " +"computer science, public health, and artificial intelligence." +msgstr "" + +#: lms/templates/footer.html +msgid "© 2014 {platform_name}, some rights reserved." +msgstr "" + +#: lms/templates/footer.html +msgid "Terms of Service and Honor Code" +msgstr "" + +#: lms/templates/forgot_password_modal.html +#: lms/templates/forgot_password_modal.html +msgid "Password Reset" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "" +"Please enter your e-mail address below, and we will e-mail instructions for " +"setting a new password." +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Your E-mail Address" +msgstr "" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +msgid "This is the e-mail address you used to register with {platform}" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Reset My Password" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Email is incorrect." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +msgid "{platform_name} Help" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"For questions on course lectures, homework, tools, or materials for " +"this course, post in the {link_start}course discussion " +"forum{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have general questions about {platform_name}? You can find " +"lots of helpful information in the {platform_name} " +"{link_start}FAQ{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have a question about something specific? You can contact " +"the {platform_name} general support team directly:" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Please note: The {platform_name} support team is English speaking. While we " +"will do our best to address your inquiry in any language, our responses will" +" be in English." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/login.html +#: lms/templates/provider_login.html lms/templates/provider_login.html +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "E-mail" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Briefly describe your issue" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Tell us the details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +#: lms/templates/instructor/staff_grading.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Submit" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Thank You!" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Thank you for your inquiry or feedback. We typically respond to a request " +"within one business day (Monday to Friday, {open_time} UTC to {close_time} " +"UTC.) In the meantime, please review our {link_start}detailed FAQs{link_end}" +" where most questions have already been answered." +msgstr "" + +#: lms/templates/help_modal.html +msgid "problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a Problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of the problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Details of the problem you are encountering" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc." +msgstr "" + +#: lms/templates/help_modal.html +msgid "suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a Suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of your suggestion" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/module-error.html +msgid "Details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a Question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief summary of your question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "An error has occurred." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please {link_start}send us e-mail{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please try again later." +msgstr "" + +#: lms/templates/index.html +msgid "Free courses from {university_name}" +msgstr "" + +#: lms/templates/index.html +msgid "The Future of Online Education" +msgstr "" + +#: lms/templates/index.html +msgid "For anyone, anywhere, anytime" +msgstr "" + +#: lms/templates/index.html +msgid "Stay up to date with all {platform_name} has to offer!" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Invalid email change key" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "This e-mail key is not valid. Please check:" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "" +"Was this key already used? Check whether the e-mail change has already " +"happened." +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Did your e-mail client break the URL into two lines?" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "The keys are valid for a limited amount of time. Has the key expired?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Helpful Information" +msgstr "" + +#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +msgid "Login via OpenID" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "" +"You can now start learning with {platform_name} by logging in with your OpenID account." +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Not Enrolled?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Sign up for {platform_name} today!" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Looking for help in logging in or with your {platform_name} account?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "View our help section for answers to commonly asked questions." +msgstr "" + +#: lms/templates/login.html +msgid "Log into your {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Log into My {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Access My Courses" +msgstr "" + +#: lms/templates/login.html lms/templates/register.html +msgid "Processing your account information…" +msgstr "" + +#: lms/templates/login.html +msgid "Please log in" +msgstr "" + +#: lms/templates/login.html +msgid "to access your account and courses" +msgstr "" + +#: lms/templates/login.html +msgid "We're Sorry, {platform_name} accounts are unavailable currently" +msgstr "" + +#: lms/templates/login.html +msgid "The following errors occurred while logging you in:" +msgstr "" + +#: lms/templates/login.html +msgid "Your email or password is incorrect" +msgstr "" + +#: lms/templates/login.html +msgid "" +"Please provide the following information to log into your {platform_name} " +"account. Required fields are noted by bold text " +"and an asterisk (*)." +msgstr "" + +#: lms/templates/login.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +msgid "example: username@domain.com" +msgstr "" + +#: lms/templates/login.html +msgid "Account Preferences" +msgstr "" + +#: lms/templates/login.html +msgid "Remember me" +msgstr "" + +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS +#: lms/templates/lti.html +msgid "External resource" +msgstr "" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + +#: lms/templates/lti.html +msgid "View resource in a new window" +msgstr "" + +#: lms/templates/lti.html +msgid "" +"Please provide launch_url. Click \"Edit\", and fill in the required fields." +msgstr "" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable or Reenable student accounts" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Username:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Reenable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Students whose accounts have been disabled" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "(reload your page to refresh)" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "working..." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"This page features MathJax technology to render mathematical formulae. To " +"make math accessibile, we suggest using the MathPlayer plugin. Please visit " +"the {link_start}MathPlayer Download Page{link_end} to download the plugin " +"for your browser." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"Your browser does not support the MathPlayer plugin. To use MathPlayer, " +"please use Internet Explorer 6 through 9." +msgstr "" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" +msgstr "" + +#: lms/templates/module-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/module-error.html +msgid "Raw data:" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Accepted" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Error" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Rejected" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Pending name changes" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/modal/accessible_confirm.html +msgid "Confirm" +msgstr "" + +#: lms/templates/name_changes.html +msgid "[Reject]" +msgstr "" + +#: lms/templates/navigation.html +msgid "Global Navigation" +msgstr "" + +#: lms/templates/navigation.html +msgid "Find Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Dashboard for:" +msgstr "" + +#: lms/templates/navigation.html +msgid "More options dropdown" +msgstr "" + +#: lms/templates/navigation.html +msgid "Log Out" +msgstr "" + +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + +#: lms/templates/navigation.html +msgid "How it Works" +msgstr "" + +#: lms/templates/navigation.html lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/courseware/courses.html +msgid "Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Schools" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Register Now" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Log in" +msgstr "" + +#: lms/templates/navigation.html +msgid "" +"Warning: Your browser is not fully supported. We strongly " +"recommend using {chrome_link_start}Chrome{chrome_link_end} or " +"{ff_link_start}Firefox{ff_link_end}." +msgstr "" + +#: lms/templates/notes.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "You do not have any notes." +msgstr "" + +#: lms/templates/problem.html +msgid "Reset" +msgstr "" + +#: lms/templates/problem.html +msgid "Show Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "Reveal Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "You have used {num_used} of {num_total} submissions" +msgstr "" + +#: lms/templates/provider_login.html +#: lms/templates/university_profile/edge.html +msgid "Log In" +msgstr "" + +#: lms/templates/provider_login.html +msgid "" +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." +msgstr "" + +#: lms/templates/provider_login.html +msgid "Return To %s" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Preferences for {platform_name}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update my {platform_name} Account" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Processing your account information …" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Welcome {username}! Please set your preferences below" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"We're sorry, {platform_name} enrollment is not available in your region" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "The following errors occurred while processing your registration:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"Required fields are noted by bold text and an " +"asterisk (*)." +msgstr "" + +#: lms/templates/register-shib.html lms/templates/signup_modal.html +msgid "Enter a public username:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "example: JaneDoe" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "Will be shown in any discussions or forums you participate in" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Account Acknowledgements" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Terms of Service{link_end}" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Honor Code{link_end}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update My Account" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Registration Help" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Already registered?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Click here to log in." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Registering with {platform_name} gives you access to all of our current and " +"future free courses. Not ready to take a course just yet? Registering puts " +"you on our mailing list - we will update you as courses are added." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Next Steps" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"You will receive an activation email. You must click on the activation link" +" to complete the process. Don't see the email? Check your spam folder and " +"mark emails from class.stanford.edu as 'not spam', since you'll want to be " +"able to receive email from your courses." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"As part of joining {platform_name}, you will receive an activation email. " +"You must click on the activation link to complete the process. Don't see " +"the email? Check your spam folder and mark {platform_name} emails as 'not " +"spam'. At {platform_name}, we communicate mostly through email." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Need help in registering with {platform_name}?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "View our FAQs for answers to commonly asked questions." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Once registered, most questions can be answered in the course specific " +"discussion forums or through the FAQs." +msgstr "" + +#: lms/templates/register.html +msgid "Register for {platform_name}" +msgstr "" + +#: lms/templates/register.html +msgid "Create My {platform_name} Account" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome!" +msgstr "" + +#: lms/templates/register.html +msgid "Register below to create your {platform_name} account" +msgstr "" + +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + +#: lms/templates/register.html +msgid "Please complete the following fields to register for an account. " +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "cannot be changed later" +msgstr "" + +#: lms/templates/register.html lms/templates/verify_student/face_upload.html +msgid "example: Jane Doe" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Needed for any certificates you may earn" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome {username}" +msgstr "" + +#: lms/templates/register.html +msgid "Enter a Public Display Name:" +msgstr "" + +#: lms/templates/register.html +msgid "Public Display Name" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Extra Personal Information" +msgstr "" + +#: lms/templates/register.html +msgid "City" +msgstr "" + +#: lms/templates/register.html +msgid "example: New York" +msgstr "" + +#: lms/templates/register.html +msgid "Country" +msgstr "" + +#: lms/templates/register.html +msgid "Highest Level of Education Completed" +msgstr "" + +#: lms/templates/register.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Year of Birth" +msgstr "" + +#: lms/templates/register.html +msgid "Please share with us your reasons for registering with {platform_name}" +msgstr "" + +#: lms/templates/register.html lms/templates/university_profile/edge.html +msgid "Register" +msgstr "" + +#: lms/templates/register.html lms/templates/signup_modal.html +msgid "Create My Account" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "Re-subscribe Successful!" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "" +"You have re-enabled forum notification emails from {platform_name}. Click " +"{dashboard_link_start}here{link_end} to return to your dashboard. " +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Previous" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +msgid "Section Navigation" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Next" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Sign Up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname@domain.com" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname (shown on forums)" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. Your Name (for certificates)" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Welcome {name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Ed. Completed" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Year of birth" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Mailing address" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Goals in signing up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Already have an account?" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Login." +msgstr "" + +#. Translators: The 'Group' here refers to the group of users that has been +#. sorted into group_id +#: lms/templates/split_test_staff_view.html +msgid "Group {group_id}" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug Info" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission history" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "{platform_name} Content Quality Assessment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Optional tag (eg \"done\" or \"broken\"):" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Add comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug" +msgstr "" + +#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +msgid "Module Fields" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "XML attributes" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission History Viewer" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "User:" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "View History" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "{course_number} Textbook" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "Textbook Navigation" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Previous page" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Next page" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Sysadmin Dashboard" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Users" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Staffing and Enrollment" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Logs" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "User Management" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Email or username" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Create user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download list of all users (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Check and repair external authentication map" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "" +"Go to each individual course's Instructor dashboard to manage course " +"enrollment." +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Manage course staff and instructors" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download staff and instructor list (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Administer Courses" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Location" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware and branch is a specific version within that repository +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Branch (optional)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Load new course from github" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Course ID or dir" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete course from site" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Django PID" +msgstr "" + +#. Translators: A version number appears after this string +#: lms/templates/sysadmin_dashboard.html +msgid "Platform Version" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Date" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Course ID" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Action" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Recent git load activity for" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "git action" +msgstr "" + +#: lms/templates/textannotation.html +msgid "Source:" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "Tracking Log" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "datetime" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "ipaddr" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "source" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "type" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "Unsubscribe Successful!" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "" +"You will no longer receive forum notification emails from {platform_name}. " +"Click {dashboard_link_start}here{link_end} to return to your dashboard. If " +"you did not mean to do this, click {undo_link_start}here{link_end} to re-" +"subscribe." +msgstr "" + +#: lms/templates/using.html +msgid "Using the system" +msgstr "" + +#: lms/templates/using.html +msgid "" +"During video playback, use the subtitles and the scroll bar to navigate. " +"Clicking the subtitles is a fast way to skip forwards and backwards by small" +" amounts." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you are on a low-resolution display, the left navigation bar can be " +"hidden by clicking on the set of three left arrows next to it." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you need bigger or smaller fonts, use your browsers settings to scale " +"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" +" ctrl-minus at the same time." +msgstr "" + +#: lms/templates/video.html +msgid "Skip to a navigable version of this video's transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Loading video player" +msgstr "" + +#: lms/templates/video.html +msgid "Play video" +msgstr "" + +#: lms/templates/video.html +msgid "Video position" +msgstr "" + +#: lms/templates/video.html +msgid "Play" +msgstr "" + +#: lms/templates/video.html +msgid "Speeds" +msgstr "" + +#: lms/templates/video.html +msgid "Speed" +msgstr "" + +#: lms/templates/video.html +msgid "Volume" +msgstr "" + +#: lms/templates/video.html +msgid "Fill browser" +msgstr "" + +#: lms/templates/video.html +msgid "HD off" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Turn off captions" +msgstr "" + +#: lms/templates/video.html +msgid "Skip to end of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "" +"Activating an item in this group will spool the video to the corresponding " +"time point. To skip transcript, go to previous item." +msgstr "" + +#: lms/templates/video.html +msgid "Go back to start of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Download video" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Download transcript" +msgstr "" + +#: lms/templates/video.html +msgid "Download Handout" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Your words:" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Total number of words:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Open Response" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Assessments:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Hide Question" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "New Submission" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Next Step" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "" +"Staff Warning: Please note that if you submit a duplicate of text that has " +"already been submitted for grading, it will not show up in the staff grading" +" view. It will be given the same grade that the original received " +"automatically, and will be returned within 30 minutes if the original is " +"already graded, or when the original is graded if not." +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_legend.html +msgid "Legend" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Submitted Rubric" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Toggle Full Rubric" +msgstr "" + +#. Translators: an example of what this string will look +#. like is: "Scored rubric from grader 1", where +#. "Scored rubric" replaces {result_of_task} and +#. "1" replaces {number}. +#. This string appears when a user is viewing one of +#. their graded rubrics for an openended response problem. +#. the number distinguishes between the different +#. graded rubrics the user might have received +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "{result_of_task} from grader {number}" +msgstr "" + +#. Translators: "See full feedback" is the text of +#. a link that allows a user to see more detailed +#. feedback from a self, peer, or instructor +#. graded openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +msgid "See full feedback" +msgstr "" + +#. Translators: this text forms a link that, when +#. clicked, allows a user to respond to the feedback +#. the user received on his or her openended problem +#. Translators: when "Respond to Feedback" is clicked, a survey +#. appears on which a user can respond to the feedback the user +#. received on an openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Respond to Feedback" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "How accurate do you find this feedback?" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "No Opinion" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Additional comments:" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Submit Feedback" +msgstr "" + +#. Translators: "Response" labels an area that contains the user's +#. Response to an openended problem. It is a noun. +#. Translators: "Response" labels a text area into which a user enters +#. his or her response to a prompt from an openended problem. +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Response" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Unanswered" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Skip Post-Assessment" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_combined_rubric.html +msgid "{num} point: {explanatory_text}" +msgid_plural "{num} points: {explanatory_text}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lms/templates/combinedopenended/openended/open_ended_error.html +msgid "There was an error with your submission. Please contact course staff." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "Rubric" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "" +"Select the criteria you feel best represents this submission in each " +"category." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "{num} point: {text}" +msgid_plural "{num} points: {text}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lms/templates/combinedopenended/selfassessment/self_assessment_hint.html +msgid "Please enter a hint below:" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohort groups" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Show cohorts" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohorts in the course" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add users by username or email. One per line or comma-separated." +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort members" +msgstr "" + +#: lms/templates/courseware/accordion.html +msgid "{chapter}, current chapter" +msgstr "" + +#: lms/templates/courseware/accordion.html +#: lms/templates/courseware/progress.html +msgid "due {date}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"The currently logged-in user account does not have permission to enroll in " +"this course. You may need to {start_logout_tag}log out{end_tag} then try the" +" register button again. Please visit the {start_help_tag}help page{end_tag} " +"for a possible solution." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "About {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "You are registered for this course" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View Courseware" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "This course is in your cart." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"Add {course.display_number_with_default} to Cart ({currency_symbol}{cost})" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Register for {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Overview" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Share with friends and family!" +msgstr "" + +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes Start" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes End" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Estimated Effort" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Prerequisites" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Additional Resources" +msgstr "" + +#. Translators: 'needs attention' is an alternative string for the +#. notification image that indicates the tab "needs attention". +#: lms/templates/courseware/course_navigation.html +msgid "needs attention" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/course_navigation.html +msgid "Staff view" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +msgid "Student view" +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from leading universities." +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from {university_name}." +msgstr "" + +#: lms/templates/courseware/courseware-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "{course_number} Courseware" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Return to Exam" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Course Navigation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Open Calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Input Field" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "" +"Use the arrow keys to navigate the tips or use the tab key to return to the " +"calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Hints" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Integers" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Decimals" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Scientific notation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Appending SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Supported SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Operators" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "parallel resistors function" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Functions" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Constants" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Euler's number" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "ratio of a circle's circumference to it's diameter" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Boltzmann constant" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "speed of light" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "freezing point of water in degrees Kelvin" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "fundamental charge" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculate" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Output Field" +msgstr "" + +#: lms/templates/courseware/error-message.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {link_to_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/grade_summary.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade summary" +msgstr "" + +#: lms/templates/courseware/grade_summary.html +msgid "Not implemented yet" +msgstr "" + +#: lms/templates/courseware/gradebook.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "Search students" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "{course_number} Course Info" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + +#: lms/templates/courseware/info.html lms/templates/courseware/info.html +msgid "Course Updates & News" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Handout Navigation" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Course Handouts" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Instructor Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Try New Beta Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Psychometrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Forum Admin" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "DataDump" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Manage Groups" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Metrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade Downloads" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Note: some of these buttons are known to time out for larger courses. We " +"have temporarily disabled those features for courses with more than " +"{max_enrollment} students. We are urgently working on fixing this issue. " +"Thank you for your patience as we continue working to improve the platform!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Export grades to remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"The assignments defined for this course should match the ones stored in the " +"gradebook, for this to work properly!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Assignment name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Course-specific grade adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Specify a particular problem in the course here by its url:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is " +"i4x://university/course/problem/problemname, then just provide the " +"problemname. If the location is " +"i4x://university/course/notaproblem/someothername, then provide " +"notaproblem/someothername.)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Then select an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"These actions run in the background, and status for active tasks will appear" +" in a table below. To see status for all tasks submitted for this problem, " +"click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student-specific grade inspection and adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Specify the {platform_name} email address or username of a student here:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Click this, and a link to student's progress page will appear below:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may also delete the entire state of a student for the specified module:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" a table below. To see status for all tasks submitted for this problem and " +"student, click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Select a problem and an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"User requires forum administrator privileges to perform administration " +"tasks. See instructor." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Explanation of Roles:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Moderators: can edit or delete any post, remove misuse flags, close " +"and re-open threads, endorse responses, and see posts from all cohorts (if " +"the course is cohorted). Moderators' posts are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Admins: have moderator privileges, as well as the ability to edit the " +"list of forum moderators (e.g. to appoint a new moderator). Admins' posts " +"are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Community TAs: have forum moderator privileges, and their posts are labelled" +" 'Community TA'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment Data" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Pull enrollment from remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Section:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enroll or un-enroll one or many students: enter emails, separated by new " +"lines or commas;" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Notify students by email" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Auto-enroll students when they activate" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Problem urlname:" +msgstr "" + +#. Translators: days_early_for_beta should not be translated +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enter usernames or emails for students who should be beta-testers, one per " +"line, or separated by commas. They will get to see course materials early, " +"as configured via the days_early_for_beta option in the course " +"policy." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send to:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Myself" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Staff and instructors" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "All (students, staff and instructors)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Subject: " +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Max 128 characters)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Please try not to email students more than once per week. Important things " +"to consider before sending:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you read over the email to make sure it says everything you want to " +"say?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you sent the email to yourself first to make sure you're happy with how" +" it's displayed, and that embedded links and images work properly?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "CAUTION!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Once the 'Send Email' button is clicked, your email will be queued for " +"sending." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "A queued email CANNOT be cancelled." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "No Analytics are available at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Students enrolled (historical count, includes those who have since " +"unenrolled):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students active in the last week:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student activity day by day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Score distribution for problems" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Max" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Points Earned (Num Students)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There is no data available to display at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"Loading the latest graphs for you; depending on your class size, this may " +"take a few minutes." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Count of Students that Opened a Subsection" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution per Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There are no problems in this section." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students answering correctly" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Number of students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Student distribution per country, all courses, Sep-12 to Oct-17, 1 server " +"(shown here as an example):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Pending Instructor Tasks" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Type" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task inputs" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Id" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Requester" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task State" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Duration (sec)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Progress" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "unknown" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Course errors" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "About {course_id}" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "Coming Soon" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "About {course_number}" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Access Courseware" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "You Are Registered" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Register for" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Registration Is Closed" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "News - MITx 6.002x" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "Updates to Discussion Posts You Follow" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{course_number} Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress for Student '{username}' ({email})" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{earned:.3n} of {total:.3n} possible points" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Problem Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Practice Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "No problem scores in this section" +msgstr "" + +#: lms/templates/courseware/syllabus.html +msgid "{course.display_number_with_default} Course Info" +msgstr "" + +#: lms/templates/courseware/welcome-back.html +msgid "" +"You were most recently in {section_link}. If you're done with that, choose " +"another section on the left." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Final course details are being wrapped up at this time. Your final standing " +"will be available shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final grade:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required for a {cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your verified {cert_name_long} is being held pending confirmation that the " +"issuance of your {cert_name_short} is in compliance with strict U.S. " +"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " +"mistakenly identified you as being connected with one of those countries, " +"please let us know by contacting {email}. If you would like a refund on your" +" {cert_name_long}, please contact our billing address {billing_email}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your {cert_name_long} is being held pending confirmation that the issuance " +"of your {cert_name_short} is in compliance with strict U.S. embargoes on " +"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " +"identified you as being connected with one of those countries, please let us" +" know by contacting {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your {cert_name_short} is Generating" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open/download a PDF document" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"This link will open/download a PDF document of your verified " +"{cert_name_long}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your ID Verified {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Complete our course feedback survey" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Cover Image" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Enrolled as: " +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +msgid "ID Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Completed - {end_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Started - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course has not yet started" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Starts - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Document your accomplishment!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Challenge Yourself!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Take this course as an ID-verified student." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can still sign up for an ID verified {cert_name_long} for this course. " +"If you plan to complete the whole course, it is a great way to recognize " +"your achievement. {link_start}Learn more about the verified " +"{cert_name_long}{link_end}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Upgrade to Verified Track" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Archived Course" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Course" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Are you sure you want to unregister from" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Are you sure you want to unregister from the verified {cert_name_long} track" +" of" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Email Settings" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "You need to re-verify to continue" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in the following courses, you need to " +"re-verify your identity:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "{course_name}: Re-verify by {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Notification Actions" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course_name}, you need to re-verify" +" your identity by {date}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Your re-verification failed" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"Your re-verification for {course_name} failed and you are no longer eligible" +" for a Verified Certificate. If you think this is in error, please contact " +"us at {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Dismiss" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verification now open for:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verify now:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Pending:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Denied:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Approved:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "ID-Verification Status" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Reviewed and Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Your verification status is good for one year after submission." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification photos have been submitted and will be reviewed shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Re-verify Yourself" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"If you fail to pass a verification attempt before your course ends, you will" +" not receive a verified certificate." +msgstr "" + +#: lms/templates/debug/run_python_form.html +msgid "Results:" +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "" +"Sorry! We can't find anything matching your search. Please try another " +"search." +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "There are no posts here yet. Be the first one to post!" +msgstr "" + +#: lms/templates/discussion/_discussion_course_navigation.html +#: lms/templates/discussion/_discussion_module.html +msgid "New Post" +msgstr "" + +#: lms/templates/discussion/_discussion_module.html +msgid "Show Discussion" +msgstr "" + +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Filter Topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "filter topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Show All Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Show Flagged Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Posts I'm Following" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "follow this post" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously to classmates" +msgstr "" + +#. Translators: This labels the selector for which group of students can view +#. a +#. post +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Make visible to:" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +msgid "My Cohort" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "new post title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: wiki/forms.py wiki/forms.py wiki/forms.py +msgid "Title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Enter your question or comment…" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Add post" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Create new post about:" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter List" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter discussion areas" +msgstr "" + +#: lms/templates/discussion/_recent_active_posts.html +msgid "Following" +msgstr "" + +#: lms/templates/discussion/_search_bar.html +msgid "Search posts" +msgstr "" + +#: lms/templates/discussion/_similar_posts.html +msgid "Hide" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Home" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Topics" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion topics; current selection is: " +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Search all discussions" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Sort by:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "date" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "votes" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "comments" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Show:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View All" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View as {name}" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Add A Response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Post a response:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "anonymous" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "• This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "follow" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow this post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Pin Thread" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Pinned" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "(this post is about %(courseware_title_linked)s)" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Edit post title" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment..." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "endorse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Delete Comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "-posted %(time_ago)s by" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"%(comments_count)s %(span_sr_open)scomments (%(unread_comments_count)s " +"unread comments)%(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(comments_count)s %(span_sr_open)scomments %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(votes_up_count)s%(span_sr_open)s votes %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "DISCUSSION HOME:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "HOW TO USE EDX DISCUSSIONS" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Find discussions" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Focus in on specific topics" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Search for specific posts " +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Sort by date, vote, or comments" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Engage with posts" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Upvote posts and good responses" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Forum Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow posts for updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Receive updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Toggle Notifications Setting" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"Check this box to receive an email digest once a day notifying you about " +"new, unread activity from posts you are following." +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid ", " +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s discussion started" +msgid_plural "%s discussions started" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lms/templates/discussion/index.html +#: lms/templates/discussion/user_profile.html +msgid "Discussion - {course_number}" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "We're sorry" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "" +"The forums are currently undergoing maintenance. We'll have them back up " +"shortly!" +msgstr "" + +#: lms/templates/discussion/user_profile.html +msgid "User Profile" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Collapse discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "This thread has been pinned by course staff." +msgstr "" + +#: lms/templates/discussion/mustache/_pagination.mustache +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "…" +msgstr "" + +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + +#: lms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for {platform_name}! To activate your account, " +"please copy and paste this address into your web browser's address bar:" +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the about section of the {platform_name} Courses web site." +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the {platform_name} web site." +msgstr "" + +#: lms/templates/emails/activation_email_subject.txt +msgid "Your account for {platform_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Dear {full_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "" +"You have been invited to be a beta tester for {course_name} at {site_name} " +"by a member of the course staff." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {course_about_url} to join the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_allowedmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "This email was automatically sent from {site_name} to {email_address}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_subject.txt +msgid "You have been invited to a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us at" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us immediately. Contact information is listed at:" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "" + +#: lms/templates/emails/email_change.txt +msgid "" +"We received a request to change the e-mail associated with your " +"{platform_name} account from {old_email} to {new_email}. If this is correct," +" please confirm your new e-mail address by visiting:" +msgstr "" + +#: lms/templates/emails/email_change_subject.txt +msgid "Request to change {platform_name} account e-mail" +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "Dear student," +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"You have been invited to join {course_name} at {site_name} by a member of " +"the course staff." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "To access the course visit {course_url} and login." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To access the course visit {course_about_url} and register for the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To finish your registration, please visit {registration_url} and fill out " +"the registration form making sure to use {email_address} in the E-mail " +"field." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, you will see " +"{course_name} listed on your dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, visit " +"{course_about_url} to join the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedsubject.txt +msgid "You have been invited to register for {course_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "" +"You have been enrolled in {course_name} at {site_name} by a member of the " +"course staff. The course should now appear on your {site_name} dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "This email was automatically sent from {site_name} to {full_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledsubject.txt +msgid "You have been enrolled in {course_name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Hi {name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"Your payment was successful. You will see the charge below on your next " +"credit or debit card statement." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"The charge will show up on your statement under the company name " +"{merchant_name}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"If you have billing questions, please read the FAQ ({faq_url}) or contact " +"{billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "If you have billing questions, please contact {billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "-The {platform_name} Team" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Your order number is: {order_number}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "The items in your order are:" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Quantity - Description - Price" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/shoppingcart/receipt.html +msgid "#:" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the tech support at" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the course staff at ta@edx.org." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +msgid "" +"You have been removed as a beta tester for {course_name} at {site_name} by a" +" member of the course staff. The course will remain on your dashboard, but " +"you will no longer be part of the beta testing group." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Your other courses have not been affected." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_subject.txt +msgid "You have been removed from a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "Dear Student," +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "" +"You have been un-enrolled from course {course_name} by a member of the " +"course staff. Please disregard the invitation previously sent." +msgstr "" + +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "" +"You have been un-enrolled in {course_name} at {site_name} by a member of the" +" course staff. The course will no longer appear on your {site_name} " +"dashboard." +msgstr "" + +#: lms/templates/emails/unenroll_email_subject.txt +msgid "You have been un-enrolled from {course_name}" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "{course_number} Staff Grading" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"This is the list of problems that currently need to be graded in order to " +"train AI grading and create calibration essays for peer grading. Each " +"problem needs to be treated separately, and we have indicated the number of " +"student submissions that need to be graded. You can grade more than the " +"minimum required number of submissions--this will improve the accuracy of AI" +" grading, though with diminishing returns. You can see the current accuracy " +"of AI grading in the problem view." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Problem List" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"Please note that when you see a submission here, it has been temporarily " +"removed from the grading pool. The submission will return to the grading " +"pool after 30 minutes without any grade being submitted. Hitting the back " +"button will result in a 30 minute wait to be able to grade this submission " +"again." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Prompt" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "(Hide)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Student Response" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Written Feedback" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Feedback for student (optional)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Flag as inappropriate content for later review" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Skip" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Score Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"The chart below displays the score distribution for each standard problem in" +" your class, specified by the problem's url name." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"Scores are shown without weighting applied, so if your problem contains 2 " +"questions, it will display as having a total of 2 points." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Loading problem list..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Gender Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Enrollment Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Total number of enrollees (instructors, staff members, and students)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Basic Course Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Display Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course started?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Yes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course ended?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Grade Cutoffs:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "The status for any active tasks appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Warnings" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 +msgid "" +"For large courses, generating this report may take several hours. Please be " +"patient and do not click the button multiple times. Clicking the button " +"multiple times will significantly slow the grade generation process." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The report is generated in the background, meaning it is OK to navigate away" +" from this page while your report is generating." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Grade Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports Available for Download" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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. +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Note: To keep student data secure, you cannot save or email these " +"links for direct access. Copies of links expire within 5 minutes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Individual due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"In this section, you have the ability to grant extensions on specific units " +"to individual students. Please note that the latest date is always taken; " +"you cannot use this tool to make an assignment due earlier for a particular " +"student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Choose the graded unit:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the extension due date and time (in UTC; please specify MM/DD/YYYY " +"HH:MM)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Change due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Viewing granted extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Here you can see what extensions have been granted on particular units or " +"for a particular student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Choose a graded unit and click the button to obtain a list of all students " +"who have extensions for the given unit." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List all students with due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Specify a specific student to see all of that student's extensions." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List date extensions for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Resetting extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Resetting a problem's due date rescinds a due date extension for a student " +"on a particular unit. This will revert the due date for the student back to " +"the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reset due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Back to Standard Dashboard" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "section_display_name" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"You will not get notification for emails that bounce, so please double-check" +" spelling." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Email Addresses/Usernames" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Auto Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not yet registered for " +"{platform_name} will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is left unchecked, users who have not yet registered" +" for {platform_name} will not be enrolled, but will be allowed to enroll " +"once they make an account." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Notify users by email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users will receive an email " +"notification." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Unenroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Beta Tester Addition" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Note: Users must have an activated {platform_name} account before they can " +"be enrolled as a beta tester." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add beta testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Remove beta testers" +msgstr "" + +#. Translators: an "Administration List" is a list, such as Course Staff, that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Administration List Management" +msgstr "" + +#. Translators: an "Administrator Group" is a group, such as Course Staff, +#. that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Select an Administrator Group:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Getting available lists..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Staff cannot modify staff or beta tester lists. To modify these lists, " +"contact your instructor and ask them to add you as an instructor for staff " +"and beta lists, or a discussion admin for discussion management." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Course Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course staff can help you manage limited aspects of your course. Staff can " +"enroll and unenroll students, as well as modify their grades and see all " +"course data. Course staff are not automatically given access to Studio and " +"will not be able to edit your course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Instructors" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Instructors are the core administration of your course. Instructors can add " +"and remove course staff, as well as administer discussion access." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Instructor" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Beta Testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Beta testers can see course content before the rest of the students. They " +"can make sure that the content works, but have no additional privileges." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Beta Tester" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Admins" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion admins can edit or delete any post, clear misuse flags, close and" +" re-open threads, endorse responses, and see posts from all cohorts. They " +"CAN add/delete other moderators and their posts are marked as 'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Discussion Admin" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Moderators" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion moderators can edit or delete any post, clear misuse flags, close" +" and re-open threads, endorse responses, and see posts from all cohorts. " +"They CANNOT add/delete other moderators and their posts are marked as " +"'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Moderator" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Community TAs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Community TA's are members of the community whom you deem particularly " +"helpful on the discussion boards. They can edit or delete any post, clear " +"misuse flags, close and re-open threads, endorse responses, and see posts " +"from all cohorts. Their posts are marked 'Community TA'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Community TA" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Reload Graphs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Count of Students Opened a Subsection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send Email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Message:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Please try not to email students more than once per week. Before sending " +"your email, consider:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Email actions run in the background. The status for any active tasks - " +"including email tasks - appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"To see the status for all bulk email tasks ever submitted for this course, " +"click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade inspection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Email or Username" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Click this link to view the student's progress page:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Progress Page" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade adjustment" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem urlname" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is {location1}, then just provide the " +"{urlname1}. If the location is {location2}, then provide {urlname2}.)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Next, select an action to perform for the given user and problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset Student Attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Student Submission" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may also delete the entire state of a student for the specified problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Delete Student State for Problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" the 'Pending Instructor Tasks' table. To see status for all tasks submitted" +" for this problem and student, click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Then select an action" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset ALL students' attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore ALL students' problem submissions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"The above actions run in the background, and status for active tasks will " +"appear in a table on the Course Info tab. To see status for all tasks " +"submitted for this problem, click on this button" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Problem" +msgstr "" + +#: lms/templates/licenses/serial_numbers.html +msgid "None Available" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Change Preferred Language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Please choose your preferred language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Save Language Settings" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "" +"Don't see your preferred language? {link_start}Volunteer to become a " +"translator!{link_end}" +msgstr "" + +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/modal/accessible_confirm.html +msgid "modal open" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "{course_number} Combined Notifications" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Open Ended Console" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Here are items that could potentially need your attention." +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "No items require attention at the moment." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "{course_number} Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "" +"Here are a list of open ended problems for this course that have been " +"flagged by students as potentially inappropriate." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "No flagged problems exist." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Unflag" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Ban" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "{course_number} Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Here is a list of open ended problems for this course." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "You have not attempted any open ended problems yet." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Problem Name" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Grader Type" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"\n" +"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" +"{ul_tag}\n" +"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" +"{li_tag}The instructor needs to score the essays that are used to help you better understand the grading\n" +"criteria.{end_li_tag}\n" +"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"Here are a list of problems that need to be peer graded for this course." +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Graded" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Available" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Required" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "No due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "" +"The due date has passed, and peer grading for this problem is closed at this" +" time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "The due date has passed, and peer grading is closed at this time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to Grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Please include some written feedback as well." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"This submission has explicit, offensive, or (I suspect) plagiarized content." +" " +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "How did I do?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Continue" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Ready to grade!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You have finished learning to grade, which means that you are now ready to " +"start grading." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start Grading!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "You have not yet finished learning to grade this problem." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You will now be shown a series of instructor-scored essays, and will be " +"asked to score them yourself." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"Once you can score the essays similarly to an instructor, you will be ready " +"to grade your peers." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Are you sure that you want to flag this submission?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You are about to flag a submission. You should only flag a submission that " +"contains explicit, offensive, or (suspected) plagiarized content. If the " +"submission is not addressed to the question or is incorrect, you should give" +" it a score of zero and accompanying feedback instead of flagging it." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Remove Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Keep Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Go Back" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "Thanks For Registering!" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "" +"Your account is not active yet. An activation link has been sent to {email}," +" along with instructions for activating your account." +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Activation Complete!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Account already active!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "You can now {link_start}log in{link_end}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Activation Invalid" +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "" +"Something went wrong. Check to make sure the URL you went to was correct -- " +"e-mail programs will sometimes split it into two lines. If you still have " +"issues, e-mail us to let us know what happened at {email}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Or you can go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "Password reset successful" +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "" +"We've e-mailed you instructions for setting your password to the e-mail " +"address you submitted. You should be receiving it shortly." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Data" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "These reports are delimited by start and end dates." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"These reports are delimited alphabetically by university name. i.e., " +"generating a report with 'Start Letter' A and 'End Letter' C will generate " +"reports for all universities starting with A, B, and C." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Letter: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Letter: " +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "Payment Error" +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "There was an error processing your order!" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your Shopping Cart" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your selected items:" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Unit Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Total Amount" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "You have selected no items for purchase." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Register for [Course Name] | Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid " () Electronic Receipt" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Order #" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Date:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Items ordered:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Qty" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Note: items with strikethough like " +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid " have been refunded." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Billed To:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are now registered for: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Registered as: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Your Progress" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Current Step: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Intro" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take ID Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Review" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Make Payment" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Confirmation" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Congratulations! You are now verified on " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"You are now registered as a verified student! Your registration details are " +"below." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are registered for:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "A list of courses you have just registered for as a verified student" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Options" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Starts: {start_date}" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to Course" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to your Dashboard" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Verified Status" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"We have received your identification details to verify your identity. If " +"there is a problem with any of the items, we will contact you to resubmit. " +"You can now register for any of the verified certificate courses this " +"semester without having to re-verify." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"The professor will ask you to periodically submit a new photo to verify your" +" work during the course (usually at exam times)." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Payment Details" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"Please print this page for your records; it serves as your receipt. You will" +" also receive an email with the same information." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Order No." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Total" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "this" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Billed To" +msgstr "" + +#: lms/templates/static_templates/404.html +msgid "" +"The page that you were looking for was not found. Go back to the " +"{link_start}homepage{link_end} or let us know about any pages that may have " +"been moved at {email}." +msgstr "" + +#: lms/templates/static_templates/about.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/faq.html +#: lms/templates/static_templates/help.html +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/tos.html +msgid "" +"This page left intentionally blank. It is not used by edx.org but is left " +"here for possible use by installations of Open edX." +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "This Course Unavailable In Your Country" +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "" +"Our system indicates that you are trying to access an edX course from an IP " +"address associated with a country currently subjected to U.S. economic and " +"trade sanctions. Unfortunately, at this time edX must comply with export " +"controls, and we cannot allow you to access this particular course. Feel " +"free to browse our catalogue to find other courses you may be interested in " +"taking." +msgstr "" + +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/honor.html +msgid "Honor Code" +msgstr "" + +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/media-kit.html +msgid "Media Kit" +msgstr "" + +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/press.html +msgid "In the Press" +msgstr "" + +#: lms/templates/static_templates/server-down.html +msgid "Currently the {platform_name} servers are down" +msgstr "" + +#: lms/templates/static_templates/server-down.html +#: lms/templates/static_templates/server-overloaded.html +msgid "" +"Our staff is currently working to get the site back up as soon as possible. " +"Please email us at {tech_support_email} to report any problems or downtime." +msgstr "" + +#: lms/templates/static_templates/server-error.html +msgid "There has been a 500 error on the {platform_name} servers" +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}." +msgstr "" + +#: lms/templates/static_templates/server-overloaded.html +msgid "Currently the {platform_name} servers are overloaded" +msgstr "" + +#: lms/templates/university_profile/edge.html +#: lms/templates/university_profile/edge.html +msgid "edX edge" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Log in to your courses" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Register for classes" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Take free online courses from today's leading universities." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Edit Your Name" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "The following error occurred while editing your name:" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "" +"To uphold the credibility of {platform} certificates, all name changes will " +"be logged and recorded." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Change my name" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Why Do I Need to Re-Verify?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity. We will send the new photo to be matched up with the photo of the " +"original ID you submitted when you signed up for the course." +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Having Technical Trouble?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Have questions?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please read {a_start}our FAQs to view common questions about our " +"certificates{a_end}." +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are upgrading your registration for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are re-verifying for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are registering for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Upgrading to:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Re-verifying for:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Registering as: " +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Change your mind?" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "You can always continue to audit the course without verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You can always {a_start} audit the course for free {a_end} without " +"verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "Technical Requirements" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)." +msgstr "" + +#: lms/templates/verify_student/face_upload.html +msgid "Edit Your Full Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Re-Verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Webcam Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Flash Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have Flash installed. {a_start} Get Flash {a_end} to " +"continue your registration." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Error submitting your images" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Oops! Something went wrong. Please confirm your details and try again." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with your " +"original verification." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Don't see your picture? Make sure to allow your browser to use your camera " +"when it asks for permission." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Take photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Looks good" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Tips on taking a successful photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your face is well-lit" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be sure your entire face is inside the frame" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Can we match the photo you took with the one on your ID?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once in position, use the camera button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your picture" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Use the checkmark button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "once you are happy with the photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Common Questions" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need my photo?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"As part of the verification process, we need your photo to confirm that you " +"are you." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "What do you do with this picture?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "We only use it to verify your identity. It is not displayed anywhere." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches the ID " +"you originally submitted. We will also use this as the name on your " +"certificate." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Edit your name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Once you verify your photo looks good and your name is correct, you can " +"finish your re-verification and return to your course. Note: You " +"will not have another chance to re-verify." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Yes! You can confirm my identity with this information." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Submit photos & re-verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Verification Submission Confirmation" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Your Credentials Have Been Updated" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"We have received your re-verification details and submitted them for review." +" Your dashboard will show the notification status once the review is " +"complete." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"Please note: The professor may ask you to re-verify again at other key " +"points in the course." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "Complete your other re-verifications" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Return to where you left off" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Reverification Status" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You are in the ID Verified track" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following courses:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Re-verify by {date}" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following course:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You have no re-verifications at present." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "The status of your submitted re-verifications:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Failed" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Don't want to re-verify right now?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Why do I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity by submitting a new photo of your face. We will send the new photo " +"to be matched up with the photo of the original ID you submitted when you " +"signed up for the course. If you are taking multiple courses, you may need " +"to re-verify multiple times, once for every important point in each course " +"you are taking as a verified student." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What will I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because you are just confirming that you are still you, the only thing you " +"will need to do to re-verify is to submit a new photo of your face with " +"your webcam. The process is quick and you will be brought back to where " +"you left off so you can keep on learning." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"If you changed your name during the semester and it no longer matches the " +"original ID you submitted, you will need to re-edit your name to match as " +"well." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What if I have trouble with my re-verification?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because of the short time that re-verification is open, you will not" +" be able to correct a failed verification. If you think there was " +"an error in the review, please contact us at {email}" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Verification" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Please Resubmit Your Verification Information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"There was an error with your previous verification. In order proceed in the " +"verified certificate of achievement track of your current courses, please " +"complete the following steps." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with the " +"picture on your ID." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your photo looks good, you can move on to step 2." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Go to Step 2: Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show Us Your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your ID so we can match it with your " +"photo and the name on your account." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your ID is well-lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Acceptable IDs include drivers licenses, passports, or other goverment-" +"issued IDs that include your name and photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check that there isn't any glare" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Ensure that you can see your photo and read your name" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Try to keep your fingers at the edge to avoid covering important information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need a photo of my ID?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We need to match your ID with your photo and name to confirm that you are " +"you." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We encrypt it and send it to our secure authorization service for review. We" +" use the highest levels of security and do not save the photo or information" +" anywhere once the match has been completed." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your ID photo looks good, you can move on to step 3." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 3: Review Your Info" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Verify Your Submission" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure we can verify your identity with the photos and information below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Review the Photos You've Re-Taken" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Please review the photos and verify that they meet the requirements listed " +"below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo above needs to meet the following requirements:" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be well lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show your whole face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo on your ID must match the photo of your face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be readable (not too far away, no glare)" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The name on your ID must match the name on your account below" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Photos don't meet the requirements?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake Your Photos" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches your ID. " +"We will also use this as the name on your certificate." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"Once you verify your details match the requirements, you can move onto to " +"confirm your re-verification submisssion." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Yes! My details all match." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Upgrade Your Registration for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/verified.html +msgid "Register for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue registering, or select to {a_start} audit " +"the course for free {a_end} without verifying." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Error processing your order" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Oops! Something went wrong. Please confirm your details again and click the " +"button to move on to payment. If you are still having trouble, please try " +"again later." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "What if my camera isn't working?" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 2: Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Review the Photos You've Taken" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Contribution Level" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Please confirm your contribution for this course (min. $" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Once you verify your details match the requirements, you can move on to step" +" 4, payment on our secure server." +msgstr "" + +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course}, you need to re-verify your" +" identity by {date}. Go to URL." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +msgid "" +"We've captured your re-submitted information and will review it to verify " +"your identity shortly. You should receive an update to your veriication " +"status within 1-2 days. In the meantime, you still have access to all of " +"your course content." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Return to Your Dashboard" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Re-Verification Failed" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "" +"Your re-verification was submitted after the re-verification deadline, and " +"you can no longer be re-verified." +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Please contact support if you believe this message to be in error." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Upgrade Your Registration for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Register for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "You need to activate your edX account before proceeding" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please check your email for further instructions on activating your new " +"account." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Upgrade" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to upgrade to being an ID verified " +"student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Register" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to register as an ID verified student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Activate Your Account" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Check your email" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"you need an active edX account before registering - check your email for " +"instructions" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Identification" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A photo identification document" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"a drivers license, passport, or other goverment or school-issued ID with " +"your name and picture on it" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Webcam" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A webcam and a modern browser" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " +"{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please make sure your browser is updated to the most recent version possible" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Credit or Debit Card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A major credit or debit card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Visa, Master Card, American Express, Discover, Diners Club, JCB with " +"Discover logo" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always continue to audit this course instead." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always {a_start}audit this course instead{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Go to Step 1: Take my Photo" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "ID Verification" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You've Been Verified Previously" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "" +"We've already verified your identity (through the photos of you and your ID " +"you provided earlier). You can proceed to make your secure payment and " +"complete registration." +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You have decided to pay $ " +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}(active){span_end}" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "Changes" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}active{span_end}" +msgstr "" + +#: lms/templates/wiki/includes/breadcrumbs.html +msgid "Add article" +msgstr "" + +#: cms/templates/404.html +msgid "The page that you were looking for was not found." +msgstr "" + +#: cms/templates/404.html +msgid "" +"Go back to the {homepage} or let us know about any pages that may have been " +"moved at {email}." +msgstr "" + +#: cms/templates/500.html +msgid "Studio Server Error" +msgstr "" + +#: cms/templates/500.html +msgid "The Studio servers encountered an error" +msgstr "" + +#: cms/templates/500.html +msgid "" +"An error occurred in Studio and the page could not be loaded. Please try " +"again in a few moments." +msgstr "" + +#: cms/templates/500.html +msgid "" +"We've logged the error and our staff is currently working to resolve this " +"error as soon as possible." +msgstr "" + +#: cms/templates/500.html +msgid "If the problem persists, please email us at {email_link}." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +#: cms/templates/activation_invalid.html +msgid "Studio Account Activation" +msgstr "" + +#: cms/templates/activation_active.html +msgid "Your account is already active" +msgstr "" + +#: cms/templates/activation_active.html +msgid "" +"This account, set up using {0}, has already been activated. Please sign in " +"to start working within edX Studio." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +msgid "Sign into Studio" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "Your account activation is complete!" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "" +"Thank you for activating your account. You may now sign in and start using " +"edX Studio to author courses." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Your account activation is invalid" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"We're sorry. Something went wrong with your activation. Check to make sure " +"the URL you went to was correct — e-mail programs will sometimes split" +" it into two lines." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"If you still have issues, contact edX Support. In the meatime, you can also " +"return to" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Contact edX Support" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/widgets/header.html +msgid "Files & Uploads" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Uploading…" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +msgid "Choose File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/asset_index.html +msgid "Upload New File" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Load Another File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/course_info.html +#: cms/templates/edit-tabs.html cms/templates/overview.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Content" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/course_info.html cms/templates/edit-tabs.html +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/textbooks.html +msgid "Page Actions" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + +#: cms/templates/asset_index.html +msgid "What files are listed here?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"In addition to the files you upload on this page, any files that you add to " +"the course appear in this list. These files include your course image, " +"textbook chapters, and files that appear on your Course Handouts sidebar." +msgstr "" + +#: cms/templates/asset_index.html +msgid "File URLs" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the Embed URL value to link to the file or image from a component, a" +" course update, or a course handout." +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the External URL value to reference the file or image from outside " +"of your course. Do not use the External URL as a link value within your " +"course." +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/overview.html cms/templates/settings_graders.html +msgid "What can I do on this page?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You can upload new files or view, download, or delete existing files. You " +"can lock a file so that people who are not enrolled in your course cannot " +"access that file." +msgstr "" + +#: cms/templates/asset_index.html +msgid "Your file has been deleted." +msgstr "" + +#: cms/templates/asset_index.html +msgid "close alert" +msgstr "" + +#: cms/templates/checklists.html cms/templates/export.html +#: cms/templates/export_git.html cms/templates/import.html +#: cms/templates/widgets/header.html +msgid "Tools" +msgstr "" + +#: cms/templates/checklists.html +msgid "Course Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "Current Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "What are course checklists?" +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Course checklists are tools to help you understand and keep track of all the" +" steps necessary to get your course ready for students." +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Any changes you make to these checklists are saved automatically and are " +"immediately visible to other course team members." +msgstr "" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +msgid "Duplicate" +msgstr "" + +#: cms/templates/component.html +msgid "Duplicate this component" +msgstr "" + +#: cms/templates/component.html +msgid "Delete this component" +msgstr "" + +#: cms/templates/component.html cms/templates/container_xblock_component.html +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/overview.html cms/templates/overview.html +msgid "Drag to reorder" +msgstr "" + +#: cms/templates/container.html +msgid "Container" +msgstr "" + +#: cms/templates/container.html +msgid "This page has no content yet." +msgstr "" + +#: cms/templates/container.html cms/templates/container.html +msgid "Publishing Status" +msgstr "" + +#: cms/templates/container.html +msgid "Published" +msgstr "" + +#: cms/templates/container.html +msgid "" +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." +msgstr "" + +#: cms/templates/course_info.html cms/templates/course_info.html +msgid "Course Updates" +msgstr "" + +#: cms/templates/course_info.html +msgid "New Update" +msgstr "" + +#: cms/templates/course_info.html +msgid "" +"Use course updates to notify students of important dates or exams, highlight" +" particular discussions in the forums, announce schedule changes, and " +"respond to student questions. You add or edit updates in HTML." +msgstr "" + +#. Translators: Pages refer to the tabs that appear in the top navigation of +#. each course. +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/export.html cms/templates/widgets/header.html +msgid "Pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "New Page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit_subsection.html +#: cms/templates/index.html cms/templates/overview.html +#: cms/templates/unit.html +msgid "View Live" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Show this page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "Show/hide page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "This page cannot be reordered" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "You can add additional custom pages to your course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Add a New Page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "What are pages?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages are listed horizontally at the top of your course. Default pages " +"(Courseware, Course info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages that you create." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Custom pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"You can create and edit custom pages to provide students with additional " +"course content. For example, you can create pages for the grading policy, " +"course slides, and a course calendar. " +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "How do pages look to students in my course?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Students see the default and custom pages at the top of your course and use " +"these links to navigate." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "See an example" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Pages in Your Course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Preview of Pages in your course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages appear in your course's top navigation bar. The default pages " +"(Courseware, Course Info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages." +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/howitworks.html +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "close modal" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "CMS Subsection" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/unit.html +msgid "Display Name:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Units:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Subsection Settings" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Day" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Time" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/edit_subsection.html +#: cms/templates/overview.html +msgid "Coordinated Universal Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "UTC" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "" +"The date above differs from the release date of {name}, which is unset." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "The date above differs from the release date of {name} - {start_time}" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Sync to {name}." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Graded as:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Set a due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Day" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Remove due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Preview Drafts" +msgstr "" + +#: cms/templates/error.html +msgid "Internal Server Error" +msgstr "" + +#: cms/templates/error.html +msgid "The Page You Requested Page Cannot be Found" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. We couldn't find the Studio page you're looking for. You may " +"want to return to the Studio Dashboard and try again. If you are still " +"having problems accessing things, please feel free to {link_start}contact " +"Studio support{link_end} for further help." +msgstr "" + +#: cms/templates/error.html cms/templates/error.html +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Use our feedback tool, Tender, to share your feedback" +msgstr "" + +#: cms/templates/error.html +msgid "The Server Encountered an Error" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. There was a problem with the server while trying to process " +"your last request. You may want to return to the Studio Dashboard or try " +"this request again. If you are still having problems accessing things, " +"please feel free to {link_start}contact Studio support{link_end} for further" +" help." +msgstr "" + +#: cms/templates/error.html +msgid "Back to dashboard" +msgstr "" + +#: cms/templates/export.html cms/templates/export.html +msgid "Course Export" +msgstr "" + +#: cms/templates/export.html +msgid "About Exporting Courses" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export courses and edit them outside of Studio. The exported file is" +" a .tar.gz file (that is, a .tar file compressed with GNU Zip) that contains" +" the course structure and content. You can also re-import courses that " +"you've exported." +msgstr "" + +#: cms/templates/export.html +msgid "Export My Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Export Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}exported with{em_end} your course:" +msgstr "" + +#: cms/templates/export.html +msgid "Course Content (all Sections, Sub-sections, and Units)" +msgstr "" + +#: cms/templates/export.html +msgid "Course Structure" +msgstr "" + +#: cms/templates/export.html +msgid "Individual Problems" +msgstr "" + +#: cms/templates/export.html +msgid "Course Assets" +msgstr "" + +#: cms/templates/export.html +msgid "Course Settings" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}not exported{em_end} with your course:" +msgstr "" + +#: cms/templates/export.html +msgid "User Data" +msgstr "" + +#: cms/templates/export.html +msgid "Course Team Data" +msgstr "" + +#: cms/templates/export.html +msgid "Forum/discussion Data" +msgstr "" + +#: cms/templates/export.html +msgid "Certificates" +msgstr "" + +#: cms/templates/export.html +msgid "Why export a course?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your course directly, outside of Studio. You" +" may want to create a backup copy of your course. Or, you may want to create" +" a copy of your course that you can later import into another course " +"instance and customize." +msgstr "" + +#: cms/templates/export.html +msgid "What content is exported?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are exported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, is not exported." +msgstr "" + +#: cms/templates/export.html +msgid "Opening the downloaded file" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the course.xml file, as well as subfolders that contain course" +" content." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git" +msgstr "" + +#: cms/templates/export_git.html cms/templates/export_git.html +#: cms/templates/widgets/header.html +msgid "Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "About Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "Use this to export your course to its git repository." +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"This will then trigger an automatic update of the main LMS site and update " +"the contents of your course visible there to students if automatic git " +"imports are configured." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git:" +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"giturl must be defined in your course settings before you can export to git." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Failed" +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Succeeded" +msgstr "" + +#: cms/templates/export_git.html +msgid "Your course:" +msgstr "" + +#: cms/templates/export_git.html +msgid "Course git url:" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome to" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio helps manage your courses online, so you can focus on teaching them" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Studio's Many Features" +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "Studio Helps You Keep Your Courses Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Keeping Your Course Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"The backbone of your course is how it is organized. Studio offers an " +"Outline editor, providing a simple hierarchy and easy drag " +"and drop to help you and your students stay organized." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple Organization For Content" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio uses a simple hierarchy of sections and " +"subsections to organize your content." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Change Your Mind Anytime" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Draft your outline and build content anywhere. Simple drag and drop tools " +"let your reorganize quickly." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Go A Week Or A Semester At A Time" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Build and release sections to your students incrementally. " +"You don't have to have it all done at once." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html +msgid "Learning is More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio lets you weave your content together in a way that reinforces " +"learning — short video lectures interleaved with exercises and more. " +"Insert videos and author a wide variety of exercise types with just a few " +"clicks." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Create Learning Pathways" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Help your students understand a small interactive piece at a time with " +"multimedia, HTML, and exercises." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work Visually, Organize Quickly" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Work visually and see exactly what your students will see. Reorganize all " +"your content with drag and drop." +msgstr "" + +#: cms/templates/howitworks.html +msgid "A Broad Library of Problem Types" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"It's more than just multiple choice. Studio has nearly a dozen types of " +"problems to challenge your learners." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "" +"Studio Gives You Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio works like web applications you already know, yet understands how you" +" build curriculum. Instant publishing to the web when you want it, " +"incremental release when it makes sense. And with co-authors, you can have a" +" whole team building a course, together." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Instant Changes" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Caught a bug? No problem. When you want, your changes to live when you hit " +"Save." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Release-On Date Publishing" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"When you've finished a section, pick when you want it to go" +" live and Studio takes care of the rest. Build your course incrementally." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work in Teams" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Co-authors have full access to all the same authoring tools. Make your " +"course better through a team effort." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up for Studio Today!" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up & Start Making an edX Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Already have a Studio Account? Sign In" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Outlining Your Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simple two-level outline to organize your couse. Drag and drop, and see your" +" course at a glance." +msgstr "" + +#: cms/templates/howitworks.html +msgid "More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Quickly create videos, text snippets, inline discussions, and a variety of " +"problem types." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Publishing on Date" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simply set the date of a section or subsection, and Studio will publish it " +"to your students for you." +msgstr "" + +#: cms/templates/html_error.html +msgid "We're having trouble rendering your component" +msgstr "" + +#: cms/templates/html_error.html +msgid "" +"Students will not be able to access this component. Re-edit your component " +"to fix the error." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Course Import" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a course before continuing. Content of the " +"imported course replaces all the content of this course. {em_start}You " +"cannot undo a course import{em_end}. We recommend that you first export the " +"current course, so you have a backup copy of it." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "" +"The course that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " +"It may also contain other files." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your course until the import operation has completed." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Course Content" +msgstr "" + +#: cms/templates/import.html +msgid "Choose a File to Import" +msgstr "" + +#: cms/templates/import.html +msgid "File Chosen:" +msgstr "" + +#: cms/templates/import.html +msgid "Replace my course with the one above" +msgstr "" + +#: cms/templates/import.html +msgid "Course Import Status" +msgstr "" + +#: cms/templates/import.html +msgid "Uploading" +msgstr "" + +#: cms/templates/import.html +msgid "Transferring your file to our servers" +msgstr "" + +#: cms/templates/import.html +msgid "Unpacking" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Expanding and preparing folder/file structure (You can now leave this page " +"safely, but avoid making drastic changes to content until this import is " +"complete)" +msgstr "" + +#: cms/templates/import.html +msgid "Verifying" +msgstr "" + +#: cms/templates/import.html +msgid "Reviewing semantics, syntax, and required data" +msgstr "" + +#: cms/templates/import.html +msgid "Updating Course" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this course. This may take a while " +"with larger courses." +msgstr "" + +#: cms/templates/import.html +msgid "Success" +msgstr "" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this course" +msgstr "" + +#: cms/templates/import.html +msgid "View Updated Outline" +msgstr "" + +#: cms/templates/import.html +msgid "Why import a course?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"You may want to run a new version of an existing course, or replace an " +"existing course altogether. Or, you may have developed a course outside " +"Studio." +msgstr "" + +#: cms/templates/import.html +msgid "What content is imported?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are imported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, remains the same as it was in the existing course." +msgstr "" + +#: cms/templates/import.html +msgid "Warning: Importing while a course is running" +msgstr "" + +#: cms/templates/import.html +msgid "" +"If you perform an import while your course is running, and you change the " +"URL names (or url_name nodes) of any Problem components, the student data " +"associated with those Problem components may be lost. This data includes " +"students' problem scores." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error during the upload process." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while unpacking the file." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while verifying the file you submitted." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while importing the new course to our database." +msgstr "" + +#: cms/templates/import.html +msgid "Your import has failed." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Choose new file" +msgstr "" + +#: cms/templates/import.html +msgid "Your import is in progress; navigating away will abort it." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +#: cms/templates/widgets/header.html +msgid "My Courses" +msgstr "" + +#: cms/templates/index.html +msgid "New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Email staff to create course" +msgstr "" + +#: cms/templates/index.html +msgid "Welcome, {0}!" +msgstr "" + +#: cms/templates/index.html +msgid "Here are all of the courses you currently have access to in Studio:" +msgstr "" + +#: cms/templates/index.html +msgid "You currently aren't associated with any Studio Courses." +msgstr "" + +#: cms/templates/index.html +msgid "Please correct the highlighted fields below." +msgstr "" + +#: cms/templates/index.html +msgid "Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Required Information to Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. Introduction to Computer Science" +msgstr "" + +#: cms/templates/index.html +msgid "The public display name for your course." +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +msgid "Organization" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. UniversityX or OrganizationX" +msgstr "" + +#: cms/templates/index.html +msgid "The name of the organization sponsoring the course." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed." +msgstr "" + +#: cms/templates/index.html +msgid "" +"This cannot be changed, but you can set a different display name in Advanced" +" Settings later." +msgstr "" + +#: cms/templates/index.html +msgid "e.g. CS101" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The unique number that identifies your course within your organization." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed and it cannot be changed." +msgstr "" + +#: cms/templates/index.html +msgid "Course Run" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. 2014_T1" +msgstr "" + +#: cms/templates/index.html +msgid "The term in which your course will run." +msgstr "" + +#: cms/templates/index.html +msgid "Create" +msgstr "" + +#: cms/templates/index.html +msgid "Course Run:" +msgstr "" + +#: cms/templates/index.html +msgid "Are you staff on an existing Studio course?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"You will need to be added to the course in Studio by the course creator. " +"Please get in touch with the course creator or administrator for the " +"specific course you are helping to author." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Create Your First Course" +msgstr "" + +#: cms/templates/index.html +msgid "Your new course is just a click away!" +msgstr "" + +#: cms/templates/index.html +msgid "Becoming a Course Creator in Studio" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team will " +"evaluate your request and provide you feedback within 24 hours during the " +"work week." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status:" +msgstr "" + +#: cms/templates/index.html +msgid "Request the Ability to Create Courses" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is has " +"completed evaluating your request." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator request is:" +msgstr "" + +#: cms/templates/index.html +msgid "Denied" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request did not meet the criteria/guidelines specified by edX Staff." +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is " +"currently evaluating your request." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request is currently being reviewed by edX staff and should be updated " +"shortly." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Need help?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"If you are new to Studio and having trouble getting started, there are a few" +" things that may be of help:" +msgstr "" + +#: cms/templates/index.html +msgid "Get started by reading Studio's Documentation" +msgstr "" + +#: cms/templates/index.html +msgid "Request help with Studio" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Can I create courses in Studio?" +msgstr "" + +#: cms/templates/index.html +msgid "In order to create courses in Studio, you must" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX staff to help you create a course" +msgstr "" + +#: cms/templates/index.html +msgid "" +"In order to create courses in Studio, you must have course creator " +"privileges to create your own course." +msgstr "" + +#: cms/templates/index.html +msgid "Your request to author courses in studio has been denied. Please" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX Staff with further questions" +msgstr "" + +#: cms/templates/index.html +msgid "Thanks for signing up, %(name)s!" +msgstr "" + +#: cms/templates/index.html +msgid "We need to verify your email address" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Almost there! In order to complete your sign up we need you to verify your " +"email address (%(email)s). An activation message and next steps should be " +"waiting for you there." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Please check your Junk or Spam folders in case our email isn't in your " +"INBOX. Still can't find the verification email? Request help via the link " +"below." +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/header.html +msgid "Sign In" +msgstr "" + +#: cms/templates/login.html cms/templates/login.html +msgid "Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html +msgid "Don't have a Studio Account? Sign up!" +msgstr "" + +#: cms/templates/login.html +msgid "Required Information to Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +msgid "Email Address" +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/sock.html +msgid "Studio Support" +msgstr "" + +#: cms/templates/login.html +msgid "" +"Having trouble with your account? Use {link_start}our support " +"center{link_end} to look over self help steps, find solutions others have " +"found to the same problem, or let us know of your issue." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Settings" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Course Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a User to Your Course's Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member Information" +msgstr "" + +#: cms/templates/manage_users.html +msgid "User's Email Address" +msgstr "" + +#: cms/templates/manage_users.html +msgid "e.g. jane.doe@gmail.com" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Please provide the email address of the course staff member you'd like to " +"add" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add User" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "Current Role:" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "You!" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Staff" +msgstr "" + +#: cms/templates/manage_users.html +msgid "send an email message to {email}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Promote another member to Admin to remove your admin rights" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Remove Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Delete the user, {username}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Team Members to This Course" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Adding team members makes course authoring collaborative. Users must be " +"signed up for Studio and have an active account. " +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Roles" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Course team members, or staff, are course co-authors. They have full writing" +" and editing privileges on all course content." +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Admins are course team members who can add and remove other course team " +"members." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Transferring Ownership" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Every course must have an Admin. If you're the Admin and you want transfer " +"ownership of the course, click Add admin access to make another user the " +"Admin, then ask that user to remove you from the Course Team list." +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Course Outline" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html +msgid "Expand/collapse this section" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Section Name" +msgstr "" + +#: cms/templates/overview.html +msgid "Add a new section name" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Delete this section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to re-order" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Subsection" +msgstr "" + +#: cms/templates/overview.html cms/templates/widgets/units.html +msgid "New Unit" +msgstr "" + +#: cms/templates/overview.html +msgid "You haven't added any sections to your course outline yet." +msgstr "" + +#: cms/templates/overview.html +msgid "Add your first section" +msgstr "" + +#: cms/templates/overview.html +msgid "Collapse All Sections" +msgstr "" + +#: cms/templates/overview.html +msgid "New Section" +msgstr "" + +#: cms/templates/overview.html +msgid "This section is not scheduled for release" +msgstr "" + +#: cms/templates/overview.html +msgid "Schedule" +msgstr "" + +#: cms/templates/overview.html +msgid "Release date:" +msgstr "" + +#: cms/templates/overview.html +msgid "Edit section release date" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to reorder section" +msgstr "" + +#: cms/templates/overview.html +msgid "Expand/collapse this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"You can create new sections and subsections, set the release date for " +"sections, and create new units in existing subsections. You can set the " +"assignment type for subsections that are to be graded, and you can open a " +"subsection for further editing." +msgstr "" + +#: cms/templates/overview.html +msgid "" +"In addition, you can drag and drop sections, subsections, and units to " +"reorganize your course." +msgstr "" + +#: cms/templates/overview.html +msgid "Section Release Date" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"On the date set below, this section - {name} - will be released to students." +" Any units marked private will only be visible to admins." +msgstr "" + +#: cms/templates/overview.html +msgid "Form Actions" +msgstr "" + +#: cms/templates/register.html +msgid "Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "Already have a Studio Account? Sign in" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Ready to start creating online courses? Sign up below and start creating " +"your first edX course today." +msgstr "" + +#: cms/templates/register.html +msgid "Required Information to Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "" +"This will be used in public discussions with your courses and in our edX101 " +"support forums" +msgstr "" + +#: cms/templates/register.html +msgid "Your Location" +msgstr "" + +#: cms/templates/register.html +msgid "I agree to the {a_start} Terms of Service {a_end}" +msgstr "" + +#: cms/templates/register.html +msgid "Create My Account & Start Authoring Courses" +msgstr "" + +#: cms/templates/register.html +msgid "Common Studio Questions" +msgstr "" + +#: cms/templates/register.html +msgid "Who is Studio for?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is for anyone that wants to create online courses that leverage the " +"global edX platform. Our users are often faculty members, teaching " +"assistants and course staff, and members of instructional technology groups." +msgstr "" + +#: cms/templates/register.html +msgid "How technically savvy do I need to be to create courses in Studio?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is designed to be easy to use by almost anyone familiar with common " +"web-based authoring environments (Wordpress, Moodle, etc.). No programming " +"knowledge is required, but for some of the more advanced features, a " +"technical background would be helpful. As always, we are here to help, so " +"don't hesitate to dive right in." +msgstr "" + +#: cms/templates/register.html +msgid "I've never authored a course online before. Is there help?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Absolutely. We have created an online course, edX101, that describes some " +"best practices: from filming video, creating exercises, to the basics of " +"running an online course. Additionally, we're always here to help, just drop" +" us a note." +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details Settings" +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/settings.html +msgid "Basic Information" +msgstr "" + +#: cms/templates/settings.html +msgid "The nuts and bolts of your course" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "This field is disabled: this information cannot be changed." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Summary Page" +msgstr "" + +#: cms/templates/settings.html +msgid "(for student enrollment and access)" +msgstr "" + +#: cms/templates/settings.html +msgid "Send a note to students via email" +msgstr "" + +#: cms/templates/settings.html +msgid "Invite your students" +msgstr "" + +#: cms/templates/settings.html +msgid "Promoting Your Course with edX" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course summary page will not be viewable until your course has been " +"announced. To provide content for the page and preview it, follow the " +"instructions provided by your PM." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Schedule" +msgstr "" + +#: cms/templates/settings.html +msgid "Dates that control when your course can be viewed" +msgstr "" + +#: cms/templates/settings.html +msgid "First day the course begins" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day your course is active" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Date" +msgstr "" + +#: cms/templates/settings.html +msgid "First day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "These Dates Are Not Used When Promoting Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"These dates impact when your courseware can be viewed, but " +"they are not the dates shown on your course summary page. " +"To provide the course start and registration dates as shown on your course " +"summary page, follow the instructions provided by your PM or Conrad Warre (conrad@edx.org)." +msgstr "" + +#: cms/templates/settings.html +msgid "Introducing Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "Information for prospective students" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Short Description" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Appears on the course catalog page when students roll over the course name. " +"Limit to ~150 characters" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Overview" +msgstr "" + +#: cms/templates/settings.html +msgid "your course summary page" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"You can manage this image along with all of your other files " +"& uploads" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 375px wide by 200px tall)" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your course image (Note: only JPEG " +"or PNG format supported)" +msgstr "" + +#: cms/templates/settings.html +msgid "Upload Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Introduction Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Delete Current Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Enter your YouTube video's ID (along with any restriction parameters)" +msgstr "" + +#: cms/templates/settings.html +msgid "Requirements" +msgstr "" + +#: cms/templates/settings.html +msgid "Expectations of the students taking this course" +msgstr "" + +#: cms/templates/settings.html +msgid "Hours of Effort per Week" +msgstr "" + +#: cms/templates/settings.html +msgid "Time spent on all course work" +msgstr "" + +#: cms/templates/settings.html +msgid "How are these settings used?" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course's schedule determines when students can enroll in and begin a " +"course." +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Other information from this page appears on the About page for your course. " +"This information includes the course overview, course image, introduction " +"video, and estimated time requirements. Students use About pages to choose " +"new courses to take." +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html +msgid "Other Course Settings" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +msgid "Grading" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Advanced Settings" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "There was an error saving your information. Please see below." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Manual Policy Definition" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Warning: Do not modify these policies unless you are " +"familiar with their purpose." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "What do advanced settings do?" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Advanced settings control specific course functionality. On this page, you " +"can edit manual policies, which are JSON-based key and value pairs that " +"control specific course settings." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Any policies you modify here override all other information you've defined " +"elsewhere in Studio. Do not edit policies unless you are familiar with both " +"their purpose and syntax." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" +" you use double quotation marks (") around the string. Do not use " +"single quotation marks (')." +msgstr "" + +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +msgid "Details & Schedule" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Settings" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Overall Grade Range" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Your overall grading scale for student final grades" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Rules & Policies" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Deadlines, requirements, and logistics around grading student work" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grace Period on Deadline:" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Leeway on due dates" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Assignment Types" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Categories and labels for any exercises that are gradable" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "New Assignment Type" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can use the slider under Overall Grade Range to specify whether your " +"course is pass/fail or graded by letter, and to establish the thresholds for" +" each grade." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can specify whether your course offers students a grace period for late " +"assignments." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can also create assignment types, such as homework, labs, quizzes, and " +"exams, and specify how much of a student's grade each assignment type is " +"worth." +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +#: cms/templates/studio_vertical_wrapper.html +msgid "Expand or Collapse" +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + +#: cms/templates/textbooks.html +msgid "You have unsaved changes. Do you really want to leave this page?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "New Textbook" +msgstr "" + +#: cms/templates/textbooks.html +msgid "Why should I break my textbook into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"Breaking your textbook into multiple chapters reduces loading times for " +"students, especially those with slow Internet connections. Breaking up " +"textbooks into chapters can also help students more easily find topic-based " +"information." +msgstr "" + +#: cms/templates/textbooks.html +msgid "What if my book isn't divided into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"If your textbook doesn't have individual chapters, you can upload the entire" +" text as a single chapter and enter a name of your choice in the Chapter " +"Name field." +msgstr "" + +#: cms/templates/unit.html cms/templates/ux/reference/unit.html +msgid "Individual Unit" +msgstr "" + +#: cms/templates/unit.html +msgid "You are editing a draft." +msgstr "" + +#: cms/templates/unit.html +msgid "This unit was originally published on {date}." +msgstr "" + +#: cms/templates/unit.html +msgid "View the Live Version" +msgstr "" + +#: cms/templates/unit.html +msgid "Add New Component" +msgstr "" + +#: cms/templates/unit.html +msgid "Common Problem Types" +msgstr "" + +#: cms/templates/unit.html +msgid "Advanced" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Settings" +msgstr "" + +#: cms/templates/unit.html +msgid "Visibility:" +msgstr "" + +#: cms/templates/unit.html +msgid "Public" +msgstr "" + +#: cms/templates/unit.html +msgid "Private" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit has been published. To make changes, you must {link_start}edit a " +"draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This is a draft of the published unit. To update the live version, you must " +"{link_start}replace it with this draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "Delete Draft" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Location" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Identifier:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for edX Studio! To activate your account, please " +"copy and paste this address into your web browser's address bar:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the edX web site." +msgstr "" + +#: cms/templates/emails/activation_email_subject.txt +msgid "Your account for edX Studio" +msgstr "" + +#: cms/templates/emails/course_creator_admin_subject.txt +msgid "{email} has requested Studio course creator privileges on edge" +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "" +"User '{user}' with e-mail {email} has requested Studio course creator " +"privileges on edge." +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "To grant or deny this request, use the course creator admin table." +msgstr "" + +#: cms/templates/emails/course_creator_denied.txt +msgid "" +"Your request for course creation rights to edX Studio have been denied. If " +"you believe this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_granted.txt +msgid "" +"Your request for course creation rights to edX Studio have been granted. To " +"create your first course, visit:" +msgstr "" + +#: cms/templates/emails/course_creator_revoked.txt +msgid "" +"Your course creation rights to edX Studio have been revoked. If you believe " +"this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_subject.txt +msgid "Your course creator status for edX Studio" +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "You can now {link_start}login{link_end}." +msgstr "" + +#: cms/templates/registration/reg_complete.html +msgid "" +"An activation link has been sent to {email}, along with instructions for " +"activating your account." +msgstr "" + +#: cms/templates/widgets/footer.html +msgid "All rights reserved." +msgstr "" + +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Contact Us" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Current Course:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "{course_name}'s Navigation:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Outline" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Updates" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Checklists" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Import" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Export" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Help & Account Navigation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +msgid "This is a PDF Document" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Documentation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html +msgid "Studio Help Center" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Currently signed in as:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Sign Out" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "You're not currently signed in" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "How Studio Works" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Help" +msgstr "" + +#: cms/templates/widgets/metadata-edit.html +msgid "Launch Latex Source Compiler" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Heading 1" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Multiple Choice" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Checkboxes" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Text Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Numerical Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Dropdown" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Explanation" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Advanced Editor" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Toggle Cheatsheet" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Label" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "edX Studio Help" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Need help with Studio? Creating a course is complex, so we're here to help. " +"Take advantage of our documentation, help center, as well as our edX101 " +"introduction course for course authors." +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Download Studio Documentation" +msgstr "" + +#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +msgid "How to use Studio to build your course" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Enroll in edX101" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Contact us about Studio" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Have problems, questions, or suggestions about Studio? We're also here to " +"listen to any feedback you want to share." +msgstr "" + +#: cms/templates/widgets/tabs-aggregator.html +msgid "name" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete this unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to sort" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to reorder unit" +msgstr "" + +# empty +msgid "This is a key string." +msgstr "" + +#: wiki/admin.py wiki/models/article.py +msgid "created" +msgstr "" + +#: wiki/forms.py +msgid "Only localhost... muahahaha" +msgstr "" + +#: wiki/forms.py +msgid "Initial title of the article. May be overridden with revision titles." +msgstr "" + +#: wiki/forms.py +msgid "Type in some contents" +msgstr "" + +#: wiki/forms.py +msgid "" +"This is just the initial contents of your article. After creating it, you " +"can use more complex features like adding plugins, meta data, related " +"articles etc..." +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Contents" +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Summary" +msgstr "" + +#: wiki/forms.py +msgid "" +"Give a short reason for your edit, which will be stated in the revision log." +msgstr "" + +#: wiki/forms.py +msgid "" +"While you were editing, someone else changed the revision. Your contents " +"have been automatically merged with the new contents. Please review the text" +" below." +msgstr "" + +#: wiki/forms.py +msgid "No changes made. Nothing to save." +msgstr "" + +#: wiki/forms.py +msgid "Select an option" +msgstr "" + +#: wiki/forms.py +msgid "Slug" +msgstr "" + +#: wiki/forms.py +msgid "" +"This will be the address where your article can be found. Use only " +"alphanumeric characters and - or _. Note that you cannot change the slug " +"after creating the article." +msgstr "" + +#: wiki/forms.py +msgid "Write a brief message for the article's history log." +msgstr "" + +#: wiki/forms.py +msgid "A slug may not begin with an underscore." +msgstr "" + +#: wiki/forms.py +msgid "A deleted article with slug \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "A slug named \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "Yes, I am sure" +msgstr "" + +#: wiki/forms.py +msgid "Purge" +msgstr "" + +#: wiki/forms.py +msgid "" +"Purge the article: Completely remove it (and all its contents) with no undo." +" Purging is a good idea if you want to free the slug such that users can " +"create new articles in its place." +msgstr "" + +#: wiki/forms.py wiki/plugins/attachments/forms.py +#: wiki/plugins/images/forms.py +msgid "You are not sure enough!" +msgstr "" + +#: wiki/forms.py +msgid "While you tried to delete this article, it was modified. TAKE CARE!" +msgstr "" + +#: wiki/forms.py +msgid "Lock article" +msgstr "" + +#: wiki/forms.py +msgid "Deny all users access to edit this article." +msgstr "" + +#: wiki/forms.py +msgid "Permissions" +msgstr "" + +#: wiki/forms.py +msgid "Owner" +msgstr "" + +#: wiki/forms.py +msgid "Enter the username of the owner." +msgstr "" + +#: wiki/forms.py +msgid "(none)" +msgstr "" + +#: wiki/forms.py +msgid "Inherit permissions" +msgstr "" + +#: wiki/forms.py +msgid "" +"Check here to apply the above permissions recursively to articles under this" +" one." +msgstr "" + +#: wiki/forms.py +msgid "Permission settings for the article were updated." +msgstr "" + +#: wiki/forms.py +msgid "Your permission settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/forms.py +msgid "No user with that username" +msgstr "" + +#: wiki/forms.py +msgid "Article locked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Article unlocked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Filter..." +msgstr "" + +#: wiki/core/plugins/base.py +msgid "Settings for plugin" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +#: wiki/plugins/attachments/models.py +msgid "current revision" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The revision being displayed for this article. If you need to do a roll-" +"back, simply change the value of this field." +msgstr "" + +#: wiki/models/article.py +msgid "modified" +msgstr "" + +#: wiki/models/article.py +msgid "Article properties last modified" +msgstr "" + +#: wiki/models/article.py +msgid "owner" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The owner of the article, usually the creator. The owner always has both " +"read and write access." +msgstr "" + +#: wiki/models/article.py +msgid "group" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Like in a UNIX file system, permissions can be given to a user according to " +"group membership. Groups are handled through the Django auth system." +msgstr "" + +#: wiki/models/article.py +msgid "group read access" +msgstr "" + +#: wiki/models/article.py +msgid "group write access" +msgstr "" + +#: wiki/models/article.py +msgid "others read access" +msgstr "" + +#: wiki/models/article.py +msgid "others write access" +msgstr "" + +#: wiki/models/article.py +msgid "Article without content (%(id)d)" +msgstr "" + +#: wiki/models/article.py +msgid "content type" +msgstr "" + +#: wiki/models/article.py +msgid "object ID" +msgstr "" + +#: wiki/models/article.py +msgid "Article for object" +msgstr "" + +#: wiki/models/article.py +msgid "Articles for object" +msgstr "" + +#: wiki/models/article.py +msgid "revision number" +msgstr "" + +#: wiki/models/article.py +msgid "IP address" +msgstr "" + +#: wiki/models/article.py +msgid "user" +msgstr "" + +#: wiki/models/article.py +msgid "locked" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +msgid "article" +msgstr "" + +#: wiki/models/article.py +msgid "article contents" +msgstr "" + +#: wiki/models/article.py +msgid "article title" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Each revision contains a title field that must be filled out, even if the " +"title has not changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "original article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "Permissions are inherited from this article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "A plugin was changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "" +"The revision being displayed for this plugin.If you need to do a roll-back, " +"simply change the value of this field." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Cache lookup value for articles" +msgstr "" + +#: wiki/models/urlpath.py +msgid "slug" +msgstr "" + +#: wiki/models/urlpath.py +msgid "(root)" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL path" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL paths" +msgstr "" + +#: wiki/models/urlpath.py +msgid "Sorry but you cannot have a root article with a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "A non-root note must always have a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "There is already a root node on %s" +msgstr "" + +#: wiki/models/urlpath.py +msgid "" +"Articles who lost their parents\n" +"===============================\n" +"\n" +"The children of this article have had their parents deleted. You should probably find a new home for them." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Lost and found" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "A short summary of what the file contains" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "Yes I am sure..." +msgstr "" + +#: wiki/plugins/attachments/markdown_extensions.py +msgid "Click to download file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "" +"The revision of this attachment currently in use (on all articles using the " +"attachment)" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "original filename" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachments" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revision" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revisions" +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s was successfully added." +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "Your file could not be saved: %s" +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "" +"Your file could not be saved, probably because of a permission error on the " +"web server." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s uploaded and replaces old attachment." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your new file will automatically be renamed to match the file already " +"present. Files with different extensions are not allowed." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Current revision changed for %s." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "The file %s was deleted." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "This article is no longer related to the file %s." +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was changed: %s" +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was deleted: %s" +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "" +"New image %s was successfully uploaded. You can use it by selecting it from " +"the list of available images." +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "Are you sure?" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "images" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image: %s" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Current revision not set!!" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revision" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revisions" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image Revsion: %d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been restored" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been marked as deleted" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been changed to revision #%(revision)d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been saved." +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "Images" +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "An image was added: %s" +msgstr "" + +#: wiki/plugins/links/wiki_plugin.py +msgid "Links" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Notifications" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "When this article is edited" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Also receive emails about article edits" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were updated." +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "%(user)s subscribing to %(article)s (%(type)s)" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article deleted: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article modified: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "New article created: %s" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now sign up... and now you can sign in!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are no longer logged in. Bye bye!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now logged in! Have fun!" +msgstr "" + +#: wiki/views/article.py +msgid "New article '%s' created." +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article: %s" +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article cannot be deleted because it has children or is a root article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article together with all its contents are now completely gone! Thanks!" +msgstr "" + +#: wiki/views/article.py +msgid "" +"The article \"%s\" is now marked as deleted! Thanks for keeping the site " +"free from unwanted material!" +msgstr "" + +#: wiki/views/article.py +msgid "Your changes were saved." +msgstr "" + +#: wiki/views/article.py +msgid "A new revision of the article was succesfully added." +msgstr "" + +#: wiki/views/article.py +msgid "Restoring article" +msgstr "" + +#: wiki/views/article.py +msgid "The article \"%s\" and its children are now restored." +msgstr "" + +#: wiki/views/article.py +msgid "The article %s is now set to display revision #%d" +msgstr "" + +#: wiki/views/article.py +msgid "New title" +msgstr "" + +#: wiki/views/article.py +msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" +msgstr "" + +#: wiki/views/article.py +msgid "" +"A new revision was created: Merge between Revision #%(r1)d and Revision " +"#%(r2)d" +msgstr "" diff --git a/conf/locale/ro/LC_MESSAGES/djangojs.mo b/conf/locale/ro/LC_MESSAGES/djangojs.mo new file mode 100644 index 0000000000..0c5ee71fe3 Binary files /dev/null and b/conf/locale/ro/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ro/LC_MESSAGES/djangojs.po b/conf/locale/ro/LC_MESSAGES/djangojs.po new file mode 100644 index 0000000000..2b8bd66e7f --- /dev/null +++ b/conf/locale/ro/LC_MESSAGES/djangojs.po @@ -0,0 +1,1728 @@ +# #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Romanian (http://www.transifex.com/projects/p/edx-platform/language/ro/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-01-21 20:18+0000\n" +"Last-Translator: \n" +"Language-Team: Romanian (http://www.transifex.com/projects/p/edx-platform/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#: cms/static/coffee/src/views/tabs.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js +#: common/static/coffee/src/discussion/utils.js +msgid "OK" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/asset.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Cancel" +msgstr "" + +#: cms/static/js/base.js lms/static/js/verify_student/photocapture.js +msgid "This link will open in a new browser window/tab" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Show Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Hide Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Expand Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Collapse Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Commentary" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Reply to Annotation" +msgstr "" + +#. Translators: %(earned)s is the number of points earned. %(total)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(earned)s/%(possible)s point)" +msgid_plural "(%(earned)s/%(possible)s points)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10). There will always be at least 1 point possible.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(num_points)s point possible)" +msgid_plural "(%(num_points)s points possible)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer:" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Hide Answer" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Show Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Reveal Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer hidden" +msgstr "" + +#. Translators: the word unanswered here is about answering a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "unanswered" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Status: unsubmitted" +msgstr "" + +#. Translators: A "rating" is a score a student gives to indicate how well +#. they feel they were graded on this problem +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "You need to pick a rating before you can submit." +msgstr "" + +#. Translators: this message appears when transitioning between openended +#. grading +#. types (i.e. self assesment to peer assessment). Sometimes, if a student +#. did not perform well at one step, they cannot move on to the next one. +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Your score did not meet the criteria to move to the next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Submit" +msgstr "" + +#. Translators: one clicks this button after one has finished filling out the +#. grading +#. form for an openended assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: this button is clicked to submit a student's rating of +#. an evaluator's assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit post-assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Answer saved, but not yet submitted." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Please confirm that you wish to submit your work. You will not be able to " +"make any changes after submitting." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"You are trying to upload a file that is too large for our system. Please " +"choose a file under 2MB or paste a link to it into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Are you sure you want to remove your previous response to this question?" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Moved to next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"File uploads are required for this question, but are not supported in your " +"browser. Try the newest version of Google Chrome. Alternatively, if you have" +" uploaded the image to another website, you can paste a link to it into the " +"answer box." +msgstr "" + +#. Translators: "Show Question" is some text that, when clicked, shows a +#. question's +#. content that had been hidden +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Show Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Hide Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/sequence/display.js +msgid "" +"Sequence error! Cannot navigate to tab %(tab_name)s in the current " +"SequenceModule. Please contact the course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Video slider" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Pause" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Play" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Fill browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Exit full browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD on" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD off" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video ended" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s hour" +msgid_plural "%(value)s hours" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s minute" +msgid_plural "%(value)s minutes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s second" +msgid_plural "%(value)s seconds" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Volume" +msgstr "" + +#. Translators: Volume level equals 0%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Muted" +msgstr "" + +#. Translators: Volume level in range (0,20]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very low" +msgstr "" + +#. Translators: Volume level in range (20,40]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Low" +msgstr "" + +#. Translators: Volume level in range (40,60]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Average" +msgstr "" + +#. Translators: Volume level in range (60,80]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Loud" +msgstr "" + +#. Translators: Volume level in range (80,100)% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very loud" +msgstr "" + +#. Translators: Volume level equals 100%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Maximum" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Caption will be displayed when " +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on captions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn off captions" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Hide Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Show Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Sorry" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "We had some trouble loading the discussion. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "" +"We had some trouble loading the threads you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "Loading content" +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "" +"We had some trouble processing your request. Please ensure you have copied " +"any unsaved work and then reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "We had some trouble processing your request. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +msgid "…" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Close" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Open" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "remove vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Load more" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading more threads" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "We had some trouble loading more threads. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "%(unread_count)s new comment" +msgid_plural "%(unread_count)s new comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading thread list" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to remove report" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported%(start_sr_span)s, click to remove report%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Report Misuse" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned%(start_sr_span)s, click to unpin%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to unpin" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pin Thread" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading responses. Please reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading more responses. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "%(numResponses)s response" +msgid_plural "%(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing first response" +msgid_plural "Showing first %(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load next %(numResponses)s responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Are you sure you want to delete this post?" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +msgid "anonymous" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "staff" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Community TA" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported, click to remove report" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Are you sure you want to delete this comment?" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "We had some trouble deleting this comment. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/thread_response_view.js +msgid "Are you sure you want to delete this response?" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s ago" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s from now" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "less than a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about an hour" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about %d hour" +msgid_plural "about %d hours" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "a day" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a month" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a year" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Available %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of available %s. You may choose some by selecting them in " +"the box below and then clicking the \"Choose\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Type into this box to filter down the list of available %s." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Filter" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to choose all %s at once." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Chosen %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of chosen %s. You may remove some by selecting them in the " +"box below and then clicking the \"Remove\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to remove all chosen %s at once." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "%(sel)s of %(cnt)s selected" +msgid_plural "%(sel)s of %(cnt)s selected" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have unsaved changes on individual editable fields. If you run an " +"action, your unsaved changes will be lost." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, but you haven't saved your changes to " +"individual fields yet. Please click OK to save. You'll need to re-run the " +"action." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, and you haven't made any changes on individual " +"fields. You're probably looking for the Go button rather than the Save " +"button." +msgstr "" + +#. Translators: the names of months, keep the pipe (|) separators. +#: lms/static/admin/js/calendar.js lms/static/admin/js/dateparse.js +msgid "" +"January|February|March|April|May|June|July|August|September|October|November|December" +msgstr "" + +#. Translators: abbreviations for days of the week, keep the pipe (|) +#. separators. +#: lms/static/admin/js/calendar.js +msgid "S|M|T|W|T|F|S" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.js.c +#: lms/static/admin/js/collapse.min.js +msgid "Show" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.min.js +msgid "Hide" +msgstr "" + +#. Translators: the names of days, keep the pipe (|) separators. +#: lms/static/admin/js/dateparse.js +msgid "Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Now" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Clock" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Choose a time" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Midnight" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "6 a.m." +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Noon" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Today" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Calendar" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Yesterday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Tomorrow" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Open Calculator" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Close Calculator" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Preview" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Post body" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching distribution." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Unavailable metric display." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching grade distributions." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Last Updated: <%= timestamp %>" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "<%= num_students %> students scored." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Loading..." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error getting student list." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error retrieving grading configuration." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error generating grades. Please try again." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "File Name" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "" +"Links are generated on demand and expire within 5 minutes due to the " +"sensitive nature of student information." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Username" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Revoke access" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Enter username or email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Please enter a username or email." +msgstr "" + +#. Translators: A rolename appears this sentence.; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error fetching list for role" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +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 "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully removed as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not removed as beta testers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Users must create and activate their account before they can be promoted to " +"beta tester." +msgstr "" + +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Could not find users associated with the following identifiers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error enrolling/unenrolling users." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following email addresses and/or usernames are invalid:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled and sent email to the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Emails successfully sent. The following users are no longer enrolled in the " +"course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following users are no longer enrolled in the course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"These users were not affiliated with the course so could not be unenrolled:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message must have a subject." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message cannot be blank." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to yourself. Is this " +"OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to everyone who is " +"staff or instructor on this course. Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to ALL (everyone who " +"is enrolled in this course as student, staff, or instructor). Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Error sending email." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There is no email history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There was an error obtaining email task history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a student email address or username." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting student progress url for '<%= student_id %>'. Check that the " +"student identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a problem urlname." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Success! Problem attempts reset for problem '<%= problem_id %>' and student " +"'<%= student_id %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error resetting problem attempts for problem '<%= problem_id %>' and student" +" '<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Delete student '<%= student_id %>'s state on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id" +" %>'. Check that the problem and student identifiers are spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Module state successfully deleted." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Started rescore problem task for problem '<%= problem_id %>' and student " +"'<%= student_id %>'. Click the 'Show Background Task History for Student' " +"button to see the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>' for student " +"'<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting task history for problem '<%= problem_id %>' and student '<%= " +"student_id %>'. Check that the problem and student identifiers are spelled " +"correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Reset attempts for all students on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to reset attempts for problem '<%= problem_id %>'." +" Click the 'Show Background Task History for Problem' button to see the " +"status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to reset attempts for all students on problem '<%= " +"problem_id %>'. Check that the problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Rescore problem '<%= problem_id %>' for all students?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to rescore problem '<%= problem_id %>' for all " +"students. Click the 'Show Background Task History for Problem' button to see" +" the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>'. Check that the" +" problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Error listing task history for this student and problem." +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Type" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task inputs" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task ID" +msgstr "" + +#. Translators: a "Requester" is a username that requested a task such as +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Requester" +msgstr "" + +#. Translators: A timestamp of when a task (eg, sending email) was submitted +#. appears after this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Submitted" +msgstr "" + +#. Translators: The length of a task (eg, sending email) in seconds appears +#. this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Duration (sec)" +msgstr "" + +#. Translators: The state (eg, "In progress") of a task (eg, sending email) +#. appears after this. +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "State" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Status" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Grades saved. Fetching the next submission to grade." +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Problem Name" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Graded" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Available to Grade" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Required" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Back to problem list" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Try loading again" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> available " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> graded " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> more needed to start ML" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Re-check for submissions" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state: <%= state %>" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state for submission: " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Hide)" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Show)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Image (upload file or type url)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Markdown Editing Help" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bold (Ctrl+B)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Italic (Ctrl+I)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Hyperlink (Ctrl+L)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote (Ctrl+Q)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Code Sample (Ctrl+K)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Image (Ctrl+G)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Numbered List (Ctrl+O)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bulleted List (Ctrl+U)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading (Ctrl+H)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Horizontal Rule (Ctrl+R)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Undo (Ctrl+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Y)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Shift+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "strong text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "emphasized text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter image description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter link description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote" +msgstr "" + +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +msgid "enter code here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "List item" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading" +msgstr "" + +#: lms/templates/class_dashboard/all_section_metrics.js +#: lms/templates/class_dashboard/all_section_metrics.js +msgid "Unable to retrieve data, please try again later." +msgstr "" + +#: lms/templates/class_dashboard/d3_stacked_bar_graph.js +msgid "Number of Students" +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "" +"This may be happening because of an error with our server or your internet " +"connection. Try refreshing the page or making sure you are online." +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "Studio's having trouble saving your work" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/xblock/cms.runtime.v1.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js +#: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js +#: cms/static/js/views/xblock_editor.js +msgid "Saving…" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "Delete Component Confirmation" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "" +"Are you sure you want to delete this component? This action cannot be " +"undone." +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js +msgid "Deleting…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js +msgid "Adding…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Duplicating…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Delete this component?" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Deleting this component is permanent and cannot be undone." +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Yes, delete this component" +msgstr "" + +#: cms/static/js/base.js +msgid "This link will open in a modal window" +msgstr "" + +#: cms/static/js/base.js +msgid "Delete this " +msgstr "" + +#: cms/static/js/base.js +msgid "Deleting this " +msgstr "" + +#: cms/static/js/base.js +msgid "Yes, delete this " +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces or special characters in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "" +"The combined length of the organization, course number, and course run " +"fields cannot be more than 65 characters." +msgstr "" + +#: cms/static/js/index.js +msgid "Required field." +msgstr "" + +#: cms/static/js/sock.js +msgid "Hide Studio Help" +msgstr "" + +#: cms/static/js/sock.js +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/static/js/models/course.js cms/static/js/models/section.js +msgid "You must specify a name" +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "" +"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " +"<%= fileExtensions %> to upload." +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "or" +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course must have an assigned start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course end date cannot be before the course start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course start date cannot be before the enrollment start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment start date cannot be after the enrollment end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment end date cannot be after the course end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "Key should only contain letters, numbers, _, or -" +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "There's already another assignment type with this name." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer between 0 and 100." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer greater than 0." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter non-negative integer." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Cannot drop more <% attrs.types %> than will assigned." +msgstr "" + +#: cms/static/js/models/settings/course_grading_policy.js +msgid "Grace period must be specified in HH:MM format." +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Delete File Confirmation" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "" +"Are you sure you wish to delete this item. It cannot be reversed!\n" +"\n" +"Also any content that links/refers to this item will no longer work (e.g. broken images and/or links)" +msgstr "" + +#: cms/static/js/views/asset.js cms/static/js/views/show_textbook.js +msgid "Delete" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Your file has been deleted." +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Name" +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Date Added" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "Are you sure you want to delete this update?" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "This action cannot be undone." +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Upload a new PDF to “<%= name %>”" +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + +#: cms/static/js/views/edit_textbook.js +#: cms/static/js/views/overview_assignment_grader.js +msgid "Saving" +msgstr "" + +#: cms/static/js/views/import.js +msgid "There was an error with the upload" +msgstr "" + +#: cms/static/js/views/import.js +msgid "" +"File format not supported. Please upload a file with a tar.gz " +"extension." +msgstr "" + +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Collapse All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Expand All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Release date:" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "{month}/{day}/{year} at {hour}:{minute} UTC" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Edit section release date" +msgstr "" + +#: cms/static/js/views/overview_assignment_grader.js +msgid "Not Graded" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "ascending" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "descending" +msgstr "" + +#: cms/static/js/views/paging_header.js +msgid "" +"Showing %(current_span)s%(start)s-%(end)s%(end_span)s out of " +"%(total_span)s%(total)s total%(end_span)s, sorted by " +"%(order_span)s%(sort_order)s%(end_span)s %(sort_direction)s" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Your change could not be saved" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Return and resolve this issue" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Delete “<%= name %>”?" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "" +"Deleting a textbook cannot be undone and once deleted any reference to it in" +" your courseware's navigation will also be removed." +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Deleting" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "We're sorry, there was an error" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes will not take effect until you save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes, but there are some errors" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "" +"Please address the errors on this page first, and then save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Save Changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes have been saved." +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Your changes will not take effect until you save your progress. Take care " +"with key and value formatting, as validation is not implemented." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Please note that validation of your policy key and value pairs is not " +"currently in place yet. If you are having difficulties, please review your " +"policy pairs." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Upload your course image." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Files must be in JPEG or PNG format." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/ru/LC_MESSAGES/django.mo b/conf/locale/ru/LC_MESSAGES/django.mo index 8947cb8367..bccffd41f6 100644 Binary files a/conf/locale/ru/LC_MESSAGES/django.mo and b/conf/locale/ru/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ru/LC_MESSAGES/django.po b/conf/locale/ru/LC_MESSAGES/django.po index 11024cd75d..726bb44a3d 100644 --- a/conf/locale/ru/LC_MESSAGES/django.po +++ b/conf/locale/ru/LC_MESSAGES/django.po @@ -4,17 +4,27 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# AndyZ , 2014 +# AndyZ , 2014 # asandler , 2013 # berseneva, 2013 # Tenrius , 2013 # ejikjane , 2013 +# eudj1n , 2014 # ejikjane , 2013 # Katerina Arinarkina , 2014 +# omaksimenkova , 2014 +# Man2Life , 2013 +# mchalyk , 2014 +# Nichik , 2013 +# Katerina Arinarkina , 2014 +# serge_ru, 2014 # berseneva, 2013 # Tenrius , 2013 # viktoria , 2013 # viktoria , 2013 # Weyedide , 2014 +# Weyedide , 2014 # asandler , 2013 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# # edX translation file. @@ -35,21 +45,31 @@ # # Translators: # AndyZ , 2014 +# AndyZ , 2014 # asandler , 2013 # berseneva, 2013 # Tenrius , 2013 +# eudj1n , 2014 # Gfirey , 2013 # Gfirey , 2013 +# Katerina Arinarkina , 2014 +# KhJulia , 2014 # Man2Life , 2013 +# mchalyk , 2014 # Nichik , 2013 # Man2Life , 2013 # Katerina Arinarkina , 2014 # serge_ru, 2014 +# serge_ru, 2014 +# serge_ru, 2014 # berseneva, 2013 # Tenrius , 2013 +# Toskira , 2014 # W01fdalE , 2014 # viktoria , 2013 # viktoria , 2013 +# W01fdalE , 2014 +# Weyedide , 2014 # Weyedide , 2014 # asandler , 2013 # Nichik , 2013 @@ -60,14 +80,18 @@ # # Translators: # AndyZ , 2014 +# AndyZ , 2014 # asandler , 2013 # berseneva, 2013 +# eudj1n , 2014 # Gfirey , 2013 # Man2Life , 2013 # Nichik , 2013 # Tenrius , 2013 +# Toskira , 2014 # viktoria , 2013 # Weyedide , 2014 +# Weyedide , 2014 # #-#-#-#-# messages.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2013 edX @@ -89,7 +113,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-03-30 13:33+0000\n" "Last-Translator: W01fdalE \n" "Language-Team: Russian (http://www.transifex.com/projects/p/edx-platform/language/ru/)\n" @@ -209,10 +233,9 @@ msgstr "" msgid "Course id is invalid" msgstr "" -#: common/djangoapps/student/views.py #: lms/templates/courseware/course_about.html msgid "Course is full" -msgstr "" +msgstr "Набор на курс закончен" #: common/djangoapps/student/views.py msgid "You are not enrolled in this course" @@ -222,6 +245,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -232,6 +265,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -358,7 +398,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -370,6 +410,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -818,7 +874,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -839,6 +895,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -851,6 +911,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -945,6 +1027,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -977,11 +1063,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -1031,6 +1135,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1315,10 +1431,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1331,11 +1461,9 @@ msgstr "" msgid "Index" msgstr "" -#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html -#: lms/templates/wiki/plugins/attachments/index.html #: lms/templates/discussion/_thread_list_template.html msgid "Search" -msgstr "" +msgstr "Поиск" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/static_templates/copyright.html @@ -1528,11 +1656,9 @@ msgstr "" msgid "Courses loaded in the modulestore" msgstr "" -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/djangoapps/dashboard/tests/test_sysadmin.py #: lms/templates/tracking_log.html msgid "username" -msgstr "" +msgstr "username" #: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py #: lms/djangoapps/dashboard/tests/test_sysadmin.py @@ -1746,13 +1872,17 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" -#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" -msgstr "" +msgstr "Имя" #: lms/djangoapps/instructor/views/api.py #: lms/djangoapps/instructor/views/instructor_dashboard.py @@ -1774,15 +1904,13 @@ msgstr "" msgid "Birth Year" msgstr "" -#: lms/djangoapps/instructor/views/api.py lms/templates/register.html -#: lms/templates/signup_modal.html +#: lms/templates/register.html lms/templates/signup_modal.html msgid "Gender" -msgstr "" +msgstr "Пол" -#: lms/djangoapps/instructor/views/api.py #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "Level of Education" -msgstr "" +msgstr "Уровень образования" #: lms/djangoapps/instructor/views/api.py lms/templates/register.html msgid "Mailing Address" @@ -1792,6 +1920,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -1834,10 +1971,9 @@ msgstr "" msgid "Extensions" msgstr "" -#: lms/djangoapps/instructor/views/instructor_dashboard.py #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Data Download" -msgstr "" +msgstr "Скачивание данных" #: lms/djangoapps/instructor/views/instructor_dashboard.py #: lms/templates/courseware/instructor_dashboard.html @@ -2075,15 +2211,14 @@ msgstr "" msgid "ID" msgstr "" -#: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/tools.py cms/templates/register.html -#: lms/templates/dashboard.html lms/templates/register-shib.html -#: lms/templates/register.html lms/templates/register.html +#: cms/templates/register.html lms/templates/dashboard.html +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" -msgstr "" +msgstr "Полное имя" #: lms/djangoapps/instructor/views/legacy.py msgid "edX email" @@ -2306,37 +2441,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2436,6 +2540,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -2501,9 +2609,9 @@ msgstr "" msgid "Status" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/list.html msgid "Quantity" -msgstr "" +msgstr "Количество" #: lms/djangoapps/shoppingcart/reports.py msgid "Unit Cost" @@ -2513,18 +2621,17 @@ msgstr "" msgid "Total Cost" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/list.html #: lms/templates/shoppingcart/receipt.html msgid "Currency" -msgstr "" +msgstr "Валюта" -#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/list.html #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/verified_cert_receipt.html #: lms/templates/shoppingcart/verified_cert_receipt.html -#: wiki/plugins/attachments/forms.py msgid "Description" -msgstr "" +msgstr "Описание" #: lms/djangoapps/shoppingcart/reports.py msgid "Comments" @@ -2535,12 +2642,10 @@ msgstr "" msgid "University" msgstr "" -#: lms/djangoapps/shoppingcart/reports.py -#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html -#: cms/templates/widgets/header.html +#: cms/templates/widgets/header.html cms/templates/widgets/header.html #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Course" -msgstr "" +msgstr "Курс" #: lms/djangoapps/shoppingcart/reports.py msgid "Course Announce Date" @@ -3058,11 +3163,10 @@ msgstr "" msgid "Password Reset Help" msgstr "" -#: lms/templates/registration/password_reset_confirm.html #: cms/templates/login.html lms/templates/login-sidebar.html #: lms/templates/register-sidebar.html msgid "Need Help?" -msgstr "" +msgstr "Нужна помощь?" #: lms/templates/registration/password_reset_confirm.html msgid "" @@ -3125,14 +3229,13 @@ msgstr "" msgid "Delete article" msgstr "" -#: lms/templates/wiki/delete.html -#: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache msgid "Delete" -msgstr "" +msgstr "Удалить" #: lms/templates/wiki/delete.html msgid "You cannot delete a root article." @@ -3162,8 +3265,7 @@ msgstr "" msgid "You are deleting an article. Please confirm." msgstr "" -#: lms/templates/wiki/edit.html cms/templates/component.html -#: cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html @@ -3171,7 +3273,7 @@ msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache #: lms/templates/wiki/includes/article_menu.html msgid "Edit" -msgstr "" +msgstr "Редактировать" #: lms/templates/wiki/edit.html lms/templates/wiki/edit.html.py msgid "Save changes" @@ -3181,11 +3283,8 @@ msgstr "" msgid "Preview" msgstr "" -#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# #. Translators: this is a control to allow users to exit out of this modal #. interface (a menu or piece of UI that takes the full focus of the screen) -#: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard.html lms/templates/forgot_password_modal.html @@ -3194,10 +3293,11 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" -msgstr "" +msgstr "Закрыть" #: lms/templates/wiki/edit.html msgid "Wiki Preview" @@ -3724,46 +3824,22 @@ msgstr "" #: cms/templates/404.html cms/templates/error.html #: lms/templates/static_templates/404.html msgid "Page Not Found" -msgstr "" +msgstr "Страница не найдена" #: cms/templates/404.html lms/templates/static_templates/404.html msgid "Page not found" -msgstr "" +msgstr "Страница не найдена" #: cms/templates/asset_index.html lms/templates/courseware/courseware.html #: lms/templates/verify_student/_modal_editname.html msgid "close" -msgstr "" +msgstr "закрыть" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3774,22 +3850,35 @@ msgstr "" #: cms/templates/html_error.html lms/templates/module-error.html msgid "Error:" -msgstr "" +msgstr "Ошибка:" #: cms/templates/index.html cms/templates/settings.html #: lms/templates/courseware/course_about.html msgid "Course Number" -msgstr "" +msgstr "Номер курса" + +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "Отмена" #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" -msgstr "" +msgstr "Организация:" #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" -msgstr "" +msgstr "Номер курса:" #: cms/templates/index.html #: lms/templates/dashboard/_dashboard_status_verification.html @@ -3800,28 +3889,46 @@ msgstr "" #: cms/templates/login.html lms/templates/login.html #: lms/templates/university_profile/edge.html msgid "Forgot password?" -msgstr "" +msgstr "Забыли пароль?" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" -msgstr "" +msgstr "Пароль" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "Настройки" #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" -msgstr "" +msgstr "Администратор" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "Сохранить" #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" -msgstr "" +msgstr "Зарегистрироваться" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3833,7 +3940,7 @@ msgstr "" #: cms/templates/registration/activation_complete.html #: lms/templates/registration/activation_complete.html msgid "Thanks for activating your account." -msgstr "" +msgstr "Спасибо за активацию учётной записи." #: cms/templates/registration/activation_complete.html #: lms/templates/registration/activation_complete.html @@ -3854,21 +3961,13 @@ msgstr "" #: lms/templates/static_templates/privacy.html #: lms/templates/static_templates/privacy.html msgid "Privacy Policy" -msgstr "" +msgstr "Политика конфиденциальности" #: cms/templates/widgets/header.html lms/templates/help_modal.html #: lms/templates/navigation.html lms/templates/static_templates/help.html -#: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py +#: lms/templates/static_templates/help.html 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 "" +msgstr "Помощь" #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration for {} | Choose Your Track" @@ -3905,7 +4004,7 @@ msgstr "" #: common/templates/course_modes/choose.html #: lms/templates/verify_student/photo_verification.html msgid "):" -msgstr "" +msgstr "):" #: common/templates/course_modes/choose.html msgid "Why do I have to pay? What if I don't meet all the requirements?" @@ -3954,7 +4053,7 @@ msgstr "" #: common/templates/course_modes/choose.html msgid "Explain your situation: " -msgstr "" +msgstr "Объясните Вашу ситуацию:" #: common/templates/course_modes/choose.html msgid "" @@ -3999,7 +4098,7 @@ msgstr "" #: common/templates/course_modes/choose.html msgid "or" -msgstr "" +msgstr "или" #: common/templates/course_modes/choose.html msgid "Audit This Course" @@ -4025,7 +4124,7 @@ msgstr "" #: lms/templates/open_ended_problems/open_ended_problems.html #: lms/templates/peer_grading/peer_grading.html msgid "Instructions" -msgstr "" +msgstr "Инструкции" #: lms/templates/annotatable.html lms/templates/textannotation.html #: lms/templates/videoannotation.html @@ -4077,12 +4176,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4093,12 +4191,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4139,11 +4236,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4158,7 +4291,7 @@ msgstr "" #: lms/templates/dashboard.html msgid "Find courses now!" -msgstr "" +msgstr "Найти курсы прямо сейчас!" #: lms/templates/dashboard.html msgid "Looks like you haven't been enrolled in any courses yet." @@ -4166,7 +4299,7 @@ msgstr "" #: lms/templates/dashboard.html msgid "Course-loading errors" -msgstr "" +msgstr "Ошибки при загрузке курса" #: lms/templates/dashboard.html msgid "Email Settings for {course_number}" @@ -4178,7 +4311,7 @@ msgstr "" #: lms/templates/dashboard.html msgid "Save Settings" -msgstr "" +msgstr "Сохранить настройки" #: lms/templates/dashboard.html msgid "Password Reset Email Sent" @@ -4233,7 +4366,7 @@ msgstr "" #: lms/templates/dashboard.html #: lms/templates/verify_student/_modal_editname.html msgid "Reason for name change:" -msgstr "" +msgstr "Причина смены имени:" #: lms/templates/dashboard.html msgid "Change My Name" @@ -4250,6 +4383,10 @@ msgstr "" #: lms/templates/dashboard/_dashboard_course_listing.html #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Unregister" +msgstr "Отменить регистрацию" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" msgstr "" #: lms/templates/email_change_failed.html lms/templates/email_exists.html @@ -4263,12 +4400,12 @@ msgstr "" #: lms/templates/email_change_failed.html lms/templates/email_exists.html #: lms/templates/invalid_email_key.html msgid "Go back to the {link_start}home page{link_end}." -msgstr "" +msgstr "Вернуться на {link_start}домашнюю страницу{link_end}." #: lms/templates/email_change_successful.html #: lms/templates/emails_change_successful.html msgid "E-mail change successful!" -msgstr "" +msgstr "Смена электронного адреса прошла успешно!" #: lms/templates/email_change_successful.html #: lms/templates/emails_change_successful.html @@ -4285,11 +4422,11 @@ msgstr "" #: lms/templates/enroll_students.html msgid "Course: " -msgstr "" +msgstr "Курс:" #: lms/templates/enroll_students.html msgid "Add new students" -msgstr "" +msgstr "Добавить новых студентов" #: lms/templates/enroll_students.html msgid "Existing students:" @@ -4301,31 +4438,19 @@ msgstr "" #: lms/templates/enroll_students.html msgid "Students rejected: " -msgstr "" +msgstr "Студенты, получившие отказ:" #: lms/templates/enroll_students.html msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" #: lms/templates/folditbasic.html msgid "Due:" -msgstr "" +msgstr "Срок:" #: lms/templates/folditbasic.html msgid "Status:" @@ -4333,7 +4458,7 @@ msgstr "" #: lms/templates/folditbasic.html msgid "You have successfully gotten to level {goal_level}." -msgstr "" +msgstr "Вы успешно достигли уровня {goal_level}." #: lms/templates/folditbasic.html msgid "You have not yet gotten to level {goal_level}." @@ -4345,7 +4470,7 @@ msgstr "" #: lms/templates/folditbasic.html msgid "Level" -msgstr "" +msgstr "Уровень" #: lms/templates/folditbasic.html #: lms/templates/courseware/instructor_dashboard.html @@ -4358,7 +4483,7 @@ msgstr "" #: lms/templates/folditchallenge.html msgid "User" -msgstr "" +msgstr "Пользователь" #: lms/templates/folditchallenge.html msgid "Score" @@ -4366,12 +4491,12 @@ msgstr "" #: lms/templates/footer.html msgid "About" -msgstr "" +msgstr "О нас" #: lms/templates/footer.html lms/templates/static_templates/jobs.html #: lms/templates/static_templates/jobs.html msgid "Jobs" -msgstr "" +msgstr "Вакансии" #: lms/templates/footer.html lms/templates/static_templates/faq.html #: lms/templates/static_templates/faq.html @@ -4424,15 +4549,11 @@ msgstr "" #: lms/templates/forgot_password_modal.html msgid "Email is incorrect." -msgstr "" +msgstr "Адрес электронной почты введён неверно." -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" -msgstr "" - -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" +msgstr "Помощь {platform_name}" #: lms/templates/help_modal.html msgid "" @@ -4456,15 +4577,15 @@ msgstr "" #: lms/templates/help_modal.html msgid "Report a problem" -msgstr "" +msgstr "Сообщить о проблеме" #: lms/templates/help_modal.html msgid "Make a suggestion" -msgstr "" +msgstr "Внести предложение" #: lms/templates/help_modal.html msgid "Ask a question" -msgstr "" +msgstr "Задать вопрос" #: lms/templates/help_modal.html msgid "" @@ -4476,7 +4597,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4486,11 +4608,12 @@ msgstr "" #: lms/templates/help_modal.html msgid "Tell us the details" -msgstr "" +msgstr "Сообщите нам детали " #: lms/templates/help_modal.html msgid "Include error messages, steps which lead to the issue, etc" msgstr "" +"Упомяните сообщения об ошибках, шаги, которые привели к этой проблеме и т.д." #: lms/templates/help_modal.html lms/templates/manage_user_standing.html #: lms/templates/register-shib.html @@ -4504,11 +4627,11 @@ msgstr "" #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html msgid "Submit" -msgstr "" +msgstr "Отправить" #: lms/templates/help_modal.html msgid "Thank You!" -msgstr "" +msgstr "Спасибо!" #: lms/templates/help_modal.html msgid "" @@ -4520,15 +4643,15 @@ msgstr "" #: lms/templates/help_modal.html msgid "problem" -msgstr "" +msgstr "проблема" #: lms/templates/help_modal.html msgid "Report a Problem" -msgstr "" +msgstr "Сообщить о Проблеме" #: lms/templates/help_modal.html msgid "Brief description of the problem" -msgstr "" +msgstr "Краткое описание проблемы" #: lms/templates/help_modal.html msgid "Details of the problem you are encountering" @@ -4537,10 +4660,12 @@ msgstr "" #: lms/templates/help_modal.html msgid "Include error messages, steps which lead to the issue, etc." msgstr "" +"Включите текст сообщения об ошибке, действия, которые привели к проблеме и " +"т.д." #: lms/templates/help_modal.html msgid "suggestion" -msgstr "" +msgstr "предложение" #: lms/templates/help_modal.html msgid "Make a Suggestion" @@ -4548,28 +4673,28 @@ msgstr "" #: lms/templates/help_modal.html msgid "Brief description of your suggestion" -msgstr "" +msgstr "Краткое описание Вашего предложения" #: lms/templates/help_modal.html lms/templates/help_modal.html #: lms/templates/module-error.html msgid "Details" -msgstr "" +msgstr "Подробности" #: lms/templates/help_modal.html msgid "question" -msgstr "" +msgstr "вопрос" #: lms/templates/help_modal.html msgid "Ask a Question" -msgstr "" +msgstr "Задать Вопрос" #: lms/templates/help_modal.html msgid "Brief summary of your question" -msgstr "" +msgstr "Краткое содержание Вашего вопроса" #: lms/templates/help_modal.html msgid "An error has occurred." -msgstr "" +msgstr "Произошла ошибка." #: lms/templates/help_modal.html msgid "Please {link_start}send us e-mail{link_end}." @@ -4593,7 +4718,7 @@ msgstr "" #: lms/templates/index.html msgid "Stay up to date with all {platform_name} has to offer!" -msgstr "" +msgstr "Будьте в курсе всего, что может предложить {platform_name}!" #: lms/templates/invalid_email_key.html msgid "Invalid email change key" @@ -4623,7 +4748,7 @@ msgstr "" #: lms/templates/login-sidebar.html lms/templates/login-sidebar.html msgid "Login via OpenID" -msgstr "" +msgstr "Войти с помощью OpenID" #: lms/templates/login-sidebar.html msgid "" @@ -4637,7 +4762,7 @@ msgstr "" #: lms/templates/login-sidebar.html msgid "Sign up for {platform_name} today!" -msgstr "" +msgstr "Зарегистрируйтесь для доступа к {platform_name} уже сегодня!" #: lms/templates/login-sidebar.html msgid "Looking for help in logging in or with your {platform_name} account?" @@ -4665,7 +4790,7 @@ msgstr "" #: lms/templates/login.html msgid "Please log in" -msgstr "" +msgstr "Пожалуйста, войдите в систему" #: lms/templates/login.html msgid "to access your account and courses" @@ -4674,6 +4799,8 @@ msgstr "" #: lms/templates/login.html msgid "We're Sorry, {platform_name} accounts are unavailable currently" msgstr "" +"Приносим извинения, учётные записи {platform_name} в данный момент " +"недоступны" #: lms/templates/login.html msgid "The following errors occurred while logging you in:" @@ -4693,7 +4820,7 @@ msgstr "" #: lms/templates/login.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html msgid "example: username@domain.com" -msgstr "" +msgstr "образец: username@domain.com" #: lms/templates/login.html msgid "Account Preferences" @@ -4701,10 +4828,39 @@ msgstr "" #: lms/templates/login.html msgid "Remember me" +msgstr "Запомнить меня" + +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" +msgstr "Внешний источник" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" msgstr "" #: lms/templates/lti.html @@ -4716,13 +4872,21 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" #: lms/templates/manage_user_standing.html msgid "Username:" -msgstr "" +msgstr "Имя пользователя:" #: lms/templates/manage_user_standing.html msgid "Disable Account" @@ -4738,7 +4902,7 @@ msgstr "" #: lms/templates/manage_user_standing.html msgid "(reload your page to refresh)" -msgstr "" +msgstr "(перезагрузите страницу для обновления)" #: lms/templates/manage_user_standing.html msgid "working..." @@ -4759,33 +4923,33 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html msgid "Raw data:" -msgstr "" +msgstr "Необработанные данные:" #: lms/templates/name_changes.html msgid "Accepted" -msgstr "" +msgstr "Принято" #: lms/templates/name_changes.html lms/templates/name_changes.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Error" -msgstr "" +msgstr "Ошибка" #: lms/templates/name_changes.html msgid "Rejected" -msgstr "" +msgstr "Отказано" #: lms/templates/name_changes.html msgid "Pending name changes" @@ -4793,11 +4957,11 @@ msgstr "" #: lms/templates/name_changes.html lms/templates/modal/accessible_confirm.html msgid "Confirm" -msgstr "" +msgstr "Подтвердить" #: lms/templates/name_changes.html msgid "[Reject]" -msgstr "" +msgstr "[Отказать]" #: lms/templates/navigation.html msgid "Global Navigation" @@ -4817,6 +4981,10 @@ msgstr "" #: lms/templates/navigation.html msgid "Log Out" +msgstr "Выйти" + +#: lms/templates/navigation.html +msgid "Shopping Cart" msgstr "" #: lms/templates/navigation.html @@ -4827,11 +4995,11 @@ msgstr "" #: lms/templates/sysadmin_dashboard_gitlogs.html #: lms/templates/courseware/courses.html msgid "Courses" -msgstr "" +msgstr "Курсы" #: lms/templates/navigation.html msgid "Schools" -msgstr "" +msgstr "Университеты" #: lms/templates/navigation.html lms/templates/navigation.html msgid "Register Now" @@ -4839,7 +5007,7 @@ msgstr "" #: lms/templates/navigation.html lms/templates/navigation.html msgid "Log in" -msgstr "" +msgstr "Войти" #: lms/templates/navigation.html msgid "" @@ -4847,6 +5015,10 @@ msgid "" "recommend using {chrome_link_start}Chrome{chrome_link_end} or " "{ff_link_start}Firefox{ff_link_end}." msgstr "" +"Предупреждение: Ваш браузер поддерживается не полностью. Мы" +" настоятельно рекомендуем использовать " +"{chrome_link_start}Chrome{chrome_link_end} или " +"{ff_link_start}Firefox{ff_link_end}." #: lms/templates/notes.html lms/templates/textannotation.html #: lms/templates/videoannotation.html @@ -4872,17 +5044,18 @@ msgstr "" #: lms/templates/provider_login.html #: lms/templates/university_profile/edge.html msgid "Log In" -msgstr "" +msgstr "Войти" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html msgid "Return To %s" -msgstr "" +msgstr "Вернуться к %s" #: lms/templates/register-shib.html msgid "Preferences for {platform_name}" @@ -4922,7 +5095,7 @@ msgstr "" #: lms/templates/register-shib.html lms/templates/register.html #: lms/templates/register.html msgid "example: JaneDoe" -msgstr "" +msgstr "образец: JaneDoe" #: lms/templates/register-shib.html lms/templates/register.html #: lms/templates/register.html @@ -4934,16 +5107,18 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" #: lms/templates/register-shib.html msgid "Update My Account" -msgstr "" +msgstr "Обновить мою учётную запись" #: lms/templates/register-sidebar.html msgid "Registration Help" @@ -4951,7 +5126,7 @@ msgstr "" #: lms/templates/register-sidebar.html msgid "Already registered?" -msgstr "" +msgstr "Уже зарегистрированы?" #: lms/templates/register-sidebar.html msgid "Click here to log in." @@ -5012,12 +5187,32 @@ msgstr "" #: lms/templates/register.html msgid "Welcome!" -msgstr "" +msgstr "Добро пожаловать!" #: lms/templates/register.html msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5028,7 +5223,7 @@ msgstr "" #: lms/templates/register.html lms/templates/verify_student/face_upload.html msgid "example: Jane Doe" -msgstr "" +msgstr "образец: Jane Doe" #: lms/templates/register.html lms/templates/register.html msgid "Needed for any certificates you may earn" @@ -5052,7 +5247,7 @@ msgstr "" #: lms/templates/register.html msgid "City" -msgstr "" +msgstr "Город" #: lms/templates/register.html msgid "example: New York" @@ -5077,7 +5272,7 @@ msgstr "" #: lms/templates/register.html lms/templates/university_profile/edge.html msgid "Register" -msgstr "" +msgstr "Регистрация" #: lms/templates/register.html lms/templates/signup_modal.html msgid "Create My Account" @@ -5085,7 +5280,7 @@ msgstr "" #: lms/templates/resubscribe.html msgid "Re-subscribe Successful!" -msgstr "" +msgstr "Подписка успешно возобновлена!" #: lms/templates/resubscribe.html msgid "" @@ -5108,33 +5303,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5143,30 +5322,26 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "Полное имя*" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" #: lms/templates/signup_modal.html msgid "Year of birth" -msgstr "" +msgstr "Год рождения" #: lms/templates/signup_modal.html msgid "Mailing address" -msgstr "" +msgstr "Почтовый адрес" #: lms/templates/signup_modal.html msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5195,27 +5370,27 @@ msgstr "" #: lms/templates/staff_problem_info.html msgid "Comment" -msgstr "" +msgstr "Комментарий" #: lms/templates/staff_problem_info.html msgid "comment" -msgstr "" +msgstr "комментарий" #: lms/templates/staff_problem_info.html msgid "Tag" -msgstr "" +msgstr "Тег" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html msgid "tag" -msgstr "" +msgstr "тег" #: lms/templates/staff_problem_info.html msgid "Add comment" -msgstr "" +msgstr "Добавить комментарий" #: lms/templates/staff_problem_info.html msgid "Staff Debug" @@ -5235,7 +5410,7 @@ msgstr "" #: lms/templates/staff_problem_info.html msgid "User:" -msgstr "" +msgstr "Пользователь:" #: lms/templates/staff_problem_info.html msgid "View History" @@ -5244,52 +5419,20 @@ msgstr "" #: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html #: lms/templates/staticbook.html msgid "{course_number} Textbook" -msgstr "" +msgstr "Учебник {course_number}" #: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html #: lms/templates/staticbook.html msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" -msgstr "" +msgstr "Предыдущая страница" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" -msgstr "" +msgstr "Следующая страница" #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html @@ -5299,7 +5442,7 @@ msgstr "" #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Users" -msgstr "" +msgstr "Пользователи" #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html @@ -5318,15 +5461,15 @@ msgstr "" #: lms/templates/sysadmin_dashboard.html msgid "Email or username" -msgstr "" +msgstr "Адрес электронной почты или имя пользователя" #: lms/templates/sysadmin_dashboard.html msgid "Delete user" -msgstr "" +msgstr "Удалить пользователя" #: lms/templates/sysadmin_dashboard.html msgid "Create user" -msgstr "" +msgstr "Создать пользователя" #: lms/templates/sysadmin_dashboard.html msgid "Download list of all users (csv file)" @@ -5368,7 +5511,7 @@ msgstr "" #: lms/templates/sysadmin_dashboard.html msgid "Load new course from github" -msgstr "" +msgstr "Загрузить новый курс с github" #: lms/templates/sysadmin_dashboard.html msgid "Course ID or dir" @@ -5376,7 +5519,7 @@ msgstr "" #: lms/templates/sysadmin_dashboard.html msgid "Delete course from site" -msgstr "" +msgstr "Удалить курс с сайта" #: lms/templates/sysadmin_dashboard.html msgid "Django PID" @@ -5391,16 +5534,16 @@ msgstr "" #: lms/templates/sysadmin_dashboard_gitlogs.html #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Date" -msgstr "" +msgstr "Дата" #: lms/templates/sysadmin_dashboard_gitlogs.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Course ID" -msgstr "" +msgstr "Идентификатор курса" #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Action" -msgstr "" +msgstr "Операция Git" #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for" @@ -5420,19 +5563,19 @@ msgstr "" #: lms/templates/tracking_log.html msgid "datetime" -msgstr "" +msgstr "datetime" #: lms/templates/tracking_log.html msgid "ipaddr" -msgstr "" +msgstr "ipaddr" #: lms/templates/tracking_log.html msgid "source" -msgstr "" +msgstr "source" #: lms/templates/tracking_log.html msgid "type" -msgstr "" +msgstr "type" #: lms/templates/unsubscribe.html msgid "Unsubscribe Successful!" @@ -5448,7 +5591,7 @@ msgstr "" #: lms/templates/using.html msgid "Using the system" -msgstr "" +msgstr "Использование системы" #: lms/templates/using.html msgid "" @@ -5488,7 +5631,7 @@ msgstr "" #: lms/templates/video.html msgid "Play" -msgstr "" +msgstr "Воспроизвести" #: lms/templates/video.html msgid "Speeds" @@ -5496,7 +5639,7 @@ msgstr "" #: lms/templates/video.html msgid "Speed" -msgstr "" +msgstr "Скорость" #: lms/templates/video.html msgid "Volume" @@ -5512,7 +5655,7 @@ msgstr "" #: lms/templates/video.html lms/templates/video.html msgid "Turn off captions" -msgstr "" +msgstr "Отключить субтитры" #: lms/templates/video.html msgid "Skip to end of transcript." @@ -5530,19 +5673,19 @@ msgstr "" #: lms/templates/video.html msgid "Download video" -msgstr "" +msgstr "Скачать видео" #: lms/templates/video.html lms/templates/video.html msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html msgid "Your words:" -msgstr "" +msgstr "Ваши слова:" #: lms/templates/word_cloud.html msgid "Total number of words:" @@ -5559,7 +5702,7 @@ msgstr "" #: lms/templates/combinedopenended/combined_open_ended.html #: lms/templates/peer_grading/peer_grading_problem.html msgid "Hide Question" -msgstr "" +msgstr "Скрыть вопрос" #: lms/templates/combinedopenended/combined_open_ended.html msgid "New Submission" @@ -5600,7 +5743,7 @@ msgstr "" #. graded rubrics the user might have received #: lms/templates/combinedopenended/combined_open_ended_results.html msgid "{result_of_task} from grader {number}" -msgstr "" +msgstr "{result_of_task} от оценивающего номер {number}" #. Translators: "See full feedback" is the text of #. a link that allows a user to see more detailed @@ -5629,7 +5772,7 @@ msgstr "" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html msgid "Correct" -msgstr "" +msgstr "Верно" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html @@ -5649,12 +5792,12 @@ msgstr "" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html msgid "Incorrect" -msgstr "" +msgstr "Неверно" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html msgid "Additional comments:" -msgstr "" +msgstr "Дополнительные комментарии:" #: lms/templates/combinedopenended/open_ended_result_table.html #: lms/templates/combinedopenended/openended/open_ended_evaluation.html @@ -5713,11 +5856,11 @@ msgstr "" #: lms/templates/course_groups/cohort_management.html msgid "Cohort groups" -msgstr "" +msgstr "Группы" #: lms/templates/course_groups/cohort_management.html msgid "Show cohorts" -msgstr "" +msgstr "Показать группы" #: lms/templates/course_groups/cohort_management.html msgid "Cohorts in the course" @@ -5725,7 +5868,7 @@ msgstr "" #: lms/templates/course_groups/cohort_management.html msgid "Add cohort" -msgstr "" +msgstr "Добавить группу" #: lms/templates/course_groups/cohort_management.html msgid "Add users by username or email. One per line or comma-separated." @@ -5733,11 +5876,11 @@ msgstr "" #: lms/templates/course_groups/cohort_management.html msgid "Add cohort members" -msgstr "" +msgstr "Добавить членов группы" #: lms/templates/courseware/accordion.html msgid "{chapter}, current chapter" -msgstr "" +msgstr "{chapter}, текущая глава" #: lms/templates/courseware/accordion.html #: lms/templates/courseware/progress.html @@ -5766,23 +5909,43 @@ msgstr "" #: lms/templates/courseware/course_about.html msgid "This course is in your cart." -msgstr "" +msgstr "Этот курс в Вашей корзине." #: lms/templates/courseware/course_about.html msgid "" "Add {course.display_number_with_default} to Cart ({currency_symbol}{cost})" msgstr "" +"Добавить {course.display_number_with_default} в корзину " +"({currency_symbol}{cost})" #: lms/templates/courseware/course_about.html msgid "Register for {course.display_number_with_default}" msgstr "" #: lms/templates/courseware/course_about.html -msgid "Overview" +msgid "View About Page in studio" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "Overview" +msgstr "Обзор" + #: lms/templates/courseware/course_about.html msgid "Share with friends and family!" +msgstr "Поделиться с семьёй и друзьями!" + +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" msgstr "" #: lms/templates/courseware/course_about.html @@ -5828,17 +5991,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5859,25 +6016,27 @@ msgstr "" #: lms/templates/courseware/courseware.html msgid "Calculator Input Field" -msgstr "" +msgstr "Поле ввода Калькулятора" #: lms/templates/courseware/courseware.html msgid "" "Use the arrow keys to navigate the tips or use the tab key to return to the " "calculator" msgstr "" +"Используйте клавиши со стрелками для перемещения между подсказками или " +"воспользуйтесь клавишей табуляции для возврата к калькулятору" #: lms/templates/courseware/courseware.html msgid "Hints" -msgstr "" +msgstr "Подсказки" #: lms/templates/courseware/courseware.html msgid "Integers" -msgstr "" +msgstr "Целые числа" #: lms/templates/courseware/courseware.html msgid "Decimals" -msgstr "" +msgstr "Десятичные дроби" #: lms/templates/courseware/courseware.html msgid "Scientific notation" @@ -5885,11 +6044,11 @@ msgstr "" #: lms/templates/courseware/courseware.html msgid "Appending SI postfixes" -msgstr "" +msgstr "Добавление SI-постфиксов" #: lms/templates/courseware/courseware.html msgid "Supported SI postfixes" -msgstr "" +msgstr "Поддерживаемые SI-постфиксы" #: lms/templates/courseware/courseware.html msgid "Operators" @@ -5897,11 +6056,11 @@ msgstr "" #: lms/templates/courseware/courseware.html msgid "parallel resistors function" -msgstr "" +msgstr "функция параллельных резисторов" #: lms/templates/courseware/courseware.html msgid "Functions" -msgstr "" +msgstr "Функции" #: lms/templates/courseware/courseware.html msgid "Constants" @@ -5909,7 +6068,7 @@ msgstr "" #: lms/templates/courseware/courseware.html msgid "Euler's number" -msgstr "" +msgstr "число Эйлера" #: lms/templates/courseware/courseware.html msgid "ratio of a circle's circumference to it's diameter" @@ -5917,15 +6076,15 @@ msgstr "" #: lms/templates/courseware/courseware.html msgid "Boltzmann constant" -msgstr "" +msgstr "постоянная Больцмана" #: lms/templates/courseware/courseware.html msgid "speed of light" -msgstr "" +msgstr "скорость света" #: lms/templates/courseware/courseware.html msgid "freezing point of water in degrees Kelvin" -msgstr "" +msgstr "температура замерзания воды в градусах Кельвина" #: lms/templates/courseware/courseware.html msgid "fundamental charge" @@ -5937,7 +6096,7 @@ msgstr "" #: lms/templates/courseware/courseware.html msgid "Calculator Output Field" -msgstr "" +msgstr "Поле вывода Калькулятора" #: lms/templates/courseware/error-message.html msgid "" @@ -5958,7 +6117,7 @@ msgstr "" #: lms/templates/courseware/gradebook.html #: lms/templates/courseware/instructor_dashboard.html msgid "Gradebook" -msgstr "" +msgstr "Журнал оценок" #: lms/templates/courseware/gradebook.html msgid "Search students" @@ -5968,6 +6127,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5988,12 +6151,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6035,7 +6198,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html msgid "Export grades to remote gradebook" -msgstr "" +msgstr "Экспортировать оценки в удалённый журнал" #: lms/templates/courseware/instructor_dashboard.html msgid "" @@ -6055,7 +6218,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Course-specific grade adjustment" -msgstr "" +msgstr "Коррекция оценок для конкретных курсов" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html @@ -6078,7 +6241,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html msgid "Then select an action:" -msgstr "" +msgstr "Далее выберите действие:" #: lms/templates/courseware/instructor_dashboard.html msgid "" @@ -6129,7 +6292,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html msgid "Explanation of Roles:" -msgstr "" +msgstr "Описание ролей:" #: lms/templates/courseware/instructor_dashboard.html msgid "" @@ -6163,7 +6326,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Section:" -msgstr "" +msgstr "Раздел:" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -6186,7 +6349,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html msgid "Problem urlname:" -msgstr "" +msgstr "Ссылка на задачу:" #. Translators: days_early_for_beta should not be translated #: lms/templates/courseware/instructor_dashboard.html @@ -6200,7 +6363,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send to:" -msgstr "" +msgstr "Отправить:" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html @@ -6224,18 +6387,20 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Subject: " -msgstr "" +msgstr "Тема:" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "(Max 128 characters)" -msgstr "" +msgstr "(Максимум 128 символов)" #: lms/templates/courseware/instructor_dashboard.html msgid "" "Please try not to email students more than once per week. Important things " "to consider before sending:" msgstr "" +"Пожалуйста, постарайтесь не отправлять электронную почту студентам чаще раза" +" в неделю. Важные детали, которые нужно уточнить перед отправкой:" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html @@ -6254,7 +6419,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "CAUTION!" -msgstr "" +msgstr "ОСТОРОЖНО!" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html @@ -6262,11 +6427,13 @@ msgid "" "Once the 'Send Email' button is clicked, your email will be queued for " "sending." msgstr "" +"При нажатии на кнопку \"Отправить сообщение на электронную почту\", Ваше " +"сообщение будет поставлено в очередь на отправку." #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "A queued email CANNOT be cancelled." -msgstr "" +msgstr "Сообщение в очереди на отправку НЕ может быть отменено." #: lms/templates/courseware/instructor_dashboard.html msgid "No Analytics are available at this time." @@ -6280,19 +6447,19 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html msgid "Students active in the last week:" -msgstr "" +msgstr "Студенты, активные в течение последней недели:" #: lms/templates/courseware/instructor_dashboard.html msgid "Student activity day by day" -msgstr "" +msgstr "Активность студентов по дням" #: lms/templates/courseware/instructor_dashboard.html msgid "Day" -msgstr "" +msgstr "День" #: lms/templates/courseware/instructor_dashboard.html msgid "Students" -msgstr "" +msgstr "Студенты" #: lms/templates/courseware/instructor_dashboard.html msgid "Score distribution for problems" @@ -6302,11 +6469,11 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "Problem" -msgstr "" +msgstr "Задача" #: lms/templates/courseware/instructor_dashboard.html msgid "Max" -msgstr "" +msgstr "Максимум" #: lms/templates/courseware/instructor_dashboard.html msgid "Points Earned (Num Students)" @@ -6315,7 +6482,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "There is no data available to display at this time." -msgstr "" +msgstr "В настоящий момент данных для вывода нет." #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html @@ -6328,12 +6495,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6346,11 +6507,11 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html msgid "Students answering correctly" -msgstr "" +msgstr "Студенты, отвечающие верно" #: lms/templates/courseware/instructor_dashboard.html msgid "Number of students" -msgstr "" +msgstr "Количество студентов" #: lms/templates/courseware/instructor_dashboard.html msgid "" @@ -6368,7 +6529,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html msgid "Task Type" -msgstr "" +msgstr "Тип задания" #: lms/templates/courseware/instructor_dashboard.html msgid "Task inputs" @@ -6376,19 +6537,19 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html msgid "Task Id" -msgstr "" +msgstr "Идентификатор задания" #: lms/templates/courseware/instructor_dashboard.html msgid "Requester" -msgstr "" +msgstr "Запрашивающий" #: lms/templates/courseware/instructor_dashboard.html msgid "Task State" -msgstr "" +msgstr "Состояние задания" #: lms/templates/courseware/instructor_dashboard.html msgid "Duration (sec)" -msgstr "" +msgstr "Продолжительность (сек)" #: lms/templates/courseware/instructor_dashboard.html msgid "Task Progress" @@ -6397,7 +6558,7 @@ msgstr "" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html msgid "unknown" -msgstr "" +msgstr "неизвестно" #: lms/templates/courseware/instructor_dashboard.html msgid "Course errors" @@ -6405,15 +6566,15 @@ msgstr "" #: lms/templates/courseware/mktg_coming_soon.html msgid "About {course_id}" -msgstr "" +msgstr "О курсе {course_id}" #: lms/templates/courseware/mktg_coming_soon.html msgid "Coming Soon" -msgstr "" +msgstr "Скоро" #: lms/templates/courseware/mktg_course_about.html msgid "About {course_number}" -msgstr "" +msgstr "О курсе {course_number}" #: lms/templates/courseware/mktg_course_about.html msgid "Access Courseware" @@ -6421,7 +6582,7 @@ msgstr "" #: lms/templates/courseware/mktg_course_about.html msgid "You Are Registered" -msgstr "" +msgstr "Вы зарегистрированы" #: lms/templates/courseware/mktg_course_about.html msgid "Register for" @@ -6429,11 +6590,11 @@ msgstr "" #: lms/templates/courseware/mktg_course_about.html msgid "Registration Is Closed" -msgstr "" +msgstr "Регистрация закрыта" #: lms/templates/courseware/news.html msgid "News - MITx 6.002x" -msgstr "" +msgstr "Новости - MITx 6.002x" #: lms/templates/courseware/news.html msgid "Updates to Discussion Posts You Follow" @@ -6447,21 +6608,29 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" #: lms/templates/courseware/progress.html msgid "Problem Scores: " -msgstr "" +msgstr "Баллы за решение:" #: lms/templates/courseware/progress.html msgid "Practice Scores: " -msgstr "" +msgstr "Баллы за практику:" #: lms/templates/courseware/progress.html msgid "No problem scores in this section" @@ -6469,13 +6638,15 @@ msgstr "" #: lms/templates/courseware/syllabus.html msgid "{course.display_number_with_default} Course Info" -msgstr "" +msgstr "Информация о курсе {course.display_number_with_default}" #: lms/templates/courseware/welcome-back.html msgid "" "You were most recently in {section_link}. If you're done with that, choose " "another section on the left." msgstr "" +"В последний раз Вы были в разделе {section_link}. Если Вы закончили, " +"выберите другой раздел слева." #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "" @@ -6485,7 +6656,7 @@ msgstr "" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Your final grade:" -msgstr "" +msgstr "Ваша итоговая оценка:" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Grade required for a {cert_name_short}:" @@ -6584,7 +6755,7 @@ msgstr "" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Challenge Yourself!" -msgstr "" +msgstr "Испытайте себя!" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Take this course as an ID-verified student." @@ -6623,6 +6794,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6720,7 +6898,7 @@ msgstr "" #: lms/templates/debug/run_python_form.html msgid "Results:" -msgstr "" +msgstr "Результаты:" #: lms/templates/discussion/_blank_slate.html msgid "" @@ -6735,12 +6913,16 @@ msgstr "" #: lms/templates/discussion/_discussion_course_navigation.html #: lms/templates/discussion/_discussion_module.html msgid "New Post" -msgstr "" +msgstr "Новое сообщение" #: lms/templates/discussion/_discussion_module.html msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -6753,7 +6935,7 @@ msgstr "" #: lms/templates/discussion/_new_post.html #: lms/templates/discussion/_thread_list_template.html msgid "Show All Discussions" -msgstr "" +msgstr "Показать все обсуждения" #: lms/templates/discussion/_filter_dropdown.html msgid "Show Flagged Discussions" @@ -6761,7 +6943,7 @@ msgstr "" #: lms/templates/discussion/_filter_dropdown.html msgid "Posts I'm Following" -msgstr "" +msgstr "Сообщения, за которыми я слежу" #: lms/templates/discussion/_inline_new_post.html #: lms/templates/discussion/_new_post.html @@ -6775,7 +6957,7 @@ msgstr "" #: lms/templates/discussion/mustache/_inline_discussion.mustache #: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache msgid "post anonymously" -msgstr "" +msgstr "оставить сообщение анонимно" #: lms/templates/discussion/_inline_new_post.html #: lms/templates/discussion/_new_post.html @@ -6823,11 +7005,11 @@ msgstr "" #: lms/templates/discussion/mustache/_inline_discussion.mustache #: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache msgid "Add post" -msgstr "" +msgstr "Добавить сообщение" #: lms/templates/discussion/_new_post.html msgid "Create new post about:" -msgstr "" +msgstr "Создать новое сообщение о:" #: lms/templates/discussion/_new_post.html msgid "Filter List" @@ -6847,7 +7029,7 @@ msgstr "" #: lms/templates/discussion/_similar_posts.html msgid "Hide" -msgstr "" +msgstr "Скрыть" #: lms/templates/discussion/_thread_list_template.html msgid "Discussion Home" @@ -6855,7 +7037,7 @@ msgstr "" #: lms/templates/discussion/_thread_list_template.html msgid "Discussion Topics" -msgstr "" +msgstr "Темы обсуждения" #: lms/templates/discussion/_thread_list_template.html msgid "Discussion topics; current selection is: " @@ -6867,7 +7049,7 @@ msgstr "" #: lms/templates/discussion/_thread_list_template.html msgid "Sort by:" -msgstr "" +msgstr "Сортировать по:" #: lms/templates/discussion/_thread_list_template.html msgid "date" @@ -6883,7 +7065,7 @@ msgstr "" #: lms/templates/discussion/_thread_list_template.html msgid "Show:" -msgstr "" +msgstr "Показать:" #: lms/templates/discussion/_thread_list_template.html msgid "View All" @@ -6903,13 +7085,13 @@ msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache #: lms/templates/discussion/mustache/_profile_thread.mustache msgid "This thread is closed." -msgstr "" +msgstr "Эта тема закрыта." #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache msgid "Post a response:" -msgstr "" +msgstr "Написать ответ:" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html @@ -6921,7 +7103,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html msgid "• This thread is closed." -msgstr "" +msgstr "• Эта тема закрыта." #: lms/templates/discussion/_underscore_templates.html msgid "follow" @@ -6953,7 +7135,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html msgid "Editing post" -msgstr "" +msgstr "Редактирование сообщения" #: lms/templates/discussion/_underscore_templates.html msgid "Edit post title" @@ -6961,11 +7143,11 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html msgid "Update post" -msgstr "" +msgstr "Обновить сообщение" #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment" -msgstr "" +msgstr "Добавить комментарий" #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment..." @@ -6977,11 +7159,11 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html msgid "Editing response" -msgstr "" +msgstr "Редактирование ответа" #: lms/templates/discussion/_underscore_templates.html msgid "Update response" -msgstr "" +msgstr "Обновить ответ" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html @@ -7052,7 +7234,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html msgid "Follow posts for updates" -msgstr "" +msgstr "Отслеживать обновления в сообщениях" #: lms/templates/discussion/_underscore_templates.html msgid "Receive updates" @@ -7070,7 +7252,7 @@ msgstr "" #: lms/templates/discussion/_user_profile.html msgid ", " -msgstr "" +msgstr ", " #: lms/templates/discussion/_user_profile.html msgid "%s discussion started" @@ -7089,7 +7271,7 @@ msgstr[2] "" #: lms/templates/discussion/index.html #: lms/templates/discussion/user_profile.html msgid "Discussion - {course_number}" -msgstr "" +msgstr "Обсуждение - {course_number}" #: lms/templates/discussion/maintenance.html msgid "We're sorry" @@ -7100,40 +7282,40 @@ msgid "" "The forums are currently undergoing maintenance. We'll have them back up " "shortly!" msgstr "" +"В настоящее время на форумах ведутся технические работы. Мы восстановим их " +"работу в ближайшее время!" #: lms/templates/discussion/user_profile.html msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache msgid "This thread has been pinned by course staff." -msgstr "" +msgstr "Это обсуждение было закреплено преподавателями курса." #: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7173,10 +7355,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7257,6 +7448,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7267,10 +7462,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7399,7 +7590,7 @@ msgstr "" #: lms/templates/instructor/staff_grading.html msgid "Problem List" -msgstr "" +msgstr "Список задач" #: lms/templates/instructor/staff_grading.html msgid "" @@ -7412,21 +7603,21 @@ msgstr "" #: lms/templates/instructor/staff_grading.html msgid "Prompt" -msgstr "" +msgstr "Подсказка" #: lms/templates/instructor/staff_grading.html msgid "(Hide)" -msgstr "" +msgstr "(Скрыть)" #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html msgid "Student Response" -msgstr "" +msgstr "Ответ студента" #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html msgid "Written Feedback" -msgstr "" +msgstr "Письменный отзыв" #: lms/templates/instructor/staff_grading.html msgid "Feedback for student (optional)" @@ -7438,7 +7629,7 @@ msgstr "" #: lms/templates/instructor/staff_grading.html msgid "Skip" -msgstr "" +msgstr "Пропустить" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "Score Distribution" @@ -7458,7 +7649,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "Loading problem list..." -msgstr "" +msgstr "Загрузка списка задач..." #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "Gender Distribution" @@ -7478,29 +7669,29 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Name:" -msgstr "" +msgstr "Название Курса:" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Display Name:" -msgstr "" +msgstr "Отображаемое Название Курса:" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Has the course started?" -msgstr "" +msgstr "Курс уже начался?" #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" -msgstr "" +msgstr "Да" #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" -msgstr "" +msgstr "Нет" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Has the course ended?" -msgstr "" +msgstr "Курс уже закончился?" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Grade Cutoffs:" @@ -7690,11 +7881,12 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "section_display_name" -msgstr "" +msgstr "section_display_name" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7705,9 +7897,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7725,6 +7918,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7746,7 +7943,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7755,6 +7952,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7805,7 +8012,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Instructors" -msgstr "" +msgstr "Преподаватели" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" @@ -7815,7 +8022,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add Instructor" -msgstr "" +msgstr "Добавить преподавателя" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Beta Testers" @@ -7860,7 +8067,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add Moderator" -msgstr "" +msgstr "Добавить модератора" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Discussion Community TAs" @@ -7886,6 +8093,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -7944,7 +8172,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Problem urlname" -msgstr "" +msgstr "Ссылка на задачу" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html @@ -7957,6 +8185,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Next, select an action to perform for the given user and problem:" msgstr "" +"Теперь выберите действие, которое должно быть применено к данному " +"пользователю и задаче:" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Reset Student Attempts" @@ -7984,7 +8214,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Show Background Task History for Student" -msgstr "" +msgstr "Показать историю фоновых задач для студента" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Then select an action" @@ -8035,7 +8265,7 @@ msgstr "" #. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/modal/accessible_confirm.html msgid "modal open" -msgstr "" +msgstr "открыто модальное окно" #: lms/templates/open_ended_problems/combined_notifications.html msgid "{course_number} Combined Notifications" @@ -8117,6 +8347,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8128,11 +8364,11 @@ msgstr "" #: lms/templates/peer_grading/peer_grading.html msgid "Graded" -msgstr "" +msgstr "Оценено" #: lms/templates/peer_grading/peer_grading.html msgid "Available" -msgstr "" +msgstr "Доступно" #: lms/templates/peer_grading/peer_grading.html msgid "Required" @@ -8172,7 +8408,7 @@ msgstr "" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Continue" -msgstr "" +msgstr "Продолжить" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Ready to grade!" @@ -8234,11 +8470,11 @@ msgstr "" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Go Back" -msgstr "" +msgstr "Вернуться" #: lms/templates/registration/activate_account_notice.html msgid "Thanks For Registering!" -msgstr "" +msgstr "Спасибо за регистрацию!" #: lms/templates/registration/activate_account_notice.html msgid "" @@ -8248,11 +8484,11 @@ msgstr "" #: lms/templates/registration/activation_complete.html msgid "Activation Complete!" -msgstr "" +msgstr "Активация завершена!" #: lms/templates/registration/activation_complete.html msgid "Account already active!" -msgstr "" +msgstr "Учётная запись уже активирована!" #: lms/templates/registration/activation_complete.html msgid "You can now {link_start}log in{link_end}." @@ -8324,11 +8560,11 @@ msgstr "" #: lms/templates/shoppingcart/list.html msgid "Your Shopping Cart" -msgstr "" +msgstr "Ваша корзина" #: lms/templates/shoppingcart/list.html msgid "Your selected items:" -msgstr "" +msgstr "Выбранные Вами наименования:" #: lms/templates/shoppingcart/list.html #: lms/templates/shoppingcart/receipt.html @@ -8338,7 +8574,7 @@ msgstr "" #: lms/templates/shoppingcart/list.html #: lms/templates/shoppingcart/receipt.html msgid "Price" -msgstr "" +msgstr "Цена" #: lms/templates/shoppingcart/list.html #: lms/templates/shoppingcart/receipt.html @@ -8354,16 +8590,26 @@ msgid "Register for [Course Name] | Receipt (Order" msgstr "" #: lms/templates/shoppingcart/receipt.html -msgid " () Electronic Receipt" +msgid "Thank you for your Purchase!" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid " () Electronic Receipt" +msgstr " () Электронный чек" + #: lms/templates/shoppingcart/receipt.html msgid "Order #" msgstr "" #: lms/templates/shoppingcart/receipt.html msgid "Date:" -msgstr "" +msgstr "Дата:" #: lms/templates/shoppingcart/receipt.html msgid "Items ordered:" @@ -8389,7 +8635,7 @@ msgstr "" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Receipt (Order" -msgstr "" +msgstr "Чек (Заказ" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "You are now registered for: " @@ -8416,13 +8662,13 @@ msgstr "" #: lms/templates/verify_student/show_requirements.html #: lms/templates/verify_student/verified.html msgid "Current Step: " -msgstr "" +msgstr "Текущий шаг: " #: lms/templates/shoppingcart/verified_cert_receipt.html #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/show_requirements.html msgid "Intro" -msgstr "" +msgstr "Введение" #: lms/templates/shoppingcart/verified_cert_receipt.html #: lms/templates/verify_student/photo_verification.html @@ -8443,14 +8689,14 @@ msgstr "" #: lms/templates/verify_student/show_requirements.html #: lms/templates/verify_student/verified.html msgid "Review" -msgstr "" +msgstr "Просмотреть" #: lms/templates/shoppingcart/verified_cert_receipt.html #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/show_requirements.html #: lms/templates/verify_student/verified.html msgid "Make Payment" -msgstr "" +msgstr "Оплатить" #: lms/templates/shoppingcart/verified_cert_receipt.html #: lms/templates/verify_student/photo_reverification.html @@ -8459,7 +8705,7 @@ msgstr "" #: lms/templates/verify_student/show_requirements.html #: lms/templates/verify_student/verified.html msgid "Confirmation" -msgstr "" +msgstr "Подтверждение" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Congratulations! You are now verified on " @@ -8485,11 +8731,11 @@ msgstr "" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Starts: {start_date}" -msgstr "" +msgstr "Начало: {start_date}" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Go to Course" -msgstr "" +msgstr "Перейти к курсу" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Go to your Dashboard" @@ -8515,7 +8761,7 @@ msgstr "" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Payment Details" -msgstr "" +msgstr "Детали платежа" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "" @@ -8592,20 +8838,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8615,7 +8859,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8634,6 +8878,8 @@ msgstr "" #: lms/templates/university_profile/edge.html msgid "Take free online courses from today's leading universities." msgstr "" +"Проходите бесплатные онлайн курсы от ведущих на сегодняшний день " +"университетов." #: lms/templates/verify_student/_modal_editname.html msgid "Edit Your Name" @@ -8652,7 +8898,7 @@ msgstr "" #: lms/templates/verify_student/_modal_editname.html msgid "Change my name" -msgstr "" +msgstr "Изменить моё имя" #: lms/templates/verify_student/_reverification_support.html msgid "Why Do I Need to Re-Verify?" @@ -8667,7 +8913,7 @@ msgstr "" #: lms/templates/verify_student/_reverification_support.html msgid "Having Technical Trouble?" -msgstr "" +msgstr "Есть технические проблемы?" #: lms/templates/verify_student/_reverification_support.html msgid "" @@ -8680,7 +8926,7 @@ msgstr "" #: lms/templates/verify_student/_reverification_support.html #: lms/templates/verify_student/_verification_support.html msgid "Have questions?" -msgstr "" +msgstr "Есть вопросы?" #: lms/templates/verify_student/_reverification_support.html #: lms/templates/verify_student/_verification_support.html @@ -8716,7 +8962,7 @@ msgstr "" #: lms/templates/verify_student/_verification_support.html #: lms/templates/verify_student/_verification_support.html msgid "Change your mind?" -msgstr "" +msgstr "Передумали?" #: lms/templates/verify_student/_verification_support.html #: lms/templates/verify_student/photo_verification.html @@ -8754,7 +9000,7 @@ msgstr "" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "No Webcam Detected" -msgstr "" +msgstr "Вебкамера не обнаружена" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -8767,7 +9013,7 @@ msgstr "" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "No Flash Detected" -msgstr "" +msgstr "Flash не обнаружен" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -8844,7 +9090,7 @@ msgstr "" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Make sure your face is well-lit" -msgstr "" +msgstr "Убедитесь, что Ваше лицо хорошо освещено" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -8986,6 +9232,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -9026,13 +9274,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9135,7 +9377,7 @@ msgstr "" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Make sure your ID is well-lit" -msgstr "" +msgstr "Убедитесь, что Ваш документ хорошо освещён" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html @@ -9227,7 +9469,7 @@ msgstr "" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Be well lit" -msgstr "" +msgstr "Освещение должно быть достаточно хорошим" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html @@ -9239,7 +9481,7 @@ msgstr "" #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/photo_verification.html msgid "The photo on your ID must match the photo of your face" -msgstr "" +msgstr "Фото в Вашем документе должно совпадать с фото Вашего лица" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html @@ -9254,7 +9496,7 @@ msgstr "" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Photos don't meet the requirements?" -msgstr "" +msgstr "Фото не соответствуют требованиям?" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html @@ -9277,7 +9519,7 @@ msgstr "" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Yes! My details all match." -msgstr "" +msgstr "Да! Все мои данные совпадают." #: lms/templates/verify_student/photo_verification.html msgid "Upgrade Your Registration for {} | Verification" @@ -9312,7 +9554,7 @@ msgstr "" #: lms/templates/verify_student/photo_verification.html msgid "What if my camera isn't working?" -msgstr "" +msgstr "Что, если моя камера не работает?" #: lms/templates/verify_student/photo_verification.html msgid "Go to Step 2: Take ID Photo" @@ -9324,7 +9566,7 @@ msgstr "" #: lms/templates/verify_student/photo_verification.html msgid "Check Your Contribution Level" -msgstr "" +msgstr "Проверьте размер Вашего взноса" #: lms/templates/verify_student/photo_verification.html msgid "Please confirm your contribution for this course (min. $" @@ -9400,7 +9642,7 @@ msgstr "" #: lms/templates/verify_student/show_requirements.html msgid "What You Will Need to Register" -msgstr "" +msgstr "Что Вам потребуется для регистрации" #: lms/templates/verify_student/show_requirements.html msgid "" @@ -9427,7 +9669,7 @@ msgstr "" #: lms/templates/verify_student/show_requirements.html msgid "A photo identification document" -msgstr "" +msgstr "Документ, удостоверяющий личность, с фотографией" #: lms/templates/verify_student/show_requirements.html msgid "" @@ -9437,22 +9679,25 @@ msgstr "" #: lms/templates/verify_student/show_requirements.html msgid "Webcam" -msgstr "" +msgstr "Вебкамера" #: lms/templates/verify_student/show_requirements.html msgid "A webcam and a modern browser" -msgstr "" +msgstr "Вебкамера и современный браузер" #: lms/templates/verify_student/show_requirements.html msgid "" "{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " "{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}" msgstr "" +"{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " +"{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}" #: lms/templates/verify_student/show_requirements.html msgid "" "Please make sure your browser is updated to the most recent version possible" msgstr "" +"Пожалуйста, проверьте, обновлён ли Ваш браузер до последней доступной версии" #: lms/templates/verify_student/show_requirements.html msgid "Credit or Debit Card" @@ -9484,7 +9729,7 @@ msgstr "" #: lms/templates/verify_student/verified.html msgid "ID Verification" -msgstr "" +msgstr "Заверение документа" #: lms/templates/verify_student/verified.html msgid "You've Been Verified Previously" @@ -9721,19 +9966,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9747,23 +9989,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9798,6 +10057,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11432,6 +11698,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11520,15 +11790,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/ru/LC_MESSAGES/djangojs.mo b/conf/locale/ru/LC_MESSAGES/djangojs.mo index ebed50e532..2935dfd522 100644 Binary files a/conf/locale/ru/LC_MESSAGES/djangojs.mo and b/conf/locale/ru/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ru/LC_MESSAGES/djangojs.po b/conf/locale/ru/LC_MESSAGES/djangojs.po index 2f8e958b92..0904ab7105 100644 --- a/conf/locale/ru/LC_MESSAGES/djangojs.po +++ b/conf/locale/ru/LC_MESSAGES/djangojs.po @@ -5,18 +5,25 @@ # # Translators: # AndyZ , 2014 +# AndyZ , 2014 # asandler , 2013 # Tenrius , 2013 +# DariaTkacheva , 2014 # ejikjane , 2013 +# eudj1n , 2014 # ejikjane , 2013 +# Katerina Arinarkina , 2014 # Man2Life , 2013 # Nichik , 2013 +# ojka , 2014 # Man2Life , 2013 # Katerina Arinarkina , 2014 # Tenrius , 2013 +# W01fdalE , 2014 # viktoria , 2013 # viktoria , 2013 # Weyedide , 2014 +# Weyedide , 2014 # asandler , 2013 # Nichik , 2013 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# @@ -32,13 +39,14 @@ # Nichik , 2013 # Tenrius , 2013 # viktoria , 2013 +# Weyedide , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-30 09:00+0000\n" -"Last-Translator: AndyZ \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:20+0000\n" +"Last-Translator: sarina \n" "Language-Team: Russian (http://www.transifex.com/projects/p/edx-platform/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,6 +56,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -56,6 +65,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -360,6 +371,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -416,17 +429,15 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -490,6 +501,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -528,6 +544,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -912,9 +932,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -922,7 +943,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1256,15 +1277,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1374,18 +1396,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1401,6 +1418,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1408,19 +1426,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1567,6 +1585,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1582,6 +1604,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1643,6 +1669,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1672,6 +1702,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1696,3 +1746,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/si/LC_MESSAGES/django.mo b/conf/locale/si/LC_MESSAGES/django.mo index 4e5cdb05dc..204ac71361 100644 Binary files a/conf/locale/si/LC_MESSAGES/django.mo and b/conf/locale/si/LC_MESSAGES/django.mo differ diff --git a/conf/locale/si/LC_MESSAGES/django.po b/conf/locale/si/LC_MESSAGES/django.po index c2b054b154..83a8d5dee2 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-31 09:26-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -174,6 +174,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -184,6 +194,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -310,7 +327,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -322,6 +339,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -770,7 +803,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -791,6 +824,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -803,6 +840,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -897,6 +956,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -929,11 +992,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -983,6 +1064,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1267,10 +1360,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1698,10 +1805,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1744,6 +1855,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2031,7 +2151,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2258,37 +2378,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2388,6 +2477,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3080,6 +3173,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3146,6 +3240,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3687,35 +3782,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3733,6 +3804,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3757,23 +3841,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3814,14 +3916,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 "" @@ -4029,12 +4123,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4045,12 +4138,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4091,11 +4183,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4204,6 +4332,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4259,18 +4391,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4378,14 +4498,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4428,7 +4544,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4655,10 +4772,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4668,6 +4814,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4711,15 +4865,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4771,6 +4925,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4828,8 +4986,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4886,10 +5045,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4970,6 +5131,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5060,33 +5241,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5095,6 +5260,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5111,14 +5280,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5158,7 +5319,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5203,43 +5364,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5488,8 +5617,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5727,6 +5856,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5735,6 +5868,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5778,17 +5925,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5918,6 +6059,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5938,12 +6083,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6278,12 +6423,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6397,10 +6536,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6573,6 +6720,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6691,6 +6845,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7053,24 +7211,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7082,6 +7230,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7121,10 +7277,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7205,6 +7370,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7215,10 +7384,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7642,7 +7807,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7653,9 +7819,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7673,6 +7840,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7694,7 +7865,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7703,6 +7874,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7834,6 +8015,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8065,6 +8267,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8301,6 +8509,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8540,20 +8758,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8563,7 +8779,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8934,6 +9150,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8974,13 +9192,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9669,19 +9881,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9695,23 +9904,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9746,6 +9972,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11380,6 +11613,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11468,15 +11705,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/si/LC_MESSAGES/djangojs.mo b/conf/locale/si/LC_MESSAGES/djangojs.mo index 3fe3bdda68..a1ca25b5f7 100644 Binary files a/conf/locale/si/LC_MESSAGES/djangojs.mo and b/conf/locale/si/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/si/LC_MESSAGES/djangojs.po b/conf/locale/si/LC_MESSAGES/djangojs.po index ce961d98b2..8e82b6e074 100644 --- a/conf/locale/si/LC_MESSAGES/djangojs.po +++ b/conf/locale/si/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-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Sinhala (http://www.transifex.com/projects/p/edx-platform/language/si/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -34,6 +35,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -333,6 +336,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -389,16 +394,14 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" @@ -460,6 +463,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -496,6 +504,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -874,9 +886,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -884,7 +897,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1218,15 +1231,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1336,18 +1350,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1363,6 +1372,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1370,19 +1380,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1529,6 +1539,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1544,6 +1558,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1605,6 +1623,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1634,6 +1656,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1658,3 +1700,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/sk/LC_MESSAGES/django.mo b/conf/locale/sk/LC_MESSAGES/django.mo index 0ede9bdc62..43c2807708 100644 Binary files a/conf/locale/sk/LC_MESSAGES/django.mo and b/conf/locale/sk/LC_MESSAGES/django.mo differ diff --git a/conf/locale/sk/LC_MESSAGES/django.po b/conf/locale/sk/LC_MESSAGES/django.po index 63f64e1c52..bfa74d8963 100644 --- a/conf/locale/sk/LC_MESSAGES/django.po +++ b/conf/locale/sk/LC_MESSAGES/django.po @@ -4,6 +4,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# veronika.bundzikova , 2014 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# # edX translation file. # Copyright (C) 2014 EdX @@ -23,6 +24,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# veronika.bundzikova , 2014 # #-#-#-#-# messages.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2013 edX @@ -42,8 +44,8 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-24 22:20+0000\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-05-01 18:50+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" @@ -175,6 +177,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -185,6 +197,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -311,7 +330,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -323,6 +342,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -771,7 +806,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -792,6 +827,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -804,6 +843,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -898,6 +959,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -930,11 +995,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -984,6 +1067,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1265,10 +1360,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1696,10 +1805,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1742,6 +1855,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2029,7 +2151,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2256,37 +2378,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2386,6 +2477,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3078,6 +3173,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3144,6 +3240,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3685,35 +3782,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3731,6 +3804,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3755,23 +3841,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3812,14 +3916,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 "" @@ -4027,12 +4123,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4043,12 +4138,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4089,11 +4183,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4202,6 +4332,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4257,18 +4391,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4376,14 +4498,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4426,7 +4544,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4653,10 +4772,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4666,6 +4814,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4709,15 +4865,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4769,6 +4925,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4826,8 +4986,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4884,10 +5045,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4968,6 +5131,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5058,33 +5241,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5093,6 +5260,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5109,14 +5280,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5156,7 +5319,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5201,43 +5364,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "Predchádzajúca stránka" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "Nasledujúca stránka" @@ -5486,8 +5617,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5727,6 +5858,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5735,6 +5870,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5778,17 +5927,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5918,6 +6061,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5938,12 +6085,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6278,12 +6425,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6397,10 +6538,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6573,6 +6722,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6691,6 +6847,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7055,24 +7215,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7084,6 +7234,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7123,10 +7281,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7207,6 +7374,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7217,10 +7388,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7644,7 +7811,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7655,9 +7823,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7675,6 +7844,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7696,7 +7869,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7705,6 +7878,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7836,6 +8019,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8067,6 +8271,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8303,6 +8513,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8542,20 +8762,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8565,7 +8783,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8936,6 +9154,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8976,13 +9196,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9671,19 +9885,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9697,23 +9908,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9748,6 +9976,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11382,6 +11617,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11470,15 +11709,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/sk/LC_MESSAGES/djangojs.mo b/conf/locale/sk/LC_MESSAGES/djangojs.mo index 57b6b95a4d..fb2ac440b9 100644 Binary files a/conf/locale/sk/LC_MESSAGES/djangojs.mo and b/conf/locale/sk/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/sk/LC_MESSAGES/djangojs.po b/conf/locale/sk/LC_MESSAGES/djangojs.po index 491f5e1711..87a581cfec 100644 --- a/conf/locale/sk/LC_MESSAGES/djangojs.po +++ b/conf/locale/sk/LC_MESSAGES/djangojs.po @@ -4,6 +4,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# veronika.bundzikova , 2014 # Vladimír Záhradník , 2013-2014 # Vladimír Záhradník , 2013 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# @@ -12,15 +13,16 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# veronika.bundzikova , 2014 # 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-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-25 13:11+0000\n" -"Last-Translator: Vladimír Záhradník \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-05-02 13:11+0000\n" +"Last-Translator: veronika.bundzikova \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" @@ -30,6 +32,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -38,6 +41,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -342,6 +347,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -398,17 +405,15 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -472,6 +477,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -510,6 +520,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -894,9 +908,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -904,7 +919,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1238,15 +1253,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1356,18 +1372,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1383,6 +1394,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1390,19 +1402,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1549,6 +1561,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1564,6 +1580,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1625,6 +1645,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1654,6 +1678,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1678,3 +1722,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/sl/LC_MESSAGES/django.mo b/conf/locale/sl/LC_MESSAGES/django.mo index 054b4a641e..6d84f7ae75 100644 Binary files a/conf/locale/sl/LC_MESSAGES/django.mo and b/conf/locale/sl/LC_MESSAGES/django.mo differ diff --git a/conf/locale/sl/LC_MESSAGES/django.po b/conf/locale/sl/LC_MESSAGES/django.po index 3bee4553ca..3da631f101 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-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -802,7 +802,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1367,6 +1367,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -4776,10 +4786,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4789,6 +4813,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5588,10 +5616,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/sl/LC_MESSAGES/djangojs.mo b/conf/locale/sl/LC_MESSAGES/djangojs.mo index ed69c20889..9a44ae02c8 100644 Binary files a/conf/locale/sl/LC_MESSAGES/djangojs.mo and b/conf/locale/sl/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/sl/LC_MESSAGES/djangojs.po b/conf/locale/sl/LC_MESSAGES/djangojs.po index 363300f5dd..5ea4bd1084 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-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:00+0000\n" "Last-Translator: sarina \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/edx-platform/language/sl/)\n" diff --git a/conf/locale/th/LC_MESSAGES/django.mo b/conf/locale/th/LC_MESSAGES/django.mo index 6e81c6d532..b87ad681e8 100644 Binary files a/conf/locale/th/LC_MESSAGES/django.mo and b/conf/locale/th/LC_MESSAGES/django.mo differ diff --git a/conf/locale/th/LC_MESSAGES/django.po b/conf/locale/th/LC_MESSAGES/django.po index 684567e2b4..51bec36038 100644 --- a/conf/locale/th/LC_MESSAGES/django.po +++ b/conf/locale/th/LC_MESSAGES/django.po @@ -4,18 +4,22 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# J.14 , 2014 +# neelawat , 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: +# J.14 , 2014 # #-#-#-#-# mako.po (edx-platform) #-#-#-#-# # edX community translations have been downloaded from Thai (http://www.transifex.com/projects/p/edx-platform/language/th/) # Copyright (C) 2014 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# J.14 , 2014 # tummykung , 2014 # tummykung , 2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# @@ -33,6 +37,7 @@ # # Translators: # MegaGod , 2014 +# J.14 , 2014 # MegaGod , 2014 # #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# # edX translation file @@ -40,13 +45,14 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# J.14 , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-02-06 03:04+0000\n" -"Last-Translator: nedbat \n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-05-01 03:30+0000\n" +"Last-Translator: J.14 \n" "Language-Team: Thai (http://www.transifex.com/projects/p/edx-platform/language/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -177,6 +183,16 @@ msgstr "" msgid "Enrollment action is invalid" msgstr "" +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." msgstr "" @@ -187,6 +203,13 @@ msgid "" "Try again later." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + #: common/djangoapps/student/views.py msgid "Too many failed login attempts. Try again later." msgstr "" @@ -313,7 +336,7 @@ msgstr "" msgid "Username should only consist of A-Z and 0-9, with no spaces." msgstr "" -#: common/djangoapps/student/views.py +#: common/djangoapps/student/views.py common/djangoapps/student/views.py msgid "Password: " msgstr "" @@ -325,6 +348,22 @@ msgstr "" msgid "Unknown error. Please e-mail us to let us know how it happened." msgstr "" +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + #: common/djangoapps/student/views.py msgid "No inactive user with this e-mail exists" msgstr "" @@ -773,7 +812,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -794,6 +833,10 @@ msgid "" "by that feedback." msgstr "" +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." msgstr "" @@ -806,6 +849,28 @@ msgstr "" msgid "See XML source line {sourcenum}." msgstr "" +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + #: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py msgid "There was a problem with the staff answer to this problem." msgstr "" @@ -900,6 +965,10 @@ msgstr "" msgid "Final Check" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + #: common/lib/xmodule/xmodule/capa_base.py msgid "Warning: The problem has been reset to its initial state!" msgstr "" @@ -932,11 +1001,29 @@ msgstr "" msgid "You must wait at least {wait} seconds between submissions." msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + #. Translators: {msg} will be replaced with a problem's error message. #: common/lib/xmodule/xmodule/capa_base.py msgid "Error: {msg}" msgstr "" +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + #. Translators: 'rescoring' refers to the act of re-submitting a student's #. solution so it can get a new score. #: common/lib/xmodule/xmodule/capa_base.py @@ -986,6 +1073,18 @@ msgstr "" msgid "TBD" msgstr "" +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + #. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: 'Courseware' refers to the tab in the courseware that leads to #. the content of a course @@ -1270,10 +1369,24 @@ msgstr "" msgid "Something wrong with SubRip transcripts file during parsing." msgstr "" +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + #: common/lib/xmodule/xmodule/video_module/video_module.py msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -1701,10 +1814,14 @@ msgstr "" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "" #: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "" @@ -1747,6 +1864,15 @@ msgstr "" msgid "Goals" msgstr "" +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + #: lms/djangoapps/instructor/views/api.py #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" @@ -2034,7 +2160,7 @@ msgstr "" #: lms/djangoapps/instructor/views/tools.py cms/templates/register.html #: lms/templates/dashboard.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/register.html -#: lms/templates/sysadmin_dashboard.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "Full Name" @@ -2261,37 +2387,6 @@ msgstr "" msgid "Add to profile" msgstr "" -#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# -#. Translators: "Peer Grading" is a panel where peer can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#. Translators: "Staff Grading" is a panel where instructor can grade student- -#. provided answers. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Staff Grading" -msgstr "" - -#. Translators: "Problems you have submitted" refers to the problems that the -#. currently-logged-in -#. student has provided an answer for. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Problems you have submitted" -msgstr "" - -#. Translators: "Flagged Submissions" refers to student-provided answers to a -#. problem which are -#. marked by instructor or peer graders as 'flagged' potentially -#. inappropriate. -#: lms/djangoapps/open_ended_grading/open_ended_notifications.py -msgid "Flagged Submissions" -msgstr "" - #: lms/djangoapps/open_ended_grading/staff_grading_service.py msgid "" "Could not contact the external grading server. Please contact the " @@ -2391,6 +2486,10 @@ msgstr "" msgid "Trying to add a different currency into the cart" msgstr "" +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + #: lms/djangoapps/shoppingcart/models.py msgid "" "Please visit your dashboard to see your new" @@ -3083,6 +3182,7 @@ msgstr "" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -3149,6 +3249,7 @@ msgstr "" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/modal/_modal-settings-language.html #: lms/templates/modal/accessible_confirm.html msgid "Close" @@ -3690,35 +3791,11 @@ msgstr "" msgid "close" msgstr "" -#: cms/templates/component.html cms/templates/manage_users.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/component.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: cms/templates/overview.html lms/templates/problem.html -#: lms/templates/word_cloud.html -#: lms/templates/combinedopenended/openended/open_ended.html -#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html -#: lms/templates/verify_student/face_upload.html -msgid "Save" -msgstr "" - -#: cms/templates/component.html cms/templates/index.html -#: cms/templates/manage_users.html cms/templates/overview.html -#: cms/templates/overview.html cms/templates/overview.html -#: lms/templates/discussion/_inline_new_post.html -#: lms/templates/discussion/_new_post.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/_underscore_templates.html -#: lms/templates/discussion/mustache/_inline_discussion.mustache -#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache -#: lms/templates/verify_student/face_upload.html -msgid "Cancel" +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." msgstr "" #. Translators: this is a verb describing the action of viewing more details @@ -3736,6 +3813,19 @@ msgstr "" msgid "Course Number" msgstr "" +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" @@ -3760,23 +3850,41 @@ msgstr "" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html #: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" msgstr "" +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" msgstr "" +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" msgstr "" #: cms/templates/register.html lms/templates/register-shib.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "Public Username" msgstr "" @@ -3817,14 +3925,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 "" @@ -4032,12 +4132,11 @@ msgstr "" #: lms/templates/contact.html msgid "" -"If you have a general question about {platform_name} please email {contact_email}. To see if your question" -" has already been answered, visit our {faq_link_start}FAQ " -"page{faq_link_end}. You can also join the discussion on our " -"{fb_link_start}facebook page{fb_link_end}. Though we may not have a chance " -"to respond to every email, we take all feedback into consideration." +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." msgstr "" #: lms/templates/contact.html @@ -4048,12 +4147,11 @@ msgstr "" msgid "" "If you have suggestions/feedback about the overall {platform_name} platform," " or are facing general technical issues with the platform (e.g., issues with" -" email addresses and passwords), you can reach us at {tech_email}. For technical questions, " -"please make sure you are using a current version of Firefox or Chrome, and " -"include browser and version in your e-mail, as well as screenshots or other " -"pertinent details. If you find a bug or other issues, you can reach us at " -"the following: {bugs_email}." +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." msgstr "" #: lms/templates/contact.html @@ -4094,11 +4192,47 @@ msgstr "" msgid "Please verify your new email" msgstr "" +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "edit" msgstr "" +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" msgstr "" @@ -4207,6 +4341,10 @@ msgstr "" msgid "Unregister" msgstr "" +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" msgstr "" @@ -4262,18 +4400,6 @@ msgstr "" msgid "Debug: " msgstr "" -#: lms/templates/enroll_students.html -msgid "foo" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "bar" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "biff" -msgstr "" - #: lms/templates/extauth_failure.html lms/templates/extauth_failure.html msgid "External Authentication failed" msgstr "" @@ -4381,14 +4507,10 @@ msgstr "" msgid "Email is incorrect." msgstr "" -#: lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html msgid "{platform_name} Help" msgstr "" -#: lms/templates/help_modal.html -msgid "{span_start}{platform_name}{span_end} Help" -msgstr "" - #: lms/templates/help_modal.html msgid "" "For questions on course lectures, homework, tools, or materials for " @@ -4431,7 +4553,8 @@ msgstr "" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html #: lms/templates/register-shib.html lms/templates/register.html -#: lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html msgid "E-mail" msgstr "" @@ -4658,10 +4781,39 @@ msgstr "" msgid "Remember me" msgstr "" +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4671,6 +4823,14 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" msgstr "" @@ -4714,15 +4874,15 @@ msgid "" msgstr "" #: lms/templates/module-error.html -msgid "There has been an error on the {platform_name} servers" +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" msgstr "" #: lms/templates/module-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to report any " -"problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." msgstr "" #: lms/templates/module-error.html @@ -4774,6 +4934,10 @@ msgstr "" msgid "Log Out" msgstr "" +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + #: lms/templates/navigation.html msgid "How it Works" msgstr "" @@ -4831,8 +4995,9 @@ msgstr "" #: lms/templates/provider_login.html msgid "" -"Please note that we will be sending your user name, email, and full name to " -"this third party site." +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." msgstr "" #: lms/templates/provider_login.html @@ -4889,10 +5054,12 @@ msgid "Account Acknowledgements" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Terms of Service{link_end}" msgstr "" #: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html msgid "I agree to the {link_start}Honor Code{link_end}" msgstr "" @@ -4973,6 +5140,26 @@ msgstr "" msgid "Register below to create your {platform_name} account" msgstr "" +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " msgstr "" @@ -5063,33 +5250,17 @@ msgid "Next" msgstr "" #: lms/templates/signup_modal.html -msgid "Sign Up for {span_start}{platform_name}{span_end}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "E-mail *" +msgid "Sign Up for {platform_name}" msgstr "" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" msgstr "" -#: lms/templates/signup_modal.html -msgid "Password *" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Public Username *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname (shown on forums)" msgstr "" -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. Your Name (for certificates)" msgstr "" @@ -5098,6 +5269,10 @@ msgstr "" msgid "Welcome {name}" msgstr "" +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + #: lms/templates/signup_modal.html msgid "Ed. Completed" msgstr "" @@ -5114,14 +5289,6 @@ msgstr "" msgid "Goals in signing up for {platform_name}" msgstr "" -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Terms of Service{link_end}*" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "I agree to the {link_start}Honor Code{link_end}*" -msgstr "" - #: lms/templates/signup_modal.html msgid "Already have an account?" msgstr "" @@ -5161,7 +5328,7 @@ msgid "Tag" msgstr "" #: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):  " +msgid "Optional tag (eg \"done\" or \"broken\"):" msgstr "" #: lms/templates/staff_problem_info.html @@ -5206,43 +5373,11 @@ msgstr "" msgid "Textbook Navigation" msgstr "" -#: lms/templates/static_pdfbook.html -msgid "Page:" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom Out" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/static_pdfbook.html -msgid "Zoom In" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Automatic Zoom" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Actual Size" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Fit Page" -msgstr "" - -#: lms/templates/static_pdfbook.html -msgid "Full Width" -msgstr "" - -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Previous page" msgstr "" -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +#: lms/templates/staticbook.html msgid "Next page" msgstr "" @@ -5491,8 +5626,8 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" +#: lms/templates/video.html +msgid "Download Handout" msgstr "" #: lms/templates/word_cloud.html @@ -5728,6 +5863,10 @@ msgstr "" msgid "Register for {course.display_number_with_default}" msgstr "" +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Overview" msgstr "" @@ -5736,6 +5875,20 @@ msgstr "" msgid "Share with friends and family!" msgstr "" +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + #: lms/templates/courseware/course_about.html msgid "Classes Start" msgstr "" @@ -5779,17 +5932,11 @@ msgstr "" msgid "Explore free courses from {university_name}." msgstr "" -#: lms/templates/courseware/courseware-error.html -msgid "" -"There has been an error on the {span_start}{platform_name}{span_end} servers" -msgstr "" - #: lms/templates/courseware/courseware-error.html msgid "" "We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at '{tech_support_email}' to report any" -" problems or downtime." +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." msgstr "" #: lms/templates/courseware/courseware.html @@ -5919,6 +6066,10 @@ msgstr "" msgid "{course_number} Course Info" msgstr "" +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" msgstr "" @@ -5939,12 +6090,12 @@ msgid "Instructor Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -msgid "Try New Beta Dashboard" +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" msgstr "" #: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Edit Course In Studio" +msgid "Try New Beta Dashboard" msgstr "" #: lms/templates/courseware/instructor_dashboard.html @@ -6279,12 +6430,6 @@ msgstr "" msgid "Count of Students that Opened a Subsection" msgstr "" -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/courseware/instructor_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Loading..." -msgstr "" - #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" @@ -6398,10 +6543,18 @@ msgstr "" msgid "Course Progress" msgstr "" +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" msgstr "" +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" msgstr "" @@ -6574,6 +6727,13 @@ msgid "" " of" msgstr "" +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" msgstr "" @@ -6692,6 +6852,10 @@ msgstr "" msgid "Show Discussion" msgstr "" +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" msgstr "" @@ -7052,24 +7216,14 @@ msgstr "" msgid "User Profile" msgstr "" -#: lms/templates/discussion/user_profile.html -msgid "Active Threads" +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Loading content" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -#: lms/templates/discussion/mustache/_profile_thread.mustache -msgid "View discussion" -msgstr "" - -#: lms/templates/discussion/mustache/_inline_thread.mustache -#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache -msgid "Hide discussion" +msgid "Collapse discussion" msgstr "" #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7081,6 +7235,14 @@ msgstr "" msgid "…" msgstr "" +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " @@ -7120,10 +7282,19 @@ msgid "" "by a member of the course staff." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." msgstr "" +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt @@ -7204,6 +7375,10 @@ msgid "" "{course_about_url} to join the course." msgstr "" +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" msgstr "" @@ -7214,10 +7389,6 @@ msgid "" "course staff. The course should now appear on your {site_name} dashboard." msgstr "" -#: lms/templates/emails/enroll_email_enrolledmessage.txt -msgid "To start accessing course materials, please visit {course_url}" -msgstr "" - #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" @@ -7641,7 +7812,8 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Enter email addresses separated by new lines or commas." +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7652,9 +7824,10 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses" +msgid "Email Addresses/Usernames" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Auto Enroll" msgstr "" @@ -7672,6 +7845,10 @@ msgid "" "once they make an account." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" @@ -7693,7 +7870,7 @@ msgid "Unenroll" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Testers" +msgid "Batch Beta Tester Addition" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -7702,6 +7879,16 @@ msgid "" "be enrolled as a beta tester." msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" msgstr "" @@ -7833,6 +8020,27 @@ msgstr "" msgid "Count of Students Opened a Subsection" msgstr "" +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" @@ -8064,6 +8272,12 @@ msgid "" "{end_p_tag}\n" msgstr "" +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + #: lms/templates/peer_grading/peer_grading.html msgid "" "Here are a list of problems that need to be peer graded for this course." @@ -8300,6 +8514,16 @@ msgstr "" msgid "Register for [Course Name] | Receipt (Order" msgstr "" +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" msgstr "" @@ -8539,20 +8763,18 @@ msgid "In the Press" msgstr "" #: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" +msgid "Currently the {platform_name} servers are down" msgstr "" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any " -"problems or downtime." +"Please email us at {tech_support_email} to report any problems or downtime." msgstr "" #: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" +msgid "There has been a 500 error on the {platform_name} servers" msgstr "" #: lms/templates/static_templates/server-error.html @@ -8562,7 +8784,7 @@ msgid "" msgstr "" #: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" +msgid "Currently the {platform_name} servers are overloaded" msgstr "" #: lms/templates/university_profile/edge.html @@ -8933,6 +9155,8 @@ msgid "Complete your other re-verifications" msgstr "" #: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" msgstr "" @@ -8973,13 +9197,7 @@ msgid "Failed" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "" -"Don't want to re-verify right now? {a_start}Return to where you left " -"off{a_end}" -msgstr "" - -#: lms/templates/verify_student/midcourse_reverify_dash.html -msgid "{a_start}Return to where you left off{a_end}" +msgid "Don't want to re-verify right now?" msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9670,19 +9888,16 @@ msgid "" "immediately visible to other course team members." msgstr "" -#: cms/templates/component.html -msgid "Editor" -msgstr "" - #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Duplicate this component" msgstr "" -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/component.html msgid "Delete this component" msgstr "" @@ -9696,23 +9911,40 @@ msgstr "" msgid "Container" msgstr "" -#: cms/templates/container.html cms/templates/studio_vertical_wrapper.html -msgid "No Actions" +#: cms/templates/container.html +msgid "This page has no content yet." msgstr "" -#: cms/templates/container.html +#: cms/templates/container.html cms/templates/container.html msgid "Publishing Status" msgstr "" #: cms/templates/container.html -msgid "This content is published with unit {unit_name}." +msgid "Published" msgstr "" #: cms/templates/container.html msgid "" -"You can view course components that contain other components on this page. " -"In the case of experiment blocks, this allows you to confirm that you have " -"properly configured your experiment groups." +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html @@ -9747,6 +9979,13 @@ msgstr "" msgid "View Live" msgstr "" +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + #: cms/templates/edit-tabs.html msgid "Show this page" msgstr "" @@ -11381,6 +11620,10 @@ msgstr "" msgid "Expand or Collapse" msgstr "" +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + #: cms/templates/textbooks.html msgid "You have unsaved changes. Do you really want to leave this page?" msgstr "" @@ -11469,15 +11712,15 @@ msgid "" msgstr "" #: cms/templates/unit.html -msgid "This unit is scheduled to be released to students" +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html -msgid "on {date}" -msgstr "" - -#: cms/templates/unit.html -msgid "with the subsection {link_start}{name}{link_end}" +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" msgstr "" #: cms/templates/unit.html diff --git a/conf/locale/th/LC_MESSAGES/djangojs.mo b/conf/locale/th/LC_MESSAGES/djangojs.mo index a712cd3550..d2057f7515 100644 Binary files a/conf/locale/th/LC_MESSAGES/djangojs.mo and b/conf/locale/th/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/th/LC_MESSAGES/djangojs.po b/conf/locale/th/LC_MESSAGES/djangojs.po index 2be484ef09..d30aef8701 100644 --- a/conf/locale/th/LC_MESSAGES/djangojs.po +++ b/conf/locale/th/LC_MESSAGES/djangojs.po @@ -4,6 +4,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# J.14 , 2014 # tummykung , 2013 # tummykung , 2013 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# @@ -12,13 +13,14 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# J.14 , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-03-31 09:26-0400\n" -"PO-Revision-Date: 2014-03-19 20:22+0000\n" -"Last-Translator: sarina \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-05-02 22:40+0000\n" +"Last-Translator: J.14 \n" "Language-Team: Thai (http://www.transifex.com/projects/p/edx-platform/language/th/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,6 +30,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js #: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js #: common/static/coffee/src/discussion/utils.js msgid "OK" msgstr "" @@ -36,6 +39,8 @@ msgstr "" #: cms/static/js/base.js cms/static/js/views/asset.js #: cms/static/js/views/course_info_update.js #: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js #: lms/static/admin/js/admin/DateTimeShortcuts.js #: lms/static/admin/js/admin/DateTimeShortcuts.js msgid "Cancel" @@ -330,6 +335,8 @@ msgstr "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js #: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js #: common/static/coffee/src/discussion/views/response_comment_view.js msgid "Sorry" msgstr "" @@ -386,15 +393,13 @@ msgid "vote" msgstr "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "" -"%(voteNum)s%(startSrSpan)s vote (click to remove your vote)%(endSrSpan)s" -msgid_plural "" -"%(voteNum)s%(startSrSpan)s votes (click to remove your vote)%(endSrSpan)s" +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" msgstr[0] "" #: common/static/coffee/src/discussion/views/discussion_content_view.js -msgid "%(voteNum)s%(startSrSpan)s vote (click to vote)%(endSrSpan)s" -msgid_plural "%(voteNum)s%(startSrSpan)s votes (click to vote)%(endSrSpan)s" +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" msgstr[0] "" #: common/static/coffee/src/discussion/views/discussion_thread_list_view.js @@ -454,6 +459,11 @@ msgstr "" msgid "Pin Thread" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + #: common/static/coffee/src/discussion/views/discussion_thread_view.js msgid "We had some trouble loading responses. Please reload the page." msgstr "" @@ -488,6 +498,10 @@ msgstr "" msgid "Are you sure you want to delete this post?" msgstr "" +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" msgstr "" @@ -860,9 +874,10 @@ msgid "" "beta tester." msgstr "" -#. Translators: A list of email addresses appears after this sentence; +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "Could not find users associated with the following email addresses:" +msgid "Could not find users associated with the following identifiers:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -870,7 +885,7 @@ msgid "Error enrolling/unenrolling users." msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js -msgid "The following email addresses are invalid:" +msgid "The following email addresses and/or usernames are invalid:" msgstr "" #: lms/static/coffee/src/instructor_dashboard/membership.js @@ -1204,15 +1219,16 @@ msgid "(Show)" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Hyperlink

http://example.com/ \"optional title\"

" +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" msgstr "" #: lms/static/js/Markdown.Editor.js -msgid "" -"

Insert Image (upload file or type " -"url)

http://example.com/images/diagram.jpg \"optional " -"title\"

" +msgid "Insert Image (upload file or type url)" msgstr "" #: lms/static/js/Markdown.Editor.js @@ -1322,18 +1338,13 @@ msgstr "" msgid "Studio's having trouble saving your work" msgstr "" -#: cms/static/coffee/src/views/module_edit.js -msgid "Editing: %s" -msgstr "" - -#: cms/static/coffee/src/views/module_edit.js #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js #: cms/static/coffee/src/views/unit.js #: cms/static/coffee/src/xblock/cms.runtime.v1.js -#: cms/static/js/models/section.js cms/static/js/views/asset.js -#: cms/static/js/views/course_info_handout.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js #: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js -#: cms/static/js/views/overview.js.c +#: cms/static/js/views/xblock_editor.js msgid "Saving…" msgstr "" @@ -1349,6 +1360,7 @@ msgstr "" #: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js #: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js msgid "Deleting…" msgstr "" @@ -1356,19 +1368,19 @@ msgstr "" msgid "Adding…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Duplicating…" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Delete this component?" msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Deleting this component is permanent and cannot be undone." msgstr "" -#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js msgid "Yes, delete this component" msgstr "" @@ -1515,6 +1527,10 @@ msgstr "" msgid "Upload a new PDF to “<%= name %>”" msgstr "" +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + #: cms/static/js/views/edit_textbook.js #: cms/static/js/views/overview_assignment_grader.js msgid "Saving" @@ -1530,6 +1546,10 @@ msgid "" "extension." msgstr "" +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + #: cms/static/js/views/overview.js msgid "Collapse All Sections" msgstr "" @@ -1591,6 +1611,10 @@ msgstr "" msgid "Deleting" msgstr "" +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + #: cms/static/js/views/uploads.js msgid "We're sorry, there was an error" msgstr "" @@ -1620,6 +1644,26 @@ msgstr "" msgid "Your changes have been saved." msgstr "" +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + #: cms/static/js/views/settings/advanced.js msgid "" "Your changes will not take effect until you save your progress. Take care " @@ -1644,3 +1688,13 @@ msgstr "" #: cms/static/js/views/settings/main.js msgid "Files must be in JPEG or PNG format." msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/tr_TR/LC_MESSAGES/django.mo b/conf/locale/tr_TR/LC_MESSAGES/django.mo index 74fc6d99b5..c3d400672c 100644 Binary files a/conf/locale/tr_TR/LC_MESSAGES/django.mo and b/conf/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/conf/locale/tr_TR/LC_MESSAGES/django.po b/conf/locale/tr_TR/LC_MESSAGES/django.po index cfcf2ae289..cfa3c1b9e5 100644 --- a/conf/locale/tr_TR/LC_MESSAGES/django.po +++ b/conf/locale/tr_TR/LC_MESSAGES/django.po @@ -73,7 +73,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-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" @@ -851,8 +851,8 @@ msgid "unanswered" msgstr "cevaplanmamış" #: common/lib/capa/capa/inputtypes.py -msgid "queued" -msgstr "sıraya eklendi" +msgid "processing" +msgstr "" #: common/lib/capa/capa/inputtypes.py msgid "" @@ -1468,6 +1468,16 @@ msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" "Youtube URL'i veya web'de herhangi bir yerde bulunan dosyaya bir bağlantı." +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Navigasyon" @@ -5190,10 +5200,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "Dış kaynak" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "Kaynağı yeni bir pencerede görüntüleyin" @@ -5205,6 +5229,10 @@ msgstr "" "başlama_url'ini veriniz. \"Değiştir\" butonuna basınız ve gerekli alanları " "doldurunuz." +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -6048,10 +6076,6 @@ msgstr "Video indir" msgid "Download transcript" msgstr "Altyazı indir" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "{file_format}" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/tr_TR/LC_MESSAGES/djangojs.mo b/conf/locale/tr_TR/LC_MESSAGES/djangojs.mo index 8d36c3a5f3..e4ae8f9ef3 100644 Binary files a/conf/locale/tr_TR/LC_MESSAGES/djangojs.mo and b/conf/locale/tr_TR/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/tr_TR/LC_MESSAGES/djangojs.po b/conf/locale/tr_TR/LC_MESSAGES/djangojs.po index 45518fbc3e..412ad45f18 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-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 17:38+0000\n" "Last-Translator: brscvs \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/edx-platform/language/tr_TR/)\n" diff --git a/conf/locale/uk/LC_MESSAGES/django.mo b/conf/locale/uk/LC_MESSAGES/django.mo index cb67935c84..4239d276a8 100644 Binary files a/conf/locale/uk/LC_MESSAGES/django.mo and b/conf/locale/uk/LC_MESSAGES/django.mo differ diff --git a/conf/locale/uk/LC_MESSAGES/django.po b/conf/locale/uk/LC_MESSAGES/django.po index 54fdcfad68..965d5d8ccb 100644 --- a/conf/locale/uk/LC_MESSAGES/django.po +++ b/conf/locale/uk/LC_MESSAGES/django.po @@ -18,6 +18,7 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# junnyml , 2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2014 edX @@ -40,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-04-18 01:40+0000\n" "Last-Translator: nedbat \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/edx-platform/language/uk/)\n" @@ -802,7 +803,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1367,6 +1368,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "" @@ -4776,10 +4787,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4789,6 +4814,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5588,10 +5617,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/uk/LC_MESSAGES/djangojs.mo b/conf/locale/uk/LC_MESSAGES/djangojs.mo index 24dd482e47..7c51aecbde 100644 Binary files a/conf/locale/uk/LC_MESSAGES/djangojs.mo and b/conf/locale/uk/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/uk/LC_MESSAGES/djangojs.po b/conf/locale/uk/LC_MESSAGES/djangojs.po index 69dab0963f..7580119b6a 100644 --- a/conf/locale/uk/LC_MESSAGES/djangojs.po +++ b/conf/locale/uk/LC_MESSAGES/djangojs.po @@ -4,6 +4,8 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# junnyml , 2014 +# marichkafox , 2014 # olexiim , 2014 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# # edX translation file. @@ -16,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/edx-platform/language/uk/)\n" diff --git a/conf/locale/ur/LC_MESSAGES/django.mo b/conf/locale/ur/LC_MESSAGES/django.mo new file mode 100644 index 0000000000..63c655b177 Binary files /dev/null and b/conf/locale/ur/LC_MESSAGES/django.mo differ diff --git a/conf/locale/ur/LC_MESSAGES/django.po b/conf/locale/ur/LC_MESSAGES/django.po new file mode 100644 index 0000000000..6759d5a6aa --- /dev/null +++ b/conf/locale/ur/LC_MESSAGES/django.po @@ -0,0 +1,12580 @@ +# #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Urdu (http://www.transifex.com/projects/p/edx-platform/language/ur/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Urdu (http://www.transifex.com/projects/p/edx-platform/language/ur/) +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# messages.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2013 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# wiki.po (edx-platform) #-#-#-#-# +# edX translation file +# Copyright (C) 2014 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-04-07 13:46+0000\n" +"Last-Translator: sarina \n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/edx-platform/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 1.3\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Translators: "Open Ended Panel" appears on a tab that, when clicked, opens +#. up a panel that +#. displays information about open-ended problems that a user has submitted or +#. needs to grade +#: cms/djangoapps/contentstore/utils.py common/lib/xmodule/xmodule/tabs.py +msgid "Open Ended Panel" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "Honor Code Certificate" +msgstr "" + +#: common/djangoapps/course_modes/views.py common/djangoapps/student/views.py +msgid "Enrollment is closed" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment mode not supported" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Invalid amount selected." +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "No selected price or selected price is too low." +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Community TA" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Student" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "" +"Your account has been disabled. If you believe this was done in error, " +"please contact us at {link_start}{support_email}{link_end}" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "Disabled Account" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Male" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Female" +msgstr "" + +#. Translators: 'Other' refers to the student's gender +#. Translators: 'Other' refers to the student's level of education +#: common/djangoapps/student/models.py common/djangoapps/student/models.py +msgid "Other" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Doctorate" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Master's or professional degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Bachelor's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Associate's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Secondary/high school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Junior secondary/junior high/middle school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Elementary/primary school" +msgstr "" + +#. Translators: 'None' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "None" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id not specified" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Course id is invalid" +msgstr "" + +#: common/djangoapps/student/views.py +#: lms/templates/courseware/course_about.html +msgid "Course is full" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You are not enrolled in this course" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Enrollment action is invalid" +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like +#. Google or LinkedIn). +#: common/djangoapps/student/views.py +msgid "" +"There is no {platform_name} account associated with your {provider_name} " +"account. Please use your {platform_name} credentials or pick another " +"provider." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "There was an error receiving your login information. Please email us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has been temporarily locked due to excessive login failures. " +"Try again later." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"Your password has expired due to password policy on this account. You must " +"reset your password before you can log in again. Please click the Forgot " +"Password\" link on this page to reset your password before logging in again." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Too many failed login attempts. Try again later." +msgstr "" + +#: common/djangoapps/student/views.py lms/templates/provider_login.html +msgid "Email or password is incorrect." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"This account has not been activated. We have sent another activation " +"message. Please check your e-mail for the activation instructions." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please enter a username" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Please choose an option" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "User with username {} does not exist" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully disabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Successfully reenabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unexpected account status" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Public Username '{username}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with the Email '{email}' already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Error (401 {field}). E-mail us." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username must be minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A valid password is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Accepting Terms of Service is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Agreeing to the Honor Code is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Email cannot be more than {0} characters long" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail is required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Username should only consist of A-Z and 0-9, with no spaces." +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Password: " +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Could not send activation e-mail." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unknown error. Please e-mail us to let us know how it happened." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are re-using a password that you have used recently. You must have {0} " +"distinct password(s) before reusing a previous password." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "" +"You are resetting passwords too frequently. Due to security policies, {0} " +"day(s) must elapse between password resets" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Password reset unsuccessful" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "No inactive user with this e-mail exists" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Unable to send reactivation email" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Invalid password" +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Valid e-mail address required." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "An account with this e-mail already exists." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Old email is the same as the new email." +msgstr "" + +#: common/djangoapps/student/views.py +msgid "Name required" +msgstr "" + +#: common/djangoapps/student/views.py common/djangoapps/student/views.py +msgid "Invalid ID" +msgstr "" + +#. Translators: the translation for "LONG_DATE_FORMAT" must be a format +#. string for formatting dates in a long form. For example, the +#. American English form is "%A, %B %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "LONG_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "DATE_TIME_FORMAT" must be a format +#. string for formatting dates with times. For example, the American +#. English form is "%b %d, %Y at %H:%M". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "DATE_TIME_FORMAT" +msgstr "" + +#. Translators: the translation for "SHORT_DATE_FORMAT" must be a +#. format string for formatting dates in a brief form. For example, +#. the American English form is "%b %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "SHORT_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "TIME_FORMAT" must be a format +#. string for formatting times. For example, the American English +#. form is "%H:%M:%S". See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "TIME_FORMAT" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "AM" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "PM" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Monday Februrary 10, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Monday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Tuesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Wednesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Thursday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Friday Februrary 14, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Friday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Saturday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Sunday" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jan 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Feb 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Mar 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Apr 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "May 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "May" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jun 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jul 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Aug 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Sep 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Oct 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Nov 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Dec 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "January 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "January" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "February 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "February" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "March 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "March" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "April 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "April" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "May 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "May" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "June 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "June" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "July 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "July" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "August 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "August" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "September 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "September" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "October 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "October" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "November 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "November" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "December 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "December" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Invalid Length ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or more" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must be {0} characters or less" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Must be more complex ({0})" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more uppercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more lowercase characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more digits" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more punctuation characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more non ascii characters" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "must contain {0} or more unique words" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Too similar to a restricted dictionary word." +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +msgid "Cannot rescore problems with possible file submissions" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "correct" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incorrect" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incomplete" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py +msgid "unanswered" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "processing" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your file(s) have been submitted. As soon as your submission is graded, this" +" message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your answer has been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Submitted. As soon as a response is returned, this message will be replaced " +"by that feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Error {err} in evaluating hint function {hintfn}." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "(Source code line unavailable)" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "See XML source line {sourcenum}." +msgstr "" + +#. Translators: 'unmask_name' is a method name and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "unmask_name called on response that is not masked" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py +msgid "There was a problem with the staff answer to this problem." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{student_answer}' as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use variables ({bad_variables}) in numerical problems." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "factorial function evaluated outside its domain:'{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid math syntax: '{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use complex numbers in range tolerance problems" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: complex boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: empty boundary." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "CustomResponse: check function returned an invalid dictionary!" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"Unable to deliver your submission to grader (Reason: {error_msg}). Please " +"try again later." +msgstr "" + +#. Translators: 'grader' refers to the edX automatic code grader. +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/capa/capa/responsetypes.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Invalid grader reply. Please contact the course staff." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: {bad_input} not permitted in answer." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "" +"factorial function not permitted in answer for this problem. Provided answer" +" was: {bad_input}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid input: Could not parse '{bad_input}' as a formula" +msgstr "" + +#. Translators: 'SchematicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "The Staff answer could not be interpreted as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Could not interpret '{given_answer}' as a number." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Final Check" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Checking..." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Warning: The problem has been reset to its initial state!" +msgstr "" + +#. Translators: Following this message, there will be a bulleted list of +#. items. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"The problem's state was corrupted by an invalid submission. The submission " +"consisted of:" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "If this error persists, please contact the course staff." +msgstr "" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem is closed." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be reset before it can be checked again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You must wait at least {wait} seconds between submissions." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + +#. Translators: {msg} will be replaced with a problem's error message. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Error: {msg}" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_hour} hour" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_minute} minute" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "{num_second} second" +msgstr "" + +#. Translators: 'rescoring' refers to the act of re-submitting a student's +#. solution so it can get a new score. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem's definition does not support rescoring." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be answered before it can be graded again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem needs to be reset prior to save." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Your answers have been saved." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Your answers have been saved but not graded. Click 'Check' to grade them." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Refresh the page and make an attempt before resetting." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"We're sorry, there was an error with processing your request. Please try " +"reloading your page and trying again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"The state of this problem has changed since you loaded this page. Please " +"refresh your page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "General" +msgstr "" + +#. Translators: TBD stands for 'To Be Determined' and is used when a course +#. does not yet have an announced start date. +#: common/lib/xmodule/xmodule/course_module.py +msgid "TBD" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: 'Courseware' refers to the tab in the courseware that leads to +#. the content of a course +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/courseware/courseware-error.html +msgid "Courseware" +msgstr "" + +#. Translators: "Course Info" is the name of the course's information and +#. updates page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Course Info" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Progress" is the name of the student's course progress page +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/peer_grading/peer_grading.html +msgid "Progress" +msgstr "" + +#. Translators: "Wiki" is the name of the course's wiki page +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/course_wiki/views.py +#: lms/templates/wiki/base.html +msgid "Wiki" +msgstr "" + +#. Translators: "Discussion" is the title of the course forum page +#. Translators: 'Discussion' refers to the tab in the courseware that leads to +#. the discussion forums +#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py +msgid "Discussion" +msgstr "" + +#: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Textbooks" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Staff grading" appears on a tab that allows +#. staff to view open-ended problems that require staff grading +#: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/instructor/staff_grading.html +msgid "Staff grading" +msgstr "" + +#. Translators: "Peer grading" appears on a tab that allows +#. students to view open-ended problems that require grading +#: common/lib/xmodule/xmodule/tabs.py +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 +msgid "Syllabus" +msgstr "" + +#. Translators: 'Instructor' appears on the tab that leads to the instructor +#. dashboard, which is +#. a portal where an instructor can get data and perform various actions on +#. their course +#: common/lib/xmodule/xmodule/tabs.py +msgid "Instructor" +msgstr "" + +#. Translators: "Self" is used to denote an openended response that is self- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Self" +msgstr "" + +#. Translators: "AI" is used to denote an openended response that is machine- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "AI" +msgstr "" + +#. Translators: "Peer" is used to denote an openended response that is peer- +#. graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Peer" +msgstr "" + +#. Translators: "Not started" is used to communicate to a student that their +#. response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Not started." +msgstr "" + +#. Translators: "Being scored." is used to communicate to a student that their +#. response +#. are in the process of being scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Being scored." +msgstr "" + +#. Translators: "Scoring finished" is used to communicate to a student that +#. their response +#. have been scored, but the full scoring process is not yet complete +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scoring finished." +msgstr "" + +#. Translators: "Complete" is used to communicate to a student that their +#. openended response has been fully scored +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Complete." +msgstr "" + +#. Translators: "Scored rubric" appears to a user as part of a longer +#. string that looks something like: "Scored rubric from grader 1". +#. "Scored" is an adjective that modifies the noun "rubric". +#. That longer string appears when a user is viewing a graded rubric +#. returned from one of the graders of their openended response problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "Scored rubric" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "" +"You have attempted this question {number_of_student_attempts} times. You are" +" only allowed to attempt it {max_number_of_attempts} times." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_modulev1.py +msgid "The problem state got out-of-sync. Please try reloading the page." +msgstr "" + +#. Translators: "Self-Assessment" refers to the self-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Self-Assessment" +msgstr "" + +#. Translators: "Peer-Assessment" refers to the peer-assessed mode of +#. openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Peer-Assessment" +msgstr "" + +#. Translators: "Instructor-Assessment" refers to the instructor-assessed mode +#. of openended evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "Instructor-Assessment" +msgstr "" + +#. Translators: "AI-Assessment" refers to the machine-graded mode of openended +#. evaluation +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/combined_open_ended_rubric.py +msgid "AI-Assessment" +msgstr "" + +#. Translators: 'tag' is one of 'feedback', 'submission_id', +#. 'grader_id', or 'score'. They are categories that a student +#. responds to when filling out a post-assessment survey +#. of his or her grade from an openended problem. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Could not find needed tag {tag_name} in the survey responses. Please try " +"submitting again." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "There was an error saving your feedback. Please contact course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Couldn't submit feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your feedback." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Unable to save your feedback. Please try again later." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Successfully saved your submission." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Unable to submit your submission to the grader. Please try again later." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error getting feedback from grader." +msgstr "" + +#. Translators: the `grader` refers to the grading service open response +#. problems +#. are sent to, either to be machine-graded, peer-graded, or instructor- +#. graded. +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "No feedback available from grader." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "Error handling action. Please try again." +msgstr "" + +#. Translators: this string appears once an openended response +#. is submitted but before it has been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: "Not started" communicates to a student that their response +#. has not yet been graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Not started" +msgstr "" + +#. Translators: "In progress" communicates to a student that their response +#. is currently in the grading process +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "In progress" +msgstr "" + +#. Translators: "Done" communicates to a student that their response +#. has been fully graded +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "Done" +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We could not find a file in your submission. Please try choosing a file or " +"pasting a URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/openendedchild.py +msgid "" +"We are having trouble saving your file. Please try another file or paste a " +"URL to your file into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/open_ended_grading_classes/self_assessment_module.py +msgid "Error saving your score. Please notify course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Can't receive transcripts from Youtube for {youtube_id}. Status code: " +"{status_code}." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Can't find any transcripts on the Youtube service." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "We support only SubRip (*.srt) transcripts format." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "" +"Something wrong with SubRip transcripts file during parsing. Inner message " +"is {error_message}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Something wrong with SubRip transcripts file during parsing." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "A YouTube URL or a link to a file hosted anywhere on the web." +msgstr "" + +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Navigation" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "About these documents" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +msgid "Index" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Search" +msgstr "" + +#: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/copyright.html +msgid "Copyright" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: " +"{grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "students" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "questions" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{num_students} student(s) opened Subsection {subsection_num}: " +"{subsection_name}" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "" +"{problem_info_x} {problem_info_n} - {count_grade} {students} " +"({percent:.0f}%: {grade:.0f}/{max_grade:.0f} {questions})" +msgstr "" + +#. Translators: this string includes wiki markup. Leave the ** and the _ +#. alone. +#: lms/djangoapps/course_wiki/views.py +msgid "This is the wiki for **{organization}**'s _{course_name}_." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Course page automatically created." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Welcome to the edX Wiki" +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Visit a course wiki to add an article." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} does not exist." +msgstr "" + +#: lms/djangoapps/courseware/views.py +msgid "User {username} has never accessed problem {location}" +msgstr "" + +#: lms/djangoapps/courseware/features/video.py lms/templates/video.html +msgid "ERROR: No playable video sources found!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Path {0} doesn't exist, please create it, or configure a different path with" +" GIT_REPO_DIR" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Non usable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to get git log" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "git clone or pull failed!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to run import command." +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "The underlying module store does not support import." +msgstr "" + +#. Translators: This is an error message when they ask for a +#. particular version of a git repository and that version isn't +#. available from the remote source they specified +#: lms/djangoapps/dashboard/git_import.py +msgid "The specified remote branch is not available." +msgstr "" + +#. Translators: Error message shown when they have asked for a git +#. repository branch, a specific version within a repository, that +#. doesn't exist, or there is a problem changing to it. +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to switch to specified branch. Please check your branch name." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}, error {1}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed in authenticating {0}\n" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "fixed password" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "All ok!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Must provide full name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email must end in" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed - email {0} already exists as external_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Password must be supplied if not using certificates" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email address required (not username)" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Oops, failed to create user {0}, IntegrityError" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "User {0} created successfully!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with email address {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Cannot find user with username {0} - {1}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted user {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Statistic" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Value" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Site statistics" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Total number of users" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Courses loaded in the modulestore" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +#: lms/templates/tracking_log.html +msgid "username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "email" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Repair Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Create User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Delete User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "The git repo location should end with '.git', and be a valid url" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Added Course" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Refusing to import. GIT_IMPORT_WITH_XMLMODULESTORE is not turned on, and it " +"is generally not safe to import into an XMLModuleStore with multithreaded. " +"We recommend you enable the MongoDB based module store instead, unless this " +"is a development environment." +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "" +"The course {0} already exists in the data directory! (reloading anyway)" +msgstr "" + +#. Translators: unable to download the course content from +#. the source git repository. Clone occurs if this is brand +#. new, and pull is when it is being updated from the +#. source. +#: lms/djangoapps/dashboard/sysadmin.py +msgid "" +"Unable to clone or pull repository. Please check your url. Output was: {0!r}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Failed to clone repository to {0}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Successfully switched to branch: {branch_name}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Loaded course {0} {1}
Errors:" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: cms/templates/index.html cms/templates/settings.html +msgid "Course Name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Directory/ID" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Git Commit" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Change" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Editor" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Information about all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Error - cannot get course with ID {0}
{1}
" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "course_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# enrolled" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# staff" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "instructors" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Enrollment information for all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "role" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "full_name" +msgstr "" + +#: lms/djangoapps/dashboard/management/commands/git_add_course.py +msgid "" +"Import the specified git repository and optional branch into the modulestore" +" and optionally specified directory." +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with email address" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Cannot find user with username" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Failed in authenticating" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Unable to clone or pull repository" +msgstr "" + +#: lms/djangoapps/dashboard/tests/test_sysadmin.py +msgid "Error - cannot get course with ID" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Re-open thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/mustache_helpers.py +msgid "Close thread" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Title can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Body can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Comment level too deep" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "allowed file types are '%(file_types)s'" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "maximum upload file size is %(file_size)sK" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "" +"Error uploading file. Please contact the site administrator. Thank you." +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Good" +msgstr "" + +#: lms/djangoapps/django_comment_client/forum/views.py +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "All Groups" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "User does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Task is already running." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Username" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Name" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Email" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Language" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Location" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Birth Year" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "Gender" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Level of Education" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/templates/register.html +msgid "Mailing Address" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Goals" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "An error occurred while deleting the score." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Complete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Incomplete" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Your grade report is being generated! You can view the status of the " +"generation task in the 'Pending Instructor Tasks' section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"A grade report generation task is already in progress. Check the 'Pending " +"Instructor Tasks' table for the status of the task. When completed, the " +"report will be available for download in the table below." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully changed due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Successfully reset due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Membership" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Student Admin" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Extensions" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Data Download" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/courseware/instructor_dashboard.html +msgid "Analytics" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Course Statistics At A Glance" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found a single student. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find student with that email or username." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Summary Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Raw Grades of students enrolled in {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{problem_url}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for resetting \"{problem_url}\": problem " +"not found." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for resetting \"{url}\": {message}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found module. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname: {url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Deleted student module state for {state}!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to delete module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Module state successfully reset!" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't reset module state for {id}/{url}. " +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to create a background task for rescoring \"{key}\" for student {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to create a background task for rescoring \"{key}\": {id}." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Progress page for username: {username} with email address: {email}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Assignment Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Please enter an assignment name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Invalid assignment name '{name}'" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "External email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades for assignment \"{name}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Staff" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Instructors" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student profile data for course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Found {num} records to dump." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Couldn't find module with that urlname." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Student state for problem {problem}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Beta Testers" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Grades from {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook defined in course metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No remote gradebook url defined in settings.FEATURES" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "No gradebook name defined in course remote_gradebook metadata" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Failed to communicate with gradebook server at {url}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: {err}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Remote gradebook response for {action}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Full name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Roles" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "List of Forum {name}s in course {id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown rolename \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: unknown username \"{username}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" does not have rolename \"{rolename}\", cannot " +"remove" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Removed \"{username}\" from \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Error: user \"{username}\" already has rolename \"{rolename}\", cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Error: user \"{username}\" should first be added as staff before adding as a" +" forum administrator, cannot add" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Added \"{username}\" to \"{course_id}\" forum role = \"{rolename}\"" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "{title} in course {course_id}" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "ID" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +#: lms/djangoapps/instructor/views/tools.py cms/templates/register.html +#: lms/templates/dashboard.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "Full Name" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "edX email" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "Un-enrollment of students" +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\", module " +"\"{problem}\" and student \"{student}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/legacy.py +msgid "" +"Failed to find any background tasks for course \"{course}\" and module " +"\"{problem}\"." +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unable to parse date: " +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Couldn't find module for url: {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor/views/tools.py +msgid "Extended Due Date" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Users with due date extensions for {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unit" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Due date extensions for {0} {1} ({2})" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "rescored" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "reset" +msgstr "" + +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/templates/wiki/plugins/attachments/index.html wiki/models/article.py +msgid "deleted" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "emailed" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks.py +msgid "graded" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#: lms/djangoapps/instructor_task/views.py +msgid "No status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No task_output information found for instructor_task {0}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No message provided" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "Invalid task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No progress status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable task_input information found for instructor_task {0}: {1}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} and {succeeded} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Progress: {action} {succeeded} of {attempted} so far" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find submission to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any students with submissions to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem failed to be {action} for any of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem successfully {action} for {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Problem {action} for {succeeded} of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +msgid "Unable to find any recipients to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message failed to be {action} for any of {attempted} recipients " +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +msgid "Message successfully {action} for {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Message {action} for {succeeded} of {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +msgid "Status: {action} {succeeded} of {attempted}" +msgstr "" + +#. Translators: {skipped} is a count. This message is appended to task +#. progress status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (skipping {skipped})" +msgstr "" + +#. Translators: {total} is a count. This message is appended to task progress +#. status messages. +#: lms/djangoapps/instructor_task/views.py +msgid " (out of {total})" +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +"\n" +" Dear %(student_name)s,\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "" +" \n" +" Congratulations on earning your certificate in %(course_name)s!\n" +" Since you have an account on LinkedIn, you can display your hard earned\n" +" credential for your colleagues to see. Click the button below to add the\n" +" certificate to your profile.\n" +" " +msgstr "" + +#: lms/djangoapps/linkedin/templates/linkedin_email.html +msgid "Add to profile" +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Could not contact the external grading server. Please contact the " +"development team at {email}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/staff_grading_service.py +msgid "" +"Cannot find any open response problems in this course. Have you submitted " +"answers to any open response assessment questions? If not, please do so and " +"return to this page." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "AI Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Peer Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Not yet available" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Automatic Checker" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "Instructor Assessment" +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify course " +"staff." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "" +"Error occurred while contacting the grading service. Please notify your edX" +" point of contact." +msgstr "" + +#: lms/djangoapps/open_ended_grading/utils.py +msgid "for course {0} and student {1}." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View all problems that require peer assessment in this particular course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View ungraded submissions submitted by students for the open ended problems " +"in the course." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"View open ended problems that you have previously submitted for grading." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "View submissions that have been flagged by students as inappropriate." +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +#: lms/djangoapps/open_ended_grading/views.py +msgid "New submissions to grade" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "New grades have been returned" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "Submissions have been flagged for review" +msgstr "" + +#: lms/djangoapps/open_ended_grading/views.py +msgid "" +"\n" +" Error with initializing peer grading.\n" +" There has not been a peer grading module created in the courseware that would allow you to grade others.\n" +" Please check back later for this.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Order Payment Confirmation" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Trying to add a different currency into the cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Registration for Course: {course_name}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Please visit your dashboard to see your new" +" enrollments." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "[Refund] User-Requested Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Mode {mode} does not exist for {course_id}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Certificate of Achievement, {mode_name} for course {course}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"Note - you have up to 2 weeks into the course to unenroll from the Verified " +"Certificate option and receive a full refund. To receive your refund, " +"contact {billing_email}. Please include your order number in your e-mail. " +"Please do NOT include your credit card information." +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order Number" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Customer Name" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Original Transaction" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Amount of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "Service Fees (if any)" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Purchase Time" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order ID" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Status" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +msgid "Quantity" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Unit Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Currency" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: wiki/plugins/attachments/forms.py +msgid "Description" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Comments" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py +msgid "University" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html +#: cms/templates/widgets/header.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Course" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Announce Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html +msgid "Course Start Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Close Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Period" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Enrolled" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Audit Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Honor Code Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Verified Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue over the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Verified Students Contributing More than the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Dollars Refunded" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Transactions" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Payments Collected" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Successful Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Amount of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You must be logged-in to add to a shopping cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course you requested does not exist." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "The course {0} is already in your cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#: lms/djangoapps/shoppingcart/tests/test_views.py +msgid "You are already registered in course {0}." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Course added to cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You do not have permission to view this page." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor did not return a required parameter: {0}" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The payment processor returned a badly-typed value {0} for param {1}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The payment processor accepted an order whose number is not in our system." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The amount charged by the processor {0} {1} is different than the total cost" +" of the order {2} {3}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor did not accept your payment.\n" +" The decision they returned was {decision},\n" +" and the reason was {reason_code}:{reason_msg}.\n" +" You were not charged. Please try a different form of payment.\n" +" Contact us with payment-related questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a payment confirmation that had inconsistent data!\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" The specific error message is: {msg}.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Due to an error your purchase was charged for a different amount than the order total!\n" +" The specific error message is: {msg}.\n" +" Your credit card has probably been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +"

\n" +" Sorry! Our payment processor sent us back a corrupted message regarding your charge, so we are\n" +" unable to validate that the message actually came from the payment processor.\n" +" The specific error message is: {msg}.\n" +" We apologize that we cannot verify whether the charge went through and take further action on your order.\n" +" Your credit card may possibly have been charged. Contact us with payment-specific questions at {email}.\n" +"

\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Successful transaction." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request is missing one or more required fields." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "One or more fields in the request contains invalid data." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The merchantReferenceCode sent with this authorization request matches the\n" +" merchantReferenceCode of another authorization request that you sent in the last 15 minutes.\n" +" Possible fix: retry the payment after 15 minutes.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Error: General system failure. Possible fix: retry the payment after a few " +"minutes." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received but there was a server timeout.\n" +" This error does not include timeouts between the client and the server.\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but a service did not finish running in time\n" +" Possible fix: retry the payment after some time.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The issuing bank has questions about the request. Possible fix: retry with " +"another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Expired card. You might also receive this if the expiration date you\n" +" provided does not match the date the issuing bank has on file.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" General decline of the card. No other information provided by the issuing bank.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Insufficient funds in the account. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Unknown reason" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Issuing bank unavailable. Possible fix: retry again after a few minutes" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Inactive card or card not authorized for card-not-present transactions.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The card has reached the credit limit. Possible fix: retry with another form" +" of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid card verification number. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"Invalid account number. Possible fix: retry with another form of payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type is not accepted by the payment processor.\n" +" Possible fix: retry with another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"General decline by the processor. Possible fix: retry with another form of " +"payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" There is a problem with our CyberSource merchant configuration. Please let us know at {0}\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The requested amount exceeds the originally authorized amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "Processor Failure. Possible fix: retry the payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The authorization has already been captured" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"The requested transaction amount must match the previous transaction amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The card type sent is invalid or does not correlate with the credit card number.\n" +" Possible fix: retry with the same card or another form of payment\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The request ID is invalid." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" You requested a capture through the API, but there is no corresponding, unused authorization record.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "The transaction has already been settled or reversed." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The capture or credit is not voidable because the capture or credit information has already been\n" +" submitted to your processor. Or, you requested a void for a type of transaction that cannot be voided.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "You requested a credit for a capture that was previously voided" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" Error: The request was received, but there was a timeout at the payment processor.\n" +" Possible fix: retry the payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource.'\n" +" Possible fix: retry with a different form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Reports" +msgstr "" + +#: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html +msgid "" +"There was an error in your date input. It should be formatted as YYYY-MM-DD" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "No photo ID was provided." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "We couldn't read your name from your photo ID image." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "" +"The name associated with your account and the name on your ID do not match." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "The image of your face was not clear." +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "Your face was not visible in your self-photo" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "There was an error verifying your ID photos." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Selected price is not valid number." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "This course doesn't support verified certificates" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "No selected price or selected price is below minimum." +msgstr "" + +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html +msgid "Skip to this view's content" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +#: lms/templates/registration/password_reset_complete.html +msgid "Your Password Reset is Complete" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +msgid "" +"\n" +" Your password has been set. You may go ahead and %(link_start)slog in%(link_end)s now.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Reset Your %(platform_name)s Password\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Form" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" We're sorry, %(platform_name)s enrollment is not available in your region\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The following errors occurred while processing your registration: " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "You must complete all fields." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "The two password fields didn't match." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"We're sorry, our systems seem to be having trouble processing your password " +"reset" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" Someone has been made aware of this issue. Please try again shortly. Please %(start_link)scontact us%(end_link)s about any concerns you have.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"Please enter your new password twice so we can verify you typed it in " +"correctly.
Required fields are noted by bold text and an asterisk (*)." +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: lms/templates/forgot_password_modal.html lms/templates/login.html +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Required Information" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your New Password Again" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Change My Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Your Password Reset Was Unsuccessful" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" The password reset link was invalid, possibly because the link has already been used. Please return to the %(start_link)slogin page%(end_link)s and start the password reset process again.\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "Password Reset Help" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: cms/templates/login.html lms/templates/login-sidebar.html +#: lms/templates/register-sidebar.html +msgid "Need Help?" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +msgid "" +"\n" +" View our %(start_link)shelp section for contact information and answers to commonly asked questions%(end_link)s\n" +" " +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"You're receiving this e-mail because you requested a password reset for your" +" user account at edx.org." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet reset your password." +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "Thanks for using our site!" +msgstr "" + +#: lms/templates/registration/password_reset_email.html +msgid "The edX Team" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "Last modified:" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "See all children" +msgstr "" + +#: lms/templates/wiki/article.html +msgid "This article was last modified:" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/create.html.py +msgid "Add new article" +msgstr "" + +#: lms/templates/wiki/create.html +msgid "Create article" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/delete.html +#: lms/templates/wiki/delete.html.py +msgid "Go back" +msgstr "" + +#: lms/templates/wiki/delete.html lms/templates/wiki/delete.html.py +#: lms/templates/wiki/edit.html +msgid "Delete article" +msgstr "" + +#: lms/templates/wiki/delete.html +#: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Delete" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You cannot delete a root article." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You cannot delete this article because you do not have permission to delete " +"articles with children. Try to remove the children manually one-by-one." +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "" +"You are deleting an article. This means that its children will be deleted as" +" well. If you choose to purge, children will also be purged!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "Articles that will be deleted" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "...and more!" +msgstr "" + +#: lms/templates/wiki/delete.html +msgid "You are deleting an article. Please confirm." +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/wiki/includes/article_menu.html +msgid "Edit" +msgstr "" + +#: lms/templates/wiki/edit.html lms/templates/wiki/edit.html.py +msgid "Save changes" +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/unit.html +msgid "Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this is a control to allow users to exit out of this modal +#. interface (a menu or piece of UI that takes the full focus of the screen) +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/modal/_modal-settings-language.html +#: lms/templates/modal/accessible_confirm.html +msgid "Close" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Wiki Preview" +msgstr "" + +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html +#: lms/templates/modal/_modal-settings-language.html +msgid "window open" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Back to editor" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "History" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"Click each revision to see a list of edited lines. Click the Preview button " +"to see how the article looked at this stage. At the bottom of this page, you" +" can change to a particular revision or merge an old revision with the " +"current one." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "(no log message)" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Preview this revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Auto log:" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Change" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Merge selected with current..." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Switch to selected version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Wiki Revision Preview" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Back to history view" +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Switch to this version" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge Revision" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "Merge with current" +msgstr "" + +#: lms/templates/wiki/history.html +msgid "" +"When you merge a revision with the current, all data will be retained from " +"both versions and merged at its approximate location from each revision." +msgstr "" + +#: lms/templates/wiki/history.html +msgid "After this, it's important to do a manual review." +msgstr "" + +#: lms/templates/wiki/history.html lms/templates/wiki/history.html +msgid "Create new merged version" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing revision:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing a merge between two revisions:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "This revision has been deleted." +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Restoring to this revision will mark the article as deleted." +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "" +"\n" +" You need to log in or sign up to use this function.\n" +" " +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in or sign up to use this function." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Cheatsheet" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Syntax Help" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"This wiki uses Markdown for styling. There are several " +"useful guides online. See any of the links below for in-depth details:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Markdown: Basics" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quick Markdown Syntax Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Miniature Markdown Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"To create a new wiki article, create a link to it. Clicking the link gives " +"you the creation page." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "[Article Name](wiki:ArticleName)" +msgstr "" + +#. Translators: Do not translate "edX" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Additions:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Math Expression" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Useful examples:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wikipedia" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "edX Wiki" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Huge Header" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Smaller Header" +msgstr "" + +#. Translators: Leave the punctuation, but translate "emphasis" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "*emphasis* or _emphasis_" +msgstr "" + +#. Translators: Leave the punctuation, but translate "strong" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "**strong** or __strong__" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Unordered List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 1" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 2" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Ordered" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quotes" +msgstr "" + +#: lms/templates/wiki/includes/editor_widget.html +msgid "" +"\n" +" Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for help.\n" +" " +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/wiki_plugin.py +msgid "Attachments" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload new file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search and add file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload File" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Search files and articles" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"You can reuse files from other articles. These files are subject to updates " +"on other articles which may or may not be a good thing." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "" +"The following files are available for this article. Copy the markdown tag to" +" directly refer to a file from the article text." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Markdown tag" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Uploaded by" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Size" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File History" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Detach" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Replace" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Restore" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "anonymous (IP logged)" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File history" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "revisions" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "There are no attachments for this article." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Invalid course update id." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Course update not found." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " +"configure a different path with GIT_REPO_EXPORT_DIR" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Non writable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"If using http urls, you must provide the username and password in the url. " +"Similar to https://user:pass@github.com/user/course." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to determine branch, repo in detached HEAD mode" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to update or clone git repository." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to export course to xml." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to configure git username and password" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to commit changes. This is usually because there are no changes to be" +" committed" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to push changes. This is usually because the remote repository " +"cannot be contacted" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Bad course location provided" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Missing branch on fresh clone" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command was: {0!r}. Working directory was: {1!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Command output was: {0!r}" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Directory already exists, doing a git reset and pull instead of git clone." +msgstr "" + +#: cms/djangoapps/contentstore/utils.py lms/templates/notes.html +msgid "My Notes" +msgstr "" + +#: cms/djangoapps/contentstore/management/commands/git_export.py +msgid "" +"Take the specified course and attempt to export it to a git repository\n" +". Course directory must already be a git repository. Usage: git_export " +msgstr "" + +#: cms/djangoapps/contentstore/views/assets.py +msgid "Upload completed" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Special characters not allowed in organization, course number, and course " +"run." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Unable to create course '{name}'.\n" +"\n" +"{err}" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization, course number," +" and course run. Please change either organization or course number to be " +"unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Please change either the organization or course number so that it is unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization and course " +"number. Please change at least one field to be unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/export_git.py +msgid "Course successfully exported to git repository" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "We only support uploading a .tar.gz file." +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "File upload corrupted. Please try again" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "Could not find the course.xml file in the package." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of {0}" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Duplicate of '{0}'" +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Incoming video data is empty." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Can't find item by locator." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Transcripts are supported only for \"video\" modules." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Insufficient permissions" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Could not find user by email address '{email}'." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "User {email} has registered but has not yet activated his/her account." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "`role` is required" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Only instructors may create other instructors" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "You may not remove the last instructor from a course" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "unrequested" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "pending" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "granted" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "denied" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Studio user" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "The date when state was last updated" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Current course creator state" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "" +"Optional notes about this user (for example, why course creation access was " +"denied)" +msgstr "" + +#: cms/templates/404.html cms/templates/error.html +#: lms/templates/static_templates/404.html +msgid "Page Not Found" +msgstr "" + +#: cms/templates/404.html lms/templates/static_templates/404.html +msgid "Page not found" +msgstr "" + +#: cms/templates/asset_index.html lms/templates/courseware/courseware.html +#: lms/templates/verify_student/_modal_editname.html +msgid "close" +msgstr "" + +#: cms/templates/container.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Loading..." +msgstr "" + +#. Translators: this is a verb describing the action of viewing more details +#: cms/templates/container_xblock_component.html +#: lms/templates/wiki/includes/article_menu.html +msgid "View" +msgstr "" + +#: cms/templates/html_error.html lms/templates/module-error.html +msgid "Error:" +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +#: lms/templates/courseware/course_about.html +msgid "Course Number" +msgstr "" + +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: lms/templates/verify_student/face_upload.html +msgid "Cancel" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Organization:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Number:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Pending" +msgstr "" + +#: cms/templates/login.html lms/templates/login.html +#: lms/templates/university_profile/edge.html +msgid "Forgot password?" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/login.html lms/templates/provider_login.html +#: lms/templates/provider_login.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/university_profile/edge.html +msgid "Password" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + +#: cms/templates/manage_users.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Admin" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html cms/templates/overview.html +#: lms/templates/problem.html lms/templates/word_cloud.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/verify_student/face_upload.html +msgid "Save" +msgstr "" + +#: cms/templates/register.html cms/templates/widgets/header.html +#: lms/templates/index.html +msgid "Sign Up" +msgstr "" + +#: cms/templates/register.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "Public Username" +msgstr "" + +#: cms/templates/register.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "Preferred Language" +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Thanks for activating your account." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "This account has already been activated." +msgstr "" + +#: cms/templates/registration/activation_complete.html +#: lms/templates/registration/activation_complete.html +msgid "Visit your {link_start}dashboard{link_end} to see your courses." +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html +#: lms/templates/static_templates/tos.html +msgid "Terms of Service" +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/footer.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/privacy.html +msgid "Privacy Policy" +msgstr "" + +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py +msgid "Help" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Register for {} | Choose Your Track" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sorry, there was an error when trying to register you" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your track:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Certificate of Achievement (ID Verified)" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up and work toward a verified Certificate of Achievement." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select your contribution for this course (min. $" +msgstr "" + +#: common/templates/course_modes/choose.html +#: lms/templates/verify_student/photo_verification.html +msgid "):" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay? What if I don't meet all the requirements?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Why do I have to pay?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"As a not-for-profit, edX uses your contribution to support our mission to " +"provide quality education to everyone around the world, and to improve " +"learning through research. While we have established a minimum fee, we ask " +"that you contribute as much as you can." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"I'd like to pay more than the minimum. Is my contribution tax deductible?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please check with your tax advisor to determine whether your contribution is" +" tax deductible." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What if I can't afford it or don't have the necessary equipment?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"If you can't afford the minimum fee or don't meet the requirements, you can " +"audit the course or elect to pursue an honor code certificate at no cost. If" +" you would like to pursue the honor code certificate, please check the honor" +" code certificate box, tell us why you can't pursue the verified certificate" +" below, and then click the 'Select Certificate' button to complete your " +"registration." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Honor Code Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Explain your situation: " +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"Please write a few sentences about why you'd like to opt out of the paid " +"verified certificate to pursue the honor code certificate:" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Upgrade Your Registration" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Certificate" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Verified Registration Requirements" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To upgrade your registration and work towards a Verified Certificate of " +"Achievement, you will need a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"To register for a Verified Certificate of Achievement option, you will need " +"a webcam, a credit or debit card, and an ID." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "What is an ID Verified Certificate?" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "" +"An ID Verified Certificate requires proof of your identity through your " +"photo and ID and is checked throughout the course to verify that it is you " +"who earned the passing grade." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "or" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Audit This Course" +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Sign up to audit this course for free and track your own progress." +msgstr "" + +#: common/templates/course_modes/choose.html +msgid "Select Audit" +msgstr "" + +#: lms/templates/admin_dashboard.html +msgid "{platform_name}-wide Summary" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/open_ended_problems/combined_notifications.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Instructions" +msgstr "" + +#: lms/templates/annotatable.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "Collapse Instructions" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Guided Discussion" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Hide Annotations" +msgstr "" + +#: lms/templates/contact.html lms/templates/static_templates/about.html +#: lms/templates/static_templates/about.html +msgid "Vision" +msgstr "" + +#: lms/templates/contact.html +msgid "Faq" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +msgid "Press" +msgstr "" + +#: lms/templates/contact.html lms/templates/footer.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/contact.html +msgid "Contact" +msgstr "" + +#: lms/templates/contact.html +msgid "Class Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"We are always seeking feedback to improve our courses. If you are an " +"enrolled student and have any questions, feedback, suggestions, or any other" +" issues specific to a particular class, please post on the discussion forums" +" of that class." +msgstr "" + +#: lms/templates/contact.html +msgid "General Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have a general question about {platform_name} please email " +"{contact_email}. To see if your question has already been answered, visit " +"our {faq_link_start}FAQ page{faq_link_end}. You can also join the discussion" +" on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " +"chance to respond to every email, we take all feedback into consideration." +msgstr "" + +#: lms/templates/contact.html +msgid "Technical Inquiries and Feedback" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you have suggestions/feedback about the overall {platform_name} platform," +" or are facing general technical issues with the platform (e.g., issues with" +" email addresses and passwords), you can reach us at {tech_email}. For " +"technical questions, please make sure you are using a current version of " +"Firefox or Chrome, and include browser and version in your e-mail, as well " +"as screenshots or other pertinent details. If you find a bug or other " +"issues, you can reach us at the following: {bugs_email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Media" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"Please visit our {link_start}media/press page{link_end} for more " +"information. For any media or press inquiries, please email {email}." +msgstr "" + +#: lms/templates/contact.html +msgid "Universities" +msgstr "" + +#: lms/templates/contact.html +msgid "" +"If you are a university wishing to collaborate with or if you have questions" +" about {platform_name}, please email {email}." +msgstr "" + +#: lms/templates/course.html +msgid "New" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Dashboard" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/courseware/course_about.html +#: lms/templates/courseware/course_about.html +#: lms/templates/courseware/mktg_course_about.html +msgid "An error occurred. Please try again later." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please verify your new email" +msgstr "" + +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard.html +msgid "" +"The selected {provider_name} account is already linked to another " +"{platform_name} account. Please {link_start}log out{link_end}, then log in " +"with your {provider_name} account." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_info_language.html +msgid "edit" +msgstr "" + +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: lms/templates/dashboard.html +msgid "Account Links" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: lms/templates/dashboard.html +msgid "link" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Reset Password" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Current Courses" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't registered for any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Find courses now!" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Looks like you haven't been enrolled in any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Course-loading errors" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Email Settings for {course_number}" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Receive course emails" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Save Settings" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Password Reset Email Sent" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"An email has been sent to {email}. Follow the link in the email to change " +"your password." +msgstr "" + +#: lms/templates/dashboard.html lms/templates/dashboard.html +msgid "Change Email" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please enter your new email address:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Please confirm your password:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +"We will send a confirmation to both {email} and your new email as part of " +"the process." +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change your name" +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"To uphold the credibility of your {platform} {cert_name_short}, all name " +"changes will be logged and recorded." +msgstr "" + +#. Translators: note that {platform} {cert_name_short} will look something +#. like: "edX certificate". Please do not change the order of these +#. placeholders. +#: lms/templates/dashboard.html +msgid "" +"Enter your desired full name, as it will appear on your {platform} " +"{cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/verify_student/_modal_editname.html +msgid "Reason for name change:" +msgstr "" + +#: lms/templates/dashboard.html +msgid "Change My Name" +msgstr "" + +#: lms/templates/dashboard.html +msgid "" +" {course_number}? " +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Unregister" +msgstr "" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +msgid "E-mail change failed" +msgstr "" + +#: lms/templates/email_change_failed.html +msgid "We were unable to send a confirmation email to {email}" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +#: lms/templates/invalid_email_key.html +msgid "Go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "E-mail change successful!" +msgstr "" + +#: lms/templates/email_change_successful.html +#: lms/templates/emails_change_successful.html +msgid "You should see your new email in your {link_start}dashboard{link_end}." +msgstr "" + +#: lms/templates/email_exists.html +msgid "An account with the new e-mail address already exists." +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Student Enrollment Form" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Course: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Add new students" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Existing students:" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "New students added: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Students rejected: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Debug: " +msgstr "" + +#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html +msgid "External Authentication failed" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Due:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Status:" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have successfully gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "You have not yet gotten to level {goal_level}." +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Completed puzzles" +msgstr "" + +#: lms/templates/folditbasic.html +msgid "Level" +msgstr "" + +#: lms/templates/folditbasic.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Submitted" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Puzzle Leaderboard" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "User" +msgstr "" + +#: lms/templates/folditchallenge.html +msgid "Score" +msgstr "" + +#: lms/templates/footer.html +msgid "About" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/jobs.html +msgid "Jobs" +msgstr "" + +#: lms/templates/footer.html lms/templates/static_templates/faq.html +#: lms/templates/static_templates/faq.html +msgid "FAQ" +msgstr "" + +#: lms/templates/footer.html +msgid "{platform_name} Logo" +msgstr "" + +#: lms/templates/footer.html +msgid "" +"{platform_name} is a non-profit created by founding partners {Harvard} and " +"{MIT} whose mission is to bring the best of higher education to students of " +"all ages anywhere in the world, wherever there is Internet access. " +"{platform_name}'s free online MOOCs are interactive and subjects include " +"computer science, public health, and artificial intelligence." +msgstr "" + +#: lms/templates/footer.html +msgid "© 2014 {platform_name}, some rights reserved." +msgstr "" + +#: lms/templates/footer.html +msgid "Terms of Service and Honor Code" +msgstr "" + +#: lms/templates/forgot_password_modal.html +#: lms/templates/forgot_password_modal.html +msgid "Password Reset" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "" +"Please enter your e-mail address below, and we will e-mail instructions for " +"setting a new password." +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Your E-mail Address" +msgstr "" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +msgid "This is the e-mail address you used to register with {platform}" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Reset My Password" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Email is incorrect." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +msgid "{platform_name} Help" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"For questions on course lectures, homework, tools, or materials for " +"this course, post in the {link_start}course discussion " +"forum{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have general questions about {platform_name}? You can find " +"lots of helpful information in the {platform_name} " +"{link_start}FAQ{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have a question about something specific? You can contact " +"the {platform_name} general support team directly:" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Please note: The {platform_name} support team is English speaking. While we " +"will do our best to address your inquiry in any language, our responses will" +" be in English." +msgstr "" + +#: lms/templates/help_modal.html lms/templates/login.html +#: lms/templates/provider_login.html lms/templates/provider_login.html +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html lms/templates/signup_modal.html +#: lms/templates/signup_modal.html +msgid "E-mail" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Briefly describe your issue" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Tell us the details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +#: lms/templates/instructor/staff_grading.html +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Submit" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Thank You!" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Thank you for your inquiry or feedback. We typically respond to a request " +"within one business day (Monday to Friday, {open_time} UTC to {close_time} " +"UTC.) In the meantime, please review our {link_start}detailed FAQs{link_end}" +" where most questions have already been answered." +msgstr "" + +#: lms/templates/help_modal.html +msgid "problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a Problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of the problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Details of the problem you are encountering" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Include error messages, steps which lead to the issue, etc." +msgstr "" + +#: lms/templates/help_modal.html +msgid "suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a Suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of your suggestion" +msgstr "" + +#: lms/templates/help_modal.html lms/templates/help_modal.html +#: lms/templates/module-error.html +msgid "Details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a Question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief summary of your question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "An error has occurred." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please {link_start}send us e-mail{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please try again later." +msgstr "" + +#: lms/templates/index.html +msgid "Free courses from {university_name}" +msgstr "" + +#: lms/templates/index.html +msgid "The Future of Online Education" +msgstr "" + +#: lms/templates/index.html +msgid "For anyone, anywhere, anytime" +msgstr "" + +#: lms/templates/index.html +msgid "Stay up to date with all {platform_name} has to offer!" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Invalid email change key" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "This e-mail key is not valid. Please check:" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "" +"Was this key already used? Check whether the e-mail change has already " +"happened." +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Did your e-mail client break the URL into two lines?" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "The keys are valid for a limited amount of time. Has the key expired?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Helpful Information" +msgstr "" + +#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html +msgid "Login via OpenID" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "" +"You can now start learning with {platform_name} by logging in with your OpenID account." +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Not Enrolled?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Sign up for {platform_name} today!" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Looking for help in logging in or with your {platform_name} account?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "View our help section for answers to commonly asked questions." +msgstr "" + +#: lms/templates/login.html +msgid "Log into your {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Log into My {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Access My Courses" +msgstr "" + +#: lms/templates/login.html lms/templates/register.html +msgid "Processing your account information…" +msgstr "" + +#: lms/templates/login.html +msgid "Please log in" +msgstr "" + +#: lms/templates/login.html +msgid "to access your account and courses" +msgstr "" + +#: lms/templates/login.html +msgid "We're Sorry, {platform_name} accounts are unavailable currently" +msgstr "" + +#: lms/templates/login.html +msgid "The following errors occurred while logging you in:" +msgstr "" + +#: lms/templates/login.html +msgid "Your email or password is incorrect" +msgstr "" + +#: lms/templates/login.html +msgid "" +"Please provide the following information to log into your {platform_name} " +"account. Required fields are noted by bold text " +"and an asterisk (*)." +msgstr "" + +#: lms/templates/login.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +msgid "example: username@domain.com" +msgstr "" + +#: lms/templates/login.html +msgid "Account Preferences" +msgstr "" + +#: lms/templates/login.html +msgid "Remember me" +msgstr "" + +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: lms/templates/login.html +msgid "or, if you have connected one of these providers, log in below." +msgstr "" + +#. Translators: provider_name is the name of an external, third-party user +#. authentication provider (like Google or LinkedIn). +#. Translators: provider_name is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/login.html lms/templates/register.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS +#: lms/templates/lti.html +msgid "External resource" +msgstr "" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + +#: lms/templates/lti.html +msgid "View resource in a new window" +msgstr "" + +#: lms/templates/lti.html +msgid "" +"Please provide launch_url. Click \"Edit\", and fill in the required fields." +msgstr "" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable or Reenable student accounts" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Username:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Reenable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Students whose accounts have been disabled" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "(reload your page to refresh)" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "working..." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"This page features MathJax technology to render mathematical formulae. To " +"make math accessibile, we suggest using the MathPlayer plugin. Please visit " +"the {link_start}MathPlayer Download Page{link_end} to download the plugin " +"for your browser." +msgstr "" + +#: lms/templates/mathjax_accessible.html +msgid "" +"Your browser does not support the MathPlayer plugin. To use MathPlayer, " +"please use Internet Explorer 6 through 9." +msgstr "" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" +msgstr "" + +#: lms/templates/module-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/module-error.html +msgid "Raw data:" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Accepted" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/name_changes.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Error" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Rejected" +msgstr "" + +#: lms/templates/name_changes.html +msgid "Pending name changes" +msgstr "" + +#: lms/templates/name_changes.html lms/templates/modal/accessible_confirm.html +msgid "Confirm" +msgstr "" + +#: lms/templates/name_changes.html +msgid "[Reject]" +msgstr "" + +#: lms/templates/navigation.html +msgid "Global Navigation" +msgstr "" + +#: lms/templates/navigation.html +msgid "Find Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Dashboard for:" +msgstr "" + +#: lms/templates/navigation.html +msgid "More options dropdown" +msgstr "" + +#: lms/templates/navigation.html +msgid "Log Out" +msgstr "" + +#: lms/templates/navigation.html +msgid "Shopping Cart" +msgstr "" + +#: lms/templates/navigation.html +msgid "How it Works" +msgstr "" + +#: lms/templates/navigation.html lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/courseware/courses.html +msgid "Courses" +msgstr "" + +#: lms/templates/navigation.html +msgid "Schools" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Register Now" +msgstr "" + +#: lms/templates/navigation.html lms/templates/navigation.html +msgid "Log in" +msgstr "" + +#: lms/templates/navigation.html +msgid "" +"Warning: Your browser is not fully supported. We strongly " +"recommend using {chrome_link_start}Chrome{chrome_link_end} or " +"{ff_link_start}Firefox{ff_link_end}." +msgstr "" + +#: lms/templates/notes.html lms/templates/textannotation.html +#: lms/templates/videoannotation.html +msgid "You do not have any notes." +msgstr "" + +#: lms/templates/problem.html +msgid "Reset" +msgstr "" + +#: lms/templates/problem.html +msgid "Show Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "Reveal Answer" +msgstr "" + +#: lms/templates/problem.html +msgid "You have used {num_used} of {num_total} submissions" +msgstr "" + +#: lms/templates/provider_login.html +#: lms/templates/university_profile/edge.html +msgid "Log In" +msgstr "" + +#: lms/templates/provider_login.html +msgid "" +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." +msgstr "" + +#: lms/templates/provider_login.html +msgid "Return To %s" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Preferences for {platform_name}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update my {platform_name} Account" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Processing your account information …" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Welcome {username}! Please set your preferences below" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"We're sorry, {platform_name} enrollment is not available in your region" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "The following errors occurred while processing your registration:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "" +"Required fields are noted by bold text and an " +"asterisk (*)." +msgstr "" + +#: lms/templates/register-shib.html lms/templates/signup_modal.html +msgid "Enter a public username:" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "example: JaneDoe" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/register.html +msgid "Will be shown in any discussions or forums you participate in" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +msgid "Account Acknowledgements" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Terms of Service{link_end}" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/register.html +#: lms/templates/signup_modal.html +msgid "I agree to the {link_start}Honor Code{link_end}" +msgstr "" + +#: lms/templates/register-shib.html +msgid "Update My Account" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Registration Help" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Already registered?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Click here to log in." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Registering with {platform_name} gives you access to all of our current and " +"future free courses. Not ready to take a course just yet? Registering puts " +"you on our mailing list - we will update you as courses are added." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Next Steps" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"You will receive an activation email. You must click on the activation link" +" to complete the process. Don't see the email? Check your spam folder and " +"mark emails from class.stanford.edu as 'not spam', since you'll want to be " +"able to receive email from your courses." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"As part of joining {platform_name}, you will receive an activation email. " +"You must click on the activation link to complete the process. Don't see " +"the email? Check your spam folder and mark {platform_name} emails as 'not " +"spam'. At {platform_name}, we communicate mostly through email." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Need help in registering with {platform_name}?" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "View our FAQs for answers to commonly asked questions." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Once registered, most questions can be answered in the course specific " +"discussion forums or through the FAQs." +msgstr "" + +#: lms/templates/register.html +msgid "Register for {platform_name}" +msgstr "" + +#: lms/templates/register.html +msgid "Create My {platform_name} Account" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome!" +msgstr "" + +#: lms/templates/register.html +msgid "Register below to create your {platform_name} account" +msgstr "" + +#: lms/templates/register.html +msgid "Register to start learning today!" +msgstr "" + +#: lms/templates/register.html +msgid "" +"or create your own {platform_name} account by completing all " +"required* fields below." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register.html +msgid "Finish your account registration below to start learning." +msgstr "" + +#: lms/templates/register.html +msgid "Please complete the following fields to register for an account. " +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "cannot be changed later" +msgstr "" + +#: lms/templates/register.html lms/templates/verify_student/face_upload.html +msgid "example: Jane Doe" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Needed for any certificates you may earn" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome {username}" +msgstr "" + +#: lms/templates/register.html +msgid "Enter a Public Display Name:" +msgstr "" + +#: lms/templates/register.html +msgid "Public Display Name" +msgstr "" + +#: lms/templates/register.html lms/templates/register.html +msgid "Extra Personal Information" +msgstr "" + +#: lms/templates/register.html +msgid "City" +msgstr "" + +#: lms/templates/register.html +msgid "example: New York" +msgstr "" + +#: lms/templates/register.html +msgid "Country" +msgstr "" + +#: lms/templates/register.html +msgid "Highest Level of Education Completed" +msgstr "" + +#: lms/templates/register.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Year of Birth" +msgstr "" + +#: lms/templates/register.html +msgid "Please share with us your reasons for registering with {platform_name}" +msgstr "" + +#: lms/templates/register.html lms/templates/university_profile/edge.html +msgid "Register" +msgstr "" + +#: lms/templates/register.html lms/templates/signup_modal.html +msgid "Create My Account" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "Re-subscribe Successful!" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "" +"You have re-enabled forum notification emails from {platform_name}. Click " +"{dashboard_link_start}here{link_end} to return to your dashboard. " +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Previous" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +msgid "Section Navigation" +msgstr "" + +#: lms/templates/seq_module.html lms/templates/seq_module.html +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "Next" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Sign Up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname@domain.com" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. yourname (shown on forums)" +msgstr "" + +#: lms/templates/signup_modal.html lms/templates/signup_modal.html +msgid "e.g. Your Name (for certificates)" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Welcome {name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Ed. Completed" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Year of birth" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Mailing address" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Goals in signing up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Already have an account?" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Login." +msgstr "" + +#. Translators: The 'Group' here refers to the group of users that has been +#. sorted into group_id +#: lms/templates/split_test_staff_view.html +msgid "Group {group_id}" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug Info" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission history" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "{platform_name} Content Quality Assessment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Optional tag (eg \"done\" or \"broken\"):" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Add comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug" +msgstr "" + +#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html +msgid "Module Fields" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "XML attributes" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission History Viewer" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "User:" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "View History" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "{course_number} Textbook" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "Textbook Navigation" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Previous page" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Next page" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Sysadmin Dashboard" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Users" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Staffing and Enrollment" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Logs" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "User Management" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Email or username" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Create user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download list of all users (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Check and repair external authentication map" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "" +"Go to each individual course's Instructor dashboard to manage course " +"enrollment." +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Manage course staff and instructors" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download staff and instructor list (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Administer Courses" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Location" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware and branch is a specific version within that repository +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Branch (optional)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Load new course from github" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Course ID or dir" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete course from site" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Django PID" +msgstr "" + +#. Translators: A version number appears after this string +#: lms/templates/sysadmin_dashboard.html +msgid "Platform Version" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Date" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Course ID" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Action" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Recent git load activity for" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "git action" +msgstr "" + +#: lms/templates/textannotation.html +msgid "Source:" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "Tracking Log" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "datetime" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "ipaddr" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "source" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "type" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "Unsubscribe Successful!" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "" +"You will no longer receive forum notification emails from {platform_name}. " +"Click {dashboard_link_start}here{link_end} to return to your dashboard. If " +"you did not mean to do this, click {undo_link_start}here{link_end} to re-" +"subscribe." +msgstr "" + +#: lms/templates/using.html +msgid "Using the system" +msgstr "" + +#: lms/templates/using.html +msgid "" +"During video playback, use the subtitles and the scroll bar to navigate. " +"Clicking the subtitles is a fast way to skip forwards and backwards by small" +" amounts." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you are on a low-resolution display, the left navigation bar can be " +"hidden by clicking on the set of three left arrows next to it." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you need bigger or smaller fonts, use your browsers settings to scale " +"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" +" ctrl-minus at the same time." +msgstr "" + +#: lms/templates/video.html +msgid "Skip to a navigable version of this video's transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Loading video player" +msgstr "" + +#: lms/templates/video.html +msgid "Play video" +msgstr "" + +#: lms/templates/video.html +msgid "Video position" +msgstr "" + +#: lms/templates/video.html +msgid "Play" +msgstr "" + +#: lms/templates/video.html +msgid "Speeds" +msgstr "" + +#: lms/templates/video.html +msgid "Speed" +msgstr "" + +#: lms/templates/video.html +msgid "Volume" +msgstr "" + +#: lms/templates/video.html +msgid "Fill browser" +msgstr "" + +#: lms/templates/video.html +msgid "HD off" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Turn off captions" +msgstr "" + +#: lms/templates/video.html +msgid "Skip to end of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "" +"Activating an item in this group will spool the video to the corresponding " +"time point. To skip transcript, go to previous item." +msgstr "" + +#: lms/templates/video.html +msgid "Go back to start of transcript." +msgstr "" + +#: lms/templates/video.html +msgid "Download video" +msgstr "" + +#: lms/templates/video.html lms/templates/video.html +msgid "Download transcript" +msgstr "" + +#: lms/templates/video.html +msgid "Download Handout" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Your words:" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Total number of words:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Open Response" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Assessments:" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Hide Question" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "New Submission" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "Next Step" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended.html +msgid "" +"Staff Warning: Please note that if you submit a duplicate of text that has " +"already been submitted for grading, it will not show up in the staff grading" +" view. It will be given the same grade that the original received " +"automatically, and will be returned within 30 minutes if the original is " +"already graded, or when the original is graded if not." +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_legend.html +msgid "Legend" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Submitted Rubric" +msgstr "" + +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "Toggle Full Rubric" +msgstr "" + +#. Translators: an example of what this string will look +#. like is: "Scored rubric from grader 1", where +#. "Scored rubric" replaces {result_of_task} and +#. "1" replaces {number}. +#. This string appears when a user is viewing one of +#. their graded rubrics for an openended response problem. +#. the number distinguishes between the different +#. graded rubrics the user might have received +#: lms/templates/combinedopenended/combined_open_ended_results.html +msgid "{result_of_task} from grader {number}" +msgstr "" + +#. Translators: "See full feedback" is the text of +#. a link that allows a user to see more detailed +#. feedback from a self, peer, or instructor +#. graded openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +msgid "See full feedback" +msgstr "" + +#. Translators: this text forms a link that, when +#. clicked, allows a user to respond to the feedback +#. the user received on his or her openended problem +#. Translators: when "Respond to Feedback" is clicked, a survey +#. appears on which a user can respond to the feedback the user +#. received on an openended problem +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Respond to Feedback" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "How accurate do you find this feedback?" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Correct" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "No Opinion" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Partially Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Incorrect" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Additional comments:" +msgstr "" + +#: lms/templates/combinedopenended/open_ended_result_table.html +#: lms/templates/combinedopenended/openended/open_ended_evaluation.html +msgid "Submit Feedback" +msgstr "" + +#. Translators: "Response" labels an area that contains the user's +#. Response to an openended problem. It is a noun. +#. Translators: "Response" labels a text area into which a user enters +#. his or her response to a prompt from an openended problem. +#: lms/templates/combinedopenended/openended/open_ended.html +#: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Response" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Unanswered" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended.html +msgid "Skip Post-Assessment" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_combined_rubric.html +msgid "{num} point: {explanatory_text}" +msgid_plural "{num} points: {explanatory_text}" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/combinedopenended/openended/open_ended_error.html +msgid "There was an error with your submission. Please contact course staff." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "Rubric" +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "" +"Select the criteria you feel best represents this submission in each " +"category." +msgstr "" + +#: lms/templates/combinedopenended/openended/open_ended_rubric.html +msgid "{num} point: {text}" +msgid_plural "{num} points: {text}" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/combinedopenended/selfassessment/self_assessment_hint.html +msgid "Please enter a hint below:" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohort groups" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Show cohorts" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Cohorts in the course" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort" +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add users by username or email. One per line or comma-separated." +msgstr "" + +#: lms/templates/course_groups/cohort_management.html +msgid "Add cohort members" +msgstr "" + +#: lms/templates/courseware/accordion.html +msgid "{chapter}, current chapter" +msgstr "" + +#: lms/templates/courseware/accordion.html +#: lms/templates/courseware/progress.html +msgid "due {date}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"The currently logged-in user account does not have permission to enroll in " +"this course. You may need to {start_logout_tag}log out{end_tag} then try the" +" register button again. Please visit the {start_help_tag}help page{end_tag} " +"for a possible solution." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "About {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "You are registered for this course" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View Courseware" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "This course is in your cart." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "" +"Add {course.display_number_with_default} to Cart ({currency_symbol}{cost})" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Register for {course.display_number_with_default}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Overview" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Share with friends and family!" +msgstr "" + +#. Translators: This text will be automatically posted to the student's +#. Twitter account. {url} should appear at the end of the text. +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "I just registered for {number} {title} through {platform} {url}" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes Start" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Classes End" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Estimated Effort" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Prerequisites" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Additional Resources" +msgstr "" + +#. Translators: 'needs attention' is an alternative string for the +#. notification image that indicates the tab "needs attention". +#: lms/templates/courseware/course_navigation.html +msgid "needs attention" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/course_navigation.html +msgid "Staff view" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +msgid "Student view" +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from leading universities." +msgstr "" + +#: lms/templates/courseware/courses.html +msgid "Explore free courses from {university_name}." +msgstr "" + +#: lms/templates/courseware/courseware-error.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email}' to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "{course_number} Courseware" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Return to Exam" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Course Navigation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Open Calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Input Field" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "" +"Use the arrow keys to navigate the tips or use the tab key to return to the " +"calculator" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Hints" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Integers" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Decimals" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Scientific notation" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Appending SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Supported SI postfixes" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Operators" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "parallel resistors function" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Functions" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Constants" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Euler's number" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "ratio of a circle's circumference to it's diameter" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Boltzmann constant" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "speed of light" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "freezing point of water in degrees Kelvin" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "fundamental charge" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculate" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Calculator Output Field" +msgstr "" + +#: lms/templates/courseware/error-message.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {link_to_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/courseware/grade_summary.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade summary" +msgstr "" + +#: lms/templates/courseware/grade_summary.html +msgid "Not implemented yet" +msgstr "" + +#: lms/templates/courseware/gradebook.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "Search students" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "{course_number} Course Info" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + +#: lms/templates/courseware/info.html lms/templates/courseware/info.html +msgid "Course Updates & News" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Handout Navigation" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Course Handouts" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Instructor Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Try New Beta Dashboard" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Psychometrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Forum Admin" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "DataDump" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Manage Groups" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Metrics" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Grade Downloads" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Note: some of these buttons are known to time out for larger courses. We " +"have temporarily disabled those features for courses with more than " +"{max_enrollment} students. We are urgently working on fixing this issue. " +"Thank you for your patience as we continue working to improve the platform!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Export grades to remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"The assignments defined for this course should match the ones stored in the " +"gradebook, for this to work properly!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Gradebook name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Assignment name:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Course-specific grade adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Specify a particular problem in the course here by its url:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is " +"i4x://university/course/problem/problemname, then just provide the " +"problemname. If the location is " +"i4x://university/course/notaproblem/someothername, then provide " +"notaproblem/someothername.)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "Then select an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"These actions run in the background, and status for active tasks will appear" +" in a table below. To see status for all tasks submitted for this problem, " +"click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student-specific grade inspection and adjustment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Specify the {platform_name} email address or username of a student here:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Click this, and a link to student's progress page will appear below:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"You may also delete the entire state of a student for the specified module:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" a table below. To see status for all tasks submitted for this problem and " +"student, click on this button:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Select a problem and an action:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"User requires forum administrator privileges to perform administration " +"tasks. See instructor." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Explanation of Roles:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Moderators: can edit or delete any post, remove misuse flags, close " +"and re-open threads, endorse responses, and see posts from all cohorts (if " +"the course is cohorted). Moderators' posts are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Forum Admins: have moderator privileges, as well as the ability to edit the " +"list of forum moderators (e.g. to appoint a new moderator). Admins' posts " +"are marked as 'staff'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Community TAs: have forum moderator privileges, and their posts are labelled" +" 'Community TA'." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Enrollment Data" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Pull enrollment from remote gradebook" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Section:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Enrollment" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enroll or un-enroll one or many students: enter emails, separated by new " +"lines or commas;" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Notify students by email" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Auto-enroll students when they activate" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Problem urlname:" +msgstr "" + +#. Translators: days_early_for_beta should not be translated +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Enter usernames or emails for students who should be beta-testers, one per " +"line, or separated by commas. They will get to see course materials early, " +"as configured via the days_early_for_beta option in the course " +"policy." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send to:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Myself" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Staff and instructors" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "All (students, staff and instructors)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Subject: " +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Max 128 characters)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Please try not to email students more than once per week. Important things " +"to consider before sending:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you read over the email to make sure it says everything you want to " +"say?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Have you sent the email to yourself first to make sure you're happy with how" +" it's displayed, and that embedded links and images work properly?" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "CAUTION!" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Once the 'Send Email' button is clicked, your email will be queued for " +"sending." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "A queued email CANNOT be cancelled." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "No Analytics are available at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Students enrolled (historical count, includes those who have since " +"unenrolled):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students active in the last week:" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Student activity day by day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Day" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Score distribution for problems" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Max" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Points Earned (Num Students)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There is no data available to display at this time." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"Loading the latest graphs for you; depending on your class size, this may " +"take a few minutes." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Count of Students that Opened a Subsection" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution per Problem" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There are no problems in this section." +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Students answering correctly" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Number of students" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "" +"Student distribution per country, all courses, Sep-12 to Oct-17, 1 server " +"(shown here as an example):" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Pending Instructor Tasks" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Type" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task inputs" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Id" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Requester" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task State" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Duration (sec)" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Task Progress" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +#: lms/templates/courseware/instructor_dashboard.html +msgid "unknown" +msgstr "" + +#: lms/templates/courseware/instructor_dashboard.html +msgid "Course errors" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "About {course_id}" +msgstr "" + +#: lms/templates/courseware/mktg_coming_soon.html +msgid "Coming Soon" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "About {course_number}" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Access Courseware" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "You Are Registered" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Register for" +msgstr "" + +#: lms/templates/courseware/mktg_course_about.html +msgid "Registration Is Closed" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "News - MITx 6.002x" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "Updates to Discussion Posts You Follow" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{course_number} Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress for Student '{username}' ({email})" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download your certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{earned:.3n} of {total:.3n} possible points" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Problem Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Practice Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "No problem scores in this section" +msgstr "" + +#: lms/templates/courseware/syllabus.html +msgid "{course.display_number_with_default} Course Info" +msgstr "" + +#: lms/templates/courseware/welcome-back.html +msgid "" +"You were most recently in {section_link}. If you're done with that, choose " +"another section on the left." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Final course details are being wrapped up at this time. Your final standing " +"will be available shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final grade:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required for a {cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your verified {cert_name_long} is being held pending confirmation that the " +"issuance of your {cert_name_short} is in compliance with strict U.S. " +"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " +"mistakenly identified you as being connected with one of those countries, " +"please let us know by contacting {email}. If you would like a refund on your" +" {cert_name_long}, please contact our billing address {billing_email}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your {cert_name_long} is being held pending confirmation that the issuance " +"of your {cert_name_short} is in compliance with strict U.S. embargoes on " +"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " +"identified you as being connected with one of those countries, please let us" +" know by contacting {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your {cert_name_short} is Generating" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open/download a PDF document" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"This link will open/download a PDF document of your verified " +"{cert_name_long}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your ID Verified {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Complete our course feedback survey" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Cover Image" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Enrolled as: " +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +#: lms/templates/verify_student/_verification_header.html +msgid "ID Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Completed - {end_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Started - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course has not yet started" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course Starts - {start_date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Document your accomplishment!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Challenge Yourself!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Take this course as an ID-verified student." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can still sign up for an ID verified {cert_name_long} for this course. " +"If you plan to complete the whole course, it is a great way to recognize " +"your achievement. {link_start}Learn more about the verified " +"{cert_name_long}{link_end}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Upgrade to Verified Track" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Archived Course" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Course" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Are you sure you want to unregister from" +msgstr "" + +#. Translators: The course's name will be added to the end of this sentence. +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Are you sure you want to unregister from the verified {cert_name_long} track" +" of" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"In order to request a refund for the amount you paid, you will need to send " +"an email to {billing_email}. Be sure to include your email and the course " +"name." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "Email Settings" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "You need to re-verify to continue" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in the following courses, you need to " +"re-verify your identity:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "{course_name}: Re-verify by {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Notification Actions" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course_name}, you need to re-verify" +" your identity by {date}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Your re-verification failed" +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "" +"Your re-verification for {course_name} failed and you are no longer eligible" +" for a Verified Certificate. If you think this is in error, please contact " +"us at {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html +msgid "Dismiss" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verification now open for:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Re-verify now:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Pending:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Denied:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_reverification_sidebar.html +msgid "Approved:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "ID-Verification Status" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Reviewed and Verified" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Your verification status is good for one year after submission." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification photos have been submitted and will be reviewed shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "Re-verify Yourself" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"If you fail to pass a verification attempt before your course ends, you will" +" not receive a verified certificate." +msgstr "" + +#: lms/templates/debug/run_python_form.html +msgid "Results:" +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "" +"Sorry! We can't find anything matching your search. Please try another " +"search." +msgstr "" + +#: lms/templates/discussion/_blank_slate.html +msgid "There are no posts here yet. Be the first one to post!" +msgstr "" + +#: lms/templates/discussion/_discussion_course_navigation.html +#: lms/templates/discussion/_discussion_module.html +msgid "New Post" +msgstr "" + +#: lms/templates/discussion/_discussion_module.html +msgid "Show Discussion" +msgstr "" + +#: lms/templates/discussion/_discussion_module_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Filter Topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "filter topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_thread_list_template.html +msgid "Show All Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Show Flagged Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +msgid "Posts I'm Following" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "follow this post" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "post anonymously to classmates" +msgstr "" + +#. Translators: This labels the selector for which group of students can view +#. a +#. post +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Make visible to:" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +msgid "My Cohort" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +msgid "new post title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +#: wiki/forms.py wiki/forms.py wiki/forms.py +msgid "Title" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Enter your question or comment…" +msgstr "" + +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache +msgid "Add post" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Create new post about:" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter List" +msgstr "" + +#: lms/templates/discussion/_new_post.html +msgid "Filter discussion areas" +msgstr "" + +#: lms/templates/discussion/_recent_active_posts.html +msgid "Following" +msgstr "" + +#: lms/templates/discussion/_search_bar.html +msgid "Search posts" +msgstr "" + +#: lms/templates/discussion/_similar_posts.html +msgid "Hide" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Home" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion Topics" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Discussion topics; current selection is: " +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Search all discussions" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Sort by:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "date" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "votes" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "comments" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "Show:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View All" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "View as {name}" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Add A Response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Post a response:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "anonymous" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "• This thread is closed." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "follow" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow this post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Pin Thread" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "Pinned" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "(this post is about %(courseware_title_linked)s)" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Edit post title" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update post" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Add a comment..." +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "endorse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update response" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +msgid "Delete Comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "-posted %(time_ago)s by" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Editing comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Update comment" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"%(comments_count)s %(span_sr_open)scomments (%(unread_comments_count)s " +"unread comments)%(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(comments_count)s %(span_sr_open)scomments %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "%(votes_up_count)s%(span_sr_open)s votes %(span_close)s" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "DISCUSSION HOME:" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "HOW TO USE EDX DISCUSSIONS" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Find discussions" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Focus in on specific topics" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Search for specific posts " +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Sort by date, vote, or comments" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Engage with posts" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Upvote posts and good responses" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Report Forum Misuse" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Follow posts for updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Receive updates" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "Toggle Notifications Setting" +msgstr "" + +#: lms/templates/discussion/_underscore_templates.html +msgid "" +"Check this box to receive an email digest once a day notifying you about " +"new, unread activity from posts you are following." +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid ", " +msgstr "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s discussion started" +msgid_plural "%s discussions started" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/discussion/_user_profile.html +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/discussion/index.html +#: lms/templates/discussion/user_profile.html +msgid "Discussion - {course_number}" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "We're sorry" +msgstr "" + +#: lms/templates/discussion/maintenance.html +msgid "" +"The forums are currently undergoing maintenance. We'll have them back up " +"shortly!" +msgstr "" + +#: lms/templates/discussion/user_profile.html +msgid "User Profile" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Expand discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread.mustache +#: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache +msgid "Collapse discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +msgid "This thread has been pinned by course staff." +msgstr "" + +#: lms/templates/discussion/mustache/_pagination.mustache +#: lms/templates/discussion/mustache/_pagination.mustache +msgid "…" +msgstr "" + +#: lms/templates/discussion/mustache/_profile_thread.mustache +msgid "View discussion" +msgstr "" + +#: lms/templates/discussion/mustache/_user_profile.mustache +msgid "Active Threads" +msgstr "" + +#: lms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for {platform_name}! To activate your account, " +"please copy and paste this address into your web browser's address bar:" +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the about section of the {platform_name} Courses web site." +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the {platform_name} web site." +msgstr "" + +#: lms/templates/emails/activation_email_subject.txt +msgid "Your account for {platform_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Dear {full_name}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "" +"You have been invited to be a beta tester for {course_name} at {site_name} " +"by a member of the course staff." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "To start accessing course materials, please visit {course_url}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {course_about_url} to join the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +msgid "Visit {site_name} to enroll in the course and begin the beta test." +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_message.txt +#: lms/templates/emails/enroll_email_allowedmessage.txt +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "This email was automatically sent from {site_name} to {email_address}" +msgstr "" + +#: lms/templates/emails/add_beta_tester_email_subject.txt +msgid "You have been invited to a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us at" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us immediately. Contact information is listed at:" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "" + +#: lms/templates/emails/email_change.txt +msgid "" +"We received a request to change the e-mail associated with your " +"{platform_name} account from {old_email} to {new_email}. If this is correct," +" please confirm your new e-mail address by visiting:" +msgstr "" + +#: lms/templates/emails/email_change_subject.txt +msgid "Request to change {platform_name} account e-mail" +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "Dear student," +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"You have been invited to join {course_name} at {site_name} by a member of " +"the course staff." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "To access the course visit {course_url} and login." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To access the course visit {course_about_url} and register for the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"To finish your registration, please visit {registration_url} and fill out " +"the registration form making sure to use {email_address} in the E-mail " +"field." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, you will see " +"{course_name} listed on your dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "" +"Once you have registered and activated your account, visit " +"{course_about_url} to join the course." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedmessage.txt +msgid "You can then enroll in {course_name}." +msgstr "" + +#: lms/templates/emails/enroll_email_allowedsubject.txt +msgid "You have been invited to register for {course_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +msgid "" +"You have been enrolled in {course_name} at {site_name} by a member of the " +"course staff. The course should now appear on your {site_name} dashboard." +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledmessage.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "This email was automatically sent from {site_name} to {full_name}" +msgstr "" + +#: lms/templates/emails/enroll_email_enrolledsubject.txt +msgid "You have been enrolled in {course_name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Hi {name}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"Your payment was successful. You will see the charge below on your next " +"credit or debit card statement." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"The charge will show up on your statement under the company name " +"{merchant_name}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "" +"If you have billing questions, please read the FAQ ({faq_url}) or contact " +"{billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "If you have billing questions, please contact {billing_email}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "-The {platform_name} Team" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Your order number is: {order_number}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "The items in your order are:" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Quantity - Description - Price" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/shoppingcart/receipt.html +msgid "#:" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the tech support at" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the course staff at ta@edx.org." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +msgid "" +"You have been removed as a beta tester for {course_name} at {site_name} by a" +" member of the course staff. The course will remain on your dashboard, but " +"you will no longer be part of the beta testing group." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_message.txt +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "Your other courses have not been affected." +msgstr "" + +#: lms/templates/emails/remove_beta_tester_email_subject.txt +msgid "You have been removed from a beta test for {course_name}" +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "Dear Student," +msgstr "" + +#: lms/templates/emails/unenroll_email_allowedmessage.txt +msgid "" +"You have been un-enrolled from course {course_name} by a member of the " +"course staff. Please disregard the invitation previously sent." +msgstr "" + +#: lms/templates/emails/unenroll_email_enrolledmessage.txt +msgid "" +"You have been un-enrolled in {course_name} at {site_name} by a member of the" +" course staff. The course will no longer appear on your {site_name} " +"dashboard." +msgstr "" + +#: lms/templates/emails/unenroll_email_subject.txt +msgid "You have been un-enrolled from {course_name}" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "{course_number} Staff Grading" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"This is the list of problems that currently need to be graded in order to " +"train AI grading and create calibration essays for peer grading. Each " +"problem needs to be treated separately, and we have indicated the number of " +"student submissions that need to be graded. You can grade more than the " +"minimum required number of submissions--this will improve the accuracy of AI" +" grading, though with diminishing returns. You can see the current accuracy " +"of AI grading in the problem view." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Problem List" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "" +"Please note that when you see a submission here, it has been temporarily " +"removed from the grading pool. The submission will return to the grading " +"pool after 30 minutes without any grade being submitted. Hitting the back " +"button will result in a 30 minute wait to be able to grade this submission " +"again." +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Prompt" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "(Hide)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Student Response" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Written Feedback" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Feedback for student (optional)" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Flag as inappropriate content for later review" +msgstr "" + +#: lms/templates/instructor/staff_grading.html +msgid "Skip" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Score Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"The chart below displays the score distribution for each standard problem in" +" your class, specified by the problem's url name." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "" +"Scores are shown without weighting applied, so if your problem contains 2 " +"questions, it will display as having a total of 2 points." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Loading problem list..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/analytics.html +msgid "Gender Distribution" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Enrollment Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Total number of enrollees (instructors, staff members, and students)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Basic Course Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Display Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course started?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Yes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course ended?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Grade Cutoffs:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "The status for any active tasks appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Warnings" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "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" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 +msgid "" +"For large courses, generating this report may take several hours. Please be " +"patient and do not click the button multiple times. Clicking the button " +"multiple times will significantly slow the grade generation process." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The report is generated in the background, meaning it is OK to navigate away" +" from this page while your report is generating." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Grade Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports Available for Download" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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 "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"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. +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Note: To keep student data secure, you cannot save or email these " +"links for direct access. Copies of links expire within 5 minutes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Individual due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"In this section, you have the ability to grant extensions on specific units " +"to individual students. Please note that the latest date is always taken; " +"you cannot use this tool to make an assignment due earlier for a particular " +"student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Choose the graded unit:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the extension due date and time (in UTC; please specify MM/DD/YYYY " +"HH:MM)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Change due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Viewing granted extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Here you can see what extensions have been granted on particular units or " +"for a particular student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Choose a graded unit and click the button to obtain a list of all students " +"who have extensions for the given unit." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List all students with due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Specify a specific student to see all of that student's extensions." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List date extensions for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Resetting extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Resetting a problem's due date rescinds a due date extension for a student " +"on a particular unit. This will revert the due date for the student back to " +"the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reset due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Back to Standard Dashboard" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "section_display_name" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"You will not get notification for emails that bounce, so please double-check" +" spelling." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Email Addresses/Usernames" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Auto Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not yet registered for " +"{platform_name} will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is left unchecked, users who have not yet registered" +" for {platform_name} will not be enrolled, but will be allowed to enroll " +"once they make an account." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Notify users by email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users will receive an email " +"notification." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Unenroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Beta Tester Addition" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Note: Users must have an activated {platform_name} account before they can " +"be enrolled as a beta tester." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is checked, users who have not enrolled in your " +"course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add beta testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Remove beta testers" +msgstr "" + +#. Translators: an "Administration List" is a list, such as Course Staff, that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Administration List Management" +msgstr "" + +#. Translators: an "Administrator Group" is a group, such as Course Staff, +#. that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Select an Administrator Group:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Getting available lists..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Staff cannot modify staff or beta tester lists. To modify these lists, " +"contact your instructor and ask them to add you as an instructor for staff " +"and beta lists, or a discussion admin for discussion management." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Course Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course staff can help you manage limited aspects of your course. Staff can " +"enroll and unenroll students, as well as modify their grades and see all " +"course data. Course staff are not automatically given access to Studio and " +"will not be able to edit your course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Instructors" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Instructors are the core administration of your course. Instructors can add " +"and remove course staff, as well as administer discussion access." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Instructor" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Beta Testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Beta testers can see course content before the rest of the students. They " +"can make sure that the content works, but have no additional privileges." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Beta Tester" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Admins" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion admins can edit or delete any post, clear misuse flags, close and" +" re-open threads, endorse responses, and see posts from all cohorts. They " +"CAN add/delete other moderators and their posts are marked as 'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Discussion Admin" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Moderators" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion moderators can edit or delete any post, clear misuse flags, close" +" and re-open threads, endorse responses, and see posts from all cohorts. " +"They CANNOT add/delete other moderators and their posts are marked as " +"'staff'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Moderator" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Community TAs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Community TA's are members of the community whom you deem particularly " +"helpful on the discussion boards. They can edit or delete any post, clear " +"misuse flags, close and re-open threads, endorse responses, and see posts " +"from all cohorts. Their posts are marked 'Community TA'." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Community TA" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Reload Graphs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Count of Students Opened a Subsection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send Email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Message:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Please try not to email students more than once per week. Before sending " +"your email, consider:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Email actions run in the background. The status for any active tasks - " +"including email tasks - appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"To see the status for all bulk email tasks ever submitted for this course, " +"click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade inspection" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Email or Username" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Click this link to view the student's progress page:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student Progress Page" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Student-specific grade adjustment" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem urlname" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may use just the \"urlname\" if a problem, or \"modulename/urlname\" if " +"not. (For example, if the location is {location1}, then just provide the " +"{urlname1}. If the location is {location2}, then provide {urlname2}.)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Next, select an action to perform for the given user and problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset Student Attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Student Submission" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"You may also delete the entire state of a student for the specified problem:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Delete Student State for Problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescoring runs in the background, and status for active tasks will appear in" +" the 'Pending Instructor Tasks' table. To see status for all tasks submitted" +" for this problem and student, click on this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Then select an action" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset ALL students' attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore ALL students' problem submissions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"The above actions run in the background, and status for active tasks will " +"appear in a table on the Course Info tab. To see status for all tasks " +"submitted for this problem, click on this button" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Background Task History for Problem" +msgstr "" + +#: lms/templates/licenses/serial_numbers.html +msgid "None Available" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Change Preferred Language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Please choose your preferred language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Save Language Settings" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "" +"Don't see your preferred language? {link_start}Volunteer to become a " +"translator!{link_end}" +msgstr "" + +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/modal/accessible_confirm.html +msgid "modal open" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "{course_number} Combined Notifications" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Open Ended Console" +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "Here are items that could potentially need your attention." +msgstr "" + +#: lms/templates/open_ended_problems/combined_notifications.html +msgid "No items require attention at the moment." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "{course_number} Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Flagged Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "" +"Here are a list of open ended problems for this course that have been " +"flagged by students as potentially inappropriate." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "No flagged problems exist." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Unflag" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html +msgid "Ban" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "{course_number} Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Open Ended Problems" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Here is a list of open ended problems for this course." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "You have not attempted any open ended problems yet." +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +#: lms/templates/peer_grading/peer_grading.html +msgid "Problem Name" +msgstr "" + +#: lms/templates/open_ended_problems/open_ended_problems.html +msgid "Grader Type" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"\n" +"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" +"{ul_tag}\n" +"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" +"{li_tag}The instructor needs to score the essays that are used to help you better understand the grading\n" +"criteria.{end_li_tag}\n" +"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"Here are a list of problems that need to be peer graded for this course." +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Graded" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Available" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Required" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "No due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "" +"The due date has passed, and peer grading for this problem is closed at this" +" time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "The due date has passed, and peer grading is closed at this time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to Grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Please include some written feedback as well." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"This submission has explicit, offensive, or (I suspect) plagiarized content." +" " +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "How did I do?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Continue" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Ready to grade!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You have finished learning to grade, which means that you are now ready to " +"start grading." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start Grading!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "You have not yet finished learning to grade this problem." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You will now be shown a series of instructor-scored essays, and will be " +"asked to score them yourself." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"Once you can score the essays similarly to an instructor, you will be ready " +"to grade your peers." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Are you sure that you want to flag this submission?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You are about to flag a submission. You should only flag a submission that " +"contains explicit, offensive, or (suspected) plagiarized content. If the " +"submission is not addressed to the question or is incorrect, you should give" +" it a score of zero and accompanying feedback instead of flagging it." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Remove Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Keep Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Go Back" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "Thanks For Registering!" +msgstr "" + +#: lms/templates/registration/activate_account_notice.html +msgid "" +"Your account is not active yet. An activation link has been sent to {email}," +" along with instructions for activating your account." +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Activation Complete!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "Account already active!" +msgstr "" + +#: lms/templates/registration/activation_complete.html +msgid "You can now {link_start}log in{link_end}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Activation Invalid" +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "" +"Something went wrong. Check to make sure the URL you went to was correct -- " +"e-mail programs will sometimes split it into two lines. If you still have " +"issues, e-mail us to let us know what happened at {email}." +msgstr "" + +#: lms/templates/registration/activation_invalid.html +msgid "Or you can go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "Password reset successful" +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "" +"We've e-mailed you instructions for setting your password to the e-mail " +"address you submitted. You should be receiving it shortly." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Data" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "These reports are delimited by start and end dates." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"These reports are delimited alphabetically by university name. i.e., " +"generating a report with 'Start Letter' A and 'End Letter' C will generate " +"reports for all universities starting with A, B, and C." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Letter: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Letter: " +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "Payment Error" +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "There was an error processing your order!" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your Shopping Cart" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "Your selected items:" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Unit Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Price" +msgstr "" + +#: lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +msgid "Total Amount" +msgstr "" + +#: lms/templates/shoppingcart/list.html +msgid "You have selected no items for purchase." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Register for [Course Name] | Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your Purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please print this receipt page for your records. You should also have " +"received a receipt in your email." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid " () Electronic Receipt" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Order #" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Date:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Items ordered:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Qty" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Note: items with strikethough like " +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid " have been refunded." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Billed To:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Receipt (Order" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are now registered for: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Registered as: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Your Progress" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Current Step: " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Intro" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +msgid "Take ID Photo" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Review" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Make Payment" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/show_requirements.html +#: lms/templates/verify_student/verified.html +msgid "Confirmation" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Congratulations! You are now verified on " +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"You are now registered as a verified student! Your registration details are " +"below." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "You are registered for:" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "A list of courses you have just registered for as a verified student" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Options" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Starts: {start_date}" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to Course" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Go to your Dashboard" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Verified Status" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"We have received your identification details to verify your identity. If " +"there is a problem with any of the items, we will contact you to resubmit. " +"You can now register for any of the verified certificate courses this " +"semester without having to re-verify." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"The professor will ask you to periodically submit a new photo to verify your" +" work during the course (usually at exam times)." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Payment Details" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "" +"Please print this page for your records; it serves as your receipt. You will" +" also receive an email with the same information." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Order No." +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Total" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "this" +msgstr "" + +#: lms/templates/shoppingcart/verified_cert_receipt.html +msgid "Billed To" +msgstr "" + +#: lms/templates/static_templates/404.html +msgid "" +"The page that you were looking for was not found. Go back to the " +"{link_start}homepage{link_end} or let us know about any pages that may have " +"been moved at {email}." +msgstr "" + +#: lms/templates/static_templates/about.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/faq.html +#: lms/templates/static_templates/help.html +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/tos.html +msgid "" +"This page left intentionally blank. It is not used by edx.org but is left " +"here for possible use by installations of Open edX." +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "This Course Unavailable In Your Country" +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "" +"Our system indicates that you are trying to access an edX course from an IP " +"address associated with a country currently subjected to U.S. economic and " +"trade sanctions. Unfortunately, at this time edX must comply with export " +"controls, and we cannot allow you to access this particular course. Feel " +"free to browse our catalogue to find other courses you may be interested in " +"taking." +msgstr "" + +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/honor.html +msgid "Honor Code" +msgstr "" + +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/media-kit.html +msgid "Media Kit" +msgstr "" + +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/press.html +msgid "In the Press" +msgstr "" + +#: lms/templates/static_templates/server-down.html +msgid "Currently the {platform_name} servers are down" +msgstr "" + +#: lms/templates/static_templates/server-down.html +#: lms/templates/static_templates/server-overloaded.html +msgid "" +"Our staff is currently working to get the site back up as soon as possible. " +"Please email us at {tech_support_email} to report any problems or downtime." +msgstr "" + +#: lms/templates/static_templates/server-error.html +msgid "There has been a 500 error on the {platform_name} servers" +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}." +msgstr "" + +#: lms/templates/static_templates/server-overloaded.html +msgid "Currently the {platform_name} servers are overloaded" +msgstr "" + +#: lms/templates/university_profile/edge.html +#: lms/templates/university_profile/edge.html +msgid "edX edge" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Log in to your courses" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Register for classes" +msgstr "" + +#: lms/templates/university_profile/edge.html +msgid "Take free online courses from today's leading universities." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Edit Your Name" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html +msgid "The following error occurred while editing your name:" +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "" +"To uphold the credibility of {platform} certificates, all name changes will " +"be logged and recorded." +msgstr "" + +#: lms/templates/verify_student/_modal_editname.html +msgid "Change my name" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Why Do I Need to Re-Verify?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity. We will send the new photo to be matched up with the photo of the " +"original ID you submitted when you signed up for the course." +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "Having Technical Trouble?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Have questions?" +msgstr "" + +#: lms/templates/verify_student/_reverification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please read {a_start}our FAQs to view common questions about our " +"certificates{a_end}." +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are upgrading your registration for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are re-verifying for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "You are registering for" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Upgrading to:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Re-verifying for:" +msgstr "" + +#: lms/templates/verify_student/_verification_header.html +msgid "Registering as: " +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/_verification_support.html +msgid "Change your mind?" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "You can always continue to audit the course without verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You can always {a_start} audit the course for free {a_end} without " +"verifying." +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "Technical Requirements" +msgstr "" + +#: lms/templates/verify_student/_verification_support.html +msgid "" +"Please make sure your browser is updated to the {a_start}most recent" +" version possible{a_end}. Also, please make sure your web " +"cam is plugged in, turned on, and allowed to function in your web browser " +"(commonly adjustable in your browser settings)." +msgstr "" + +#: lms/templates/verify_student/face_upload.html +msgid "Edit Your Full Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Re-Verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Webcam Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "No Flash Detected" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have Flash installed. {a_start} Get Flash {a_end} to " +"continue your registration." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Error submitting your images" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Oops! Something went wrong. Please confirm your details and try again." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with your " +"original verification." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Don't see your picture? Make sure to allow your browser to use your camera " +"when it asks for permission." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Take photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Looks good" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Tips on taking a successful photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your face is well-lit" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be sure your entire face is inside the frame" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Can we match the photo you took with the one on your ID?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once in position, use the camera button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your picture" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Use the checkmark button" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "once you are happy with the photo" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Common Questions" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need my photo?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"As part of the verification process, we need your photo to confirm that you " +"are you." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "What do you do with this picture?" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "We only use it to verify your identity. It is not displayed anywhere." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches the ID " +"you originally submitted. We will also use this as the name on your " +"certificate." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Edit your name" +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "" +"Once you verify your photo looks good and your name is correct, you can " +"finish your re-verification and return to your course. Note: You " +"will not have another chance to re-verify." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Yes! You can confirm my identity with this information." +msgstr "" + +#: lms/templates/verify_student/midcourse_photo_reverification.html +msgid "Submit photos & re-verify" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Verification Submission Confirmation" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Your Credentials Have Been Updated" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"We have received your re-verification details and submitted them for review." +" Your dashboard will show the notification status once the review is " +"complete." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "" +"Please note: The professor may ask you to re-verify again at other key " +"points in the course." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +msgid "Complete your other re-verifications" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverification_confirmation.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Return to where you left off" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Reverification Status" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You are in the ID Verified track" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following courses:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Re-verify by {date}" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You currently need to re-verify for the following course:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "You have no re-verifications at present." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "The status of your submitted re-verifications:" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Failed" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Don't want to re-verify right now?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "Why do I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"At key points in a course, the professor will ask you to re-verify your " +"identity by submitting a new photo of your face. We will send the new photo " +"to be matched up with the photo of the original ID you submitted when you " +"signed up for the course. If you are taking multiple courses, you may need " +"to re-verify multiple times, once for every important point in each course " +"you are taking as a verified student." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What will I need to re-verify?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because you are just confirming that you are still you, the only thing you " +"will need to do to re-verify is to submit a new photo of your face with " +"your webcam. The process is quick and you will be brought back to where " +"you left off so you can keep on learning." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"If you changed your name during the semester and it no longer matches the " +"original ID you submitted, you will need to re-edit your name to match as " +"well." +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "What if I have trouble with my re-verification?" +msgstr "" + +#: lms/templates/verify_student/midcourse_reverify_dash.html +msgid "" +"Because of the short time that re-verification is open, you will not" +" be able to correct a failed verification. If you think there was " +"an error in the review, please contact us at {email}" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Re-Verification" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Please Resubmit Your Verification Information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"There was an error with your previous verification. In order proceed in the " +"verified certificate of achievement track of your current courses, please " +"complete the following steps." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/reverification_confirmation.html +msgid "Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your face so we can match it with the " +"picture on your ID." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your photo looks good, you can move on to step 2." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Go to Step 2: Re-Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show Us Your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Use your webcam to take a picture of your ID so we can match it with your " +"photo and the name on your account." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Make sure your ID is well-lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Acceptable IDs include drivers licenses, passports, or other goverment-" +"issued IDs that include your name and photo" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Check that there isn't any glare" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Ensure that you can see your photo and read your name" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Try to keep your fingers at the edge to avoid covering important information" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "to capture your ID" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Why do you need a photo of my ID?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We need to match your ID with your photo and name to confirm that you are " +"you." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"We encrypt it and send it to our secure authorization service for review. We" +" use the highest levels of security and do not save the photo or information" +" anywhere once the match has been completed." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Once you verify your ID photo looks good, you can move on to step 3." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 3: Review Your Info" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Verify Your Submission" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure we can verify your identity with the photos and information below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "Review the Photos You've Re-Taken" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Please review the photos and verify that they meet the requirements listed " +"below." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo above needs to meet the following requirements:" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be well lit" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Show your whole face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The photo on your ID must match the photo of your face" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Be readable (not too far away, no glare)" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "The name on your ID must match the name on your account below" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Photos don't meet the requirements?" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Retake Your Photos" +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Make sure your full name on your edX account ({full_name}) matches your ID. " +"We will also use this as the name on your certificate." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +msgid "" +"Once you verify your details match the requirements, you can move onto to " +"confirm your re-verification submisssion." +msgstr "" + +#: lms/templates/verify_student/photo_reverification.html +#: lms/templates/verify_student/photo_verification.html +msgid "Yes! My details all match." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Upgrade Your Registration for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +#: lms/templates/verify_student/verified.html +msgid "Register for {} | Verification" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"You don't seem to have a webcam connected. Double-check that your webcam is " +"connected and working to continue registering, or select to {a_start} audit " +"the course for free {a_end} without verifying." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Error processing your order" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Oops! Something went wrong. Please confirm your details again and click the " +"button to move on to payment. If you are still having trouble, please try " +"again later." +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Take Your Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "What if my camera isn't working?" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Go to Step 2: Take ID Photo" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Review the Photos You've Taken" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Check Your Contribution Level" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "Please confirm your contribution for this course (min. $" +msgstr "" + +#: lms/templates/verify_student/photo_verification.html +msgid "" +"Once you verify your details match the requirements, you can move on to step" +" 4, payment on our secure server." +msgstr "" + +#: lms/templates/verify_student/prompt_midcourse_reverify.html +msgid "" +"To continue in the ID Verified track in {course}, you need to re-verify your" +" identity by {date}. Go to URL." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +msgid "" +"We've captured your re-submitted information and will review it to verify " +"your identity shortly. You should receive an update to your veriication " +"status within 1-2 days. In the meantime, you still have access to all of " +"your course content." +msgstr "" + +#: lms/templates/verify_student/reverification_confirmation.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Return to Your Dashboard" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Re-Verification Failed" +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "" +"Your re-verification was submitted after the re-verification deadline, and " +"you can no longer be re-verified." +msgstr "" + +#: lms/templates/verify_student/reverification_window_expired.html +msgid "Please contact support if you believe this message to be in error." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Upgrade Your Registration for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Register for {}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "You need to activate your edX account before proceeding" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please check your email for further instructions on activating your new " +"account." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Upgrade" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to upgrade to being an ID verified " +"student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "What You Will Need to Register" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"There are three things you will need to register as an ID verified student:" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Activate Your Account" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Check your email" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"you need an active edX account before registering - check your email for " +"instructions" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Identification" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A photo identification document" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"a drivers license, passport, or other goverment or school-issued ID with " +"your name and picture on it" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Webcam" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A webcam and a modern browser" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " +"{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Please make sure your browser is updated to the most recent version possible" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Credit or Debit Card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "A major credit or debit card" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Visa, Master Card, American Express, Discover, Diners Club, JCB with " +"Discover logo" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always continue to audit this course instead." +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "" +"Missing something? You can always {a_start}audit this course instead{a_end}" +msgstr "" + +#: lms/templates/verify_student/show_requirements.html +msgid "Go to Step 1: Take my Photo" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "ID Verification" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You've Been Verified Previously" +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "" +"We've already verified your identity (through the photos of you and your ID " +"you provided earlier). You can proceed to make your secure payment and " +"complete registration." +msgstr "" + +#: lms/templates/verify_student/verified.html +msgid "You have decided to pay $ " +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}(active){span_end}" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "Changes" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}active{span_end}" +msgstr "" + +#: lms/templates/wiki/includes/breadcrumbs.html +msgid "Add article" +msgstr "" + +#: cms/templates/404.html +msgid "The page that you were looking for was not found." +msgstr "" + +#: cms/templates/404.html +msgid "" +"Go back to the {homepage} or let us know about any pages that may have been " +"moved at {email}." +msgstr "" + +#: cms/templates/500.html +msgid "Studio Server Error" +msgstr "" + +#: cms/templates/500.html +msgid "The Studio servers encountered an error" +msgstr "" + +#: cms/templates/500.html +msgid "" +"An error occurred in Studio and the page could not be loaded. Please try " +"again in a few moments." +msgstr "" + +#: cms/templates/500.html +msgid "" +"We've logged the error and our staff is currently working to resolve this " +"error as soon as possible." +msgstr "" + +#: cms/templates/500.html +msgid "If the problem persists, please email us at {email_link}." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +#: cms/templates/activation_invalid.html +msgid "Studio Account Activation" +msgstr "" + +#: cms/templates/activation_active.html +msgid "Your account is already active" +msgstr "" + +#: cms/templates/activation_active.html +msgid "" +"This account, set up using {0}, has already been activated. Please sign in " +"to start working within edX Studio." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +msgid "Sign into Studio" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "Your account activation is complete!" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "" +"Thank you for activating your account. You may now sign in and start using " +"edX Studio to author courses." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Your account activation is invalid" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"We're sorry. Something went wrong with your activation. Check to make sure " +"the URL you went to was correct — e-mail programs will sometimes split" +" it into two lines." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"If you still have issues, contact edX Support. In the meatime, you can also " +"return to" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Contact edX Support" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/widgets/header.html +msgid "Files & Uploads" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Uploading…" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +msgid "Choose File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/asset_index.html +#: cms/templates/asset_index.html +msgid "Upload New File" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Load Another File" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/course_info.html +#: cms/templates/edit-tabs.html cms/templates/overview.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html +msgid "Content" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/course_info.html cms/templates/edit-tabs.html +#: cms/templates/index.html cms/templates/manage_users.html +#: cms/templates/overview.html cms/templates/textbooks.html +msgid "Page Actions" +msgstr "" + +#: cms/templates/asset_index.html +msgid "Loading…" +msgstr "" + +#: cms/templates/asset_index.html +msgid "What files are listed here?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"In addition to the files you upload on this page, any files that you add to " +"the course appear in this list. These files include your course image, " +"textbook chapters, and files that appear on your Course Handouts sidebar." +msgstr "" + +#: cms/templates/asset_index.html +msgid "File URLs" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the Embed URL value to link to the file or image from a component, a" +" course update, or a course handout." +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You use the External URL value to reference the file or image from outside " +"of your course. Do not use the External URL as a link value within your " +"course." +msgstr "" + +#: cms/templates/asset_index.html cms/templates/container.html +#: cms/templates/overview.html cms/templates/settings_graders.html +msgid "What can I do on this page?" +msgstr "" + +#: cms/templates/asset_index.html +msgid "" +"You can upload new files or view, download, or delete existing files. You " +"can lock a file so that people who are not enrolled in your course cannot " +"access that file." +msgstr "" + +#: cms/templates/asset_index.html +msgid "Your file has been deleted." +msgstr "" + +#: cms/templates/asset_index.html +msgid "close alert" +msgstr "" + +#: cms/templates/checklists.html cms/templates/export.html +#: cms/templates/export_git.html cms/templates/import.html +#: cms/templates/widgets/header.html +msgid "Tools" +msgstr "" + +#: cms/templates/checklists.html +msgid "Course Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "Current Checklists" +msgstr "" + +#: cms/templates/checklists.html +msgid "What are course checklists?" +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Course checklists are tools to help you understand and keep track of all the" +" steps necessary to get your course ready for students." +msgstr "" + +#: cms/templates/checklists.html +msgid "" +"Any changes you make to these checklists are saved automatically and are " +"immediately visible to other course team members." +msgstr "" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +msgid "Duplicate" +msgstr "" + +#: cms/templates/component.html +msgid "Duplicate this component" +msgstr "" + +#: cms/templates/component.html +msgid "Delete this component" +msgstr "" + +#: cms/templates/component.html cms/templates/container_xblock_component.html +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/overview.html cms/templates/overview.html +msgid "Drag to reorder" +msgstr "" + +#: cms/templates/container.html +msgid "Container" +msgstr "" + +#: cms/templates/container.html +msgid "This page has no content yet." +msgstr "" + +#: cms/templates/container.html cms/templates/container.html +msgid "Publishing Status" +msgstr "" + +#: cms/templates/container.html +msgid "Published" +msgstr "" + +#: cms/templates/container.html +msgid "" +"To make changes to the content of this page, you need to edit unit " +"{unit_link} as a draft." +msgstr "" + +#: cms/templates/container.html +msgid "Draft" +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can edit the content of this page, and your changes will be published " +"with unit {unit_link}." +msgstr "" + +#: cms/templates/container.html +msgid "" +"You can view and edit course components that contain other components on " +"this page. In the case of experiment blocks, this allows you to confirm that" +" you have properly configured your experiment groups and make changes to " +"existing content." +msgstr "" + +#: cms/templates/course_info.html cms/templates/course_info.html +msgid "Course Updates" +msgstr "" + +#: cms/templates/course_info.html +msgid "New Update" +msgstr "" + +#: cms/templates/course_info.html +msgid "" +"Use course updates to notify students of important dates or exams, highlight" +" particular discussions in the forums, announce schedule changes, and " +"respond to student questions. You add or edit updates in HTML." +msgstr "" + +#. Translators: Pages refer to the tabs that appear in the top navigation of +#. each course. +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +#: cms/templates/export.html cms/templates/widgets/header.html +msgid "Pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "New Page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit_subsection.html +#: cms/templates/index.html cms/templates/overview.html +#: cms/templates/unit.html +msgid "View Live" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Show this page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "Show/hide page" +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html +msgid "This page cannot be reordered" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "You can add additional custom pages to your course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Add a New Page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "What are pages?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages are listed horizontally at the top of your course. Default pages " +"(Courseware, Course info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages that you create." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Custom pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"You can create and edit custom pages to provide students with additional " +"course content. For example, you can create pages for the grading policy, " +"course slides, and a course calendar. " +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "How do pages look to students in my course?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Students see the default and custom pages at the top of your course and use " +"these links to navigate." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "See an example" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Pages in Your Course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Preview of Pages in your course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages appear in your course's top navigation bar. The default pages " +"(Courseware, Course Info, Discussion, Wiki, and Progress) are followed by " +"textbooks and custom pages." +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/howitworks.html +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "close modal" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "CMS Subsection" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/unit.html +msgid "Display Name:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Units:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Subsection Settings" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Day" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/overview.html +msgid "Release Time" +msgstr "" + +#: cms/templates/edit_subsection.html cms/templates/edit_subsection.html +#: cms/templates/overview.html +msgid "Coordinated Universal Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "UTC" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "" +"The date above differs from the release date of {name}, which is unset." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "The date above differs from the release date of {name} - {start_time}" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Sync to {name}." +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Graded as:" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Set a due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Day" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Due Time" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Remove due date" +msgstr "" + +#: cms/templates/edit_subsection.html +msgid "Preview Drafts" +msgstr "" + +#: cms/templates/error.html +msgid "Internal Server Error" +msgstr "" + +#: cms/templates/error.html +msgid "The Page You Requested Page Cannot be Found" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. We couldn't find the Studio page you're looking for. You may " +"want to return to the Studio Dashboard and try again. If you are still " +"having problems accessing things, please feel free to {link_start}contact " +"Studio support{link_end} for further help." +msgstr "" + +#: cms/templates/error.html cms/templates/error.html +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Use our feedback tool, Tender, to share your feedback" +msgstr "" + +#: cms/templates/error.html +msgid "The Server Encountered an Error" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. There was a problem with the server while trying to process " +"your last request. You may want to return to the Studio Dashboard or try " +"this request again. If you are still having problems accessing things, " +"please feel free to {link_start}contact Studio support{link_end} for further" +" help." +msgstr "" + +#: cms/templates/error.html +msgid "Back to dashboard" +msgstr "" + +#: cms/templates/export.html cms/templates/export.html +msgid "Course Export" +msgstr "" + +#: cms/templates/export.html +msgid "About Exporting Courses" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export courses and edit them outside of Studio. The exported file is" +" a .tar.gz file (that is, a .tar file compressed with GNU Zip) that contains" +" the course structure and content. You can also re-import courses that " +"you've exported." +msgstr "" + +#: cms/templates/export.html +msgid "Export My Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Export Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}exported with{em_end} your course:" +msgstr "" + +#: cms/templates/export.html +msgid "Course Content (all Sections, Sub-sections, and Units)" +msgstr "" + +#: cms/templates/export.html +msgid "Course Structure" +msgstr "" + +#: cms/templates/export.html +msgid "Individual Problems" +msgstr "" + +#: cms/templates/export.html +msgid "Course Assets" +msgstr "" + +#: cms/templates/export.html +msgid "Course Settings" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}not exported{em_end} with your course:" +msgstr "" + +#: cms/templates/export.html +msgid "User Data" +msgstr "" + +#: cms/templates/export.html +msgid "Course Team Data" +msgstr "" + +#: cms/templates/export.html +msgid "Forum/discussion Data" +msgstr "" + +#: cms/templates/export.html +msgid "Certificates" +msgstr "" + +#: cms/templates/export.html +msgid "Why export a course?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your course directly, outside of Studio. You" +" may want to create a backup copy of your course. Or, you may want to create" +" a copy of your course that you can later import into another course " +"instance and customize." +msgstr "" + +#: cms/templates/export.html +msgid "What content is exported?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are exported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, is not exported." +msgstr "" + +#: cms/templates/export.html +msgid "Opening the downloaded file" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the course.xml file, as well as subfolders that contain course" +" content." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git" +msgstr "" + +#: cms/templates/export_git.html cms/templates/export_git.html +#: cms/templates/widgets/header.html +msgid "Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "About Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "Use this to export your course to its git repository." +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"This will then trigger an automatic update of the main LMS site and update " +"the contents of your course visible there to students if automatic git " +"imports are configured." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git:" +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"giturl must be defined in your course settings before you can export to git." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Failed" +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Succeeded" +msgstr "" + +#: cms/templates/export_git.html +msgid "Your course:" +msgstr "" + +#: cms/templates/export_git.html +msgid "Course git url:" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome to" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio helps manage your courses online, so you can focus on teaching them" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Studio's Many Features" +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "Studio Helps You Keep Your Courses Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Keeping Your Course Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"The backbone of your course is how it is organized. Studio offers an " +"Outline editor, providing a simple hierarchy and easy drag " +"and drop to help you and your students stay organized." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple Organization For Content" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio uses a simple hierarchy of sections and " +"subsections to organize your content." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Change Your Mind Anytime" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Draft your outline and build content anywhere. Simple drag and drop tools " +"let your reorganize quickly." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Go A Week Or A Semester At A Time" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Build and release sections to your students incrementally. " +"You don't have to have it all done at once." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +#: cms/templates/howitworks.html +msgid "Learning is More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio lets you weave your content together in a way that reinforces " +"learning — short video lectures interleaved with exercises and more. " +"Insert videos and author a wide variety of exercise types with just a few " +"clicks." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Create Learning Pathways" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Help your students understand a small interactive piece at a time with " +"multimedia, HTML, and exercises." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work Visually, Organize Quickly" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Work visually and see exactly what your students will see. Reorganize all " +"your content with drag and drop." +msgstr "" + +#: cms/templates/howitworks.html +msgid "A Broad Library of Problem Types" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"It's more than just multiple choice. Studio has nearly a dozen types of " +"problems to challenge your learners." +msgstr "" + +#: cms/templates/howitworks.html cms/templates/howitworks.html +msgid "" +"Studio Gives You Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Studio works like web applications you already know, yet understands how you" +" build curriculum. Instant publishing to the web when you want it, " +"incremental release when it makes sense. And with co-authors, you can have a" +" whole team building a course, together." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Instant Changes" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Caught a bug? No problem. When you want, your changes to live when you hit " +"Save." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Release-On Date Publishing" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"When you've finished a section, pick when you want it to go" +" live and Studio takes care of the rest. Build your course incrementally." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work in Teams" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Co-authors have full access to all the same authoring tools. Make your " +"course better through a team effort." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up for Studio Today!" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up & Start Making an edX Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Already have a Studio Account? Sign In" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Outlining Your Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simple two-level outline to organize your couse. Drag and drop, and see your" +" course at a glance." +msgstr "" + +#: cms/templates/howitworks.html +msgid "More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Quickly create videos, text snippets, inline discussions, and a variety of " +"problem types." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Publishing on Date" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simply set the date of a section or subsection, and Studio will publish it " +"to your students for you." +msgstr "" + +#: cms/templates/html_error.html +msgid "We're having trouble rendering your component" +msgstr "" + +#: cms/templates/html_error.html +msgid "" +"Students will not be able to access this component. Re-edit your component " +"to fix the error." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Course Import" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a course before continuing. Content of the " +"imported course replaces all the content of this course. {em_start}You " +"cannot undo a course import{em_end}. We recommend that you first export the " +"current course, so you have a backup copy of it." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "" +"The course that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " +"It may also contain other files." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your course until the import operation has completed." +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and files with that extension +#. are called "gzipped tar files": these terms should not be translated +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Course Content" +msgstr "" + +#: cms/templates/import.html +msgid "Choose a File to Import" +msgstr "" + +#: cms/templates/import.html +msgid "File Chosen:" +msgstr "" + +#: cms/templates/import.html +msgid "Replace my course with the one above" +msgstr "" + +#: cms/templates/import.html +msgid "Course Import Status" +msgstr "" + +#: cms/templates/import.html +msgid "Uploading" +msgstr "" + +#: cms/templates/import.html +msgid "Transferring your file to our servers" +msgstr "" + +#: cms/templates/import.html +msgid "Unpacking" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Expanding and preparing folder/file structure (You can now leave this page " +"safely, but avoid making drastic changes to content until this import is " +"complete)" +msgstr "" + +#: cms/templates/import.html +msgid "Verifying" +msgstr "" + +#: cms/templates/import.html +msgid "Reviewing semantics, syntax, and required data" +msgstr "" + +#: cms/templates/import.html +msgid "Updating Course" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this course. This may take a while " +"with larger courses." +msgstr "" + +#: cms/templates/import.html +msgid "Success" +msgstr "" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this course" +msgstr "" + +#: cms/templates/import.html +msgid "View Updated Outline" +msgstr "" + +#: cms/templates/import.html +msgid "Why import a course?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"You may want to run a new version of an existing course, or replace an " +"existing course altogether. Or, you may have developed a course outside " +"Studio." +msgstr "" + +#: cms/templates/import.html +msgid "What content is imported?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Only the course content and structure (including sections, subsections, and " +"units) are imported. Other data, including student data, grading " +"information, discussion forum data, course settings, and course team " +"information, remains the same as it was in the existing course." +msgstr "" + +#: cms/templates/import.html +msgid "Warning: Importing while a course is running" +msgstr "" + +#: cms/templates/import.html +msgid "" +"If you perform an import while your course is running, and you change the " +"URL names (or url_name nodes) of any Problem components, the student data " +"associated with those Problem components may be lost. This data includes " +"students' problem scores." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error during the upload process." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while unpacking the file." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while verifying the file you submitted." +msgstr "" + +#: cms/templates/import.html +msgid "There was an error while importing the new course to our database." +msgstr "" + +#: cms/templates/import.html +msgid "Your import has failed." +msgstr "" + +#: cms/templates/import.html cms/templates/import.html +msgid "Choose new file" +msgstr "" + +#: cms/templates/import.html +msgid "Your import is in progress; navigating away will abort it." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +#: cms/templates/widgets/header.html +msgid "My Courses" +msgstr "" + +#: cms/templates/index.html +msgid "New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Email staff to create course" +msgstr "" + +#: cms/templates/index.html +msgid "Welcome, {0}!" +msgstr "" + +#: cms/templates/index.html +msgid "Here are all of the courses you currently have access to in Studio:" +msgstr "" + +#: cms/templates/index.html +msgid "You currently aren't associated with any Studio Courses." +msgstr "" + +#: cms/templates/index.html +msgid "Please correct the highlighted fields below." +msgstr "" + +#: cms/templates/index.html +msgid "Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Required Information to Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. Introduction to Computer Science" +msgstr "" + +#: cms/templates/index.html +msgid "The public display name for your course." +msgstr "" + +#: cms/templates/index.html cms/templates/settings.html +msgid "Organization" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. UniversityX or OrganizationX" +msgstr "" + +#: cms/templates/index.html +msgid "The name of the organization sponsoring the course." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed." +msgstr "" + +#: cms/templates/index.html +msgid "" +"This cannot be changed, but you can set a different display name in Advanced" +" Settings later." +msgstr "" + +#: cms/templates/index.html +msgid "e.g. CS101" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The unique number that identifies your course within your organization." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "" +"Note: This is part of your course URL, so no spaces or special characters " +"are allowed and it cannot be changed." +msgstr "" + +#: cms/templates/index.html +msgid "Course Run" +msgstr "" + +#: cms/templates/index.html +msgid "e.g. 2014_T1" +msgstr "" + +#: cms/templates/index.html +msgid "The term in which your course will run." +msgstr "" + +#: cms/templates/index.html +msgid "Create" +msgstr "" + +#: cms/templates/index.html +msgid "Course Run:" +msgstr "" + +#: cms/templates/index.html +msgid "Are you staff on an existing Studio course?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"You will need to be added to the course in Studio by the course creator. " +"Please get in touch with the course creator or administrator for the " +"specific course you are helping to author." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Create Your First Course" +msgstr "" + +#: cms/templates/index.html +msgid "Your new course is just a click away!" +msgstr "" + +#: cms/templates/index.html +msgid "Becoming a Course Creator in Studio" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team will " +"evaluate your request and provide you feedback within 24 hours during the " +"work week." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status:" +msgstr "" + +#: cms/templates/index.html +msgid "Request the Ability to Create Courses" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator Request Status" +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is has " +"completed evaluating your request." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Your Course Creator request is:" +msgstr "" + +#: cms/templates/index.html +msgid "Denied" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request did not meet the criteria/guidelines specified by edX Staff." +msgstr "" + +#: cms/templates/index.html +msgid "" +"edX Studio is a hosted solution for our xConsortium partners and selected " +"guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by edX. Our team is " +"currently evaluating your request." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request is currently being reviewed by edX staff and should be updated " +"shortly." +msgstr "" + +#: cms/templates/index.html cms/templates/index.html +msgid "Need help?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"If you are new to Studio and having trouble getting started, there are a few" +" things that may be of help:" +msgstr "" + +#: cms/templates/index.html +msgid "Get started by reading Studio's Documentation" +msgstr "" + +#: cms/templates/index.html +msgid "Request help with Studio" +msgstr "" + +#: cms/templates/index.html cms/templates/index.html cms/templates/index.html +msgid "Can I create courses in Studio?" +msgstr "" + +#: cms/templates/index.html +msgid "In order to create courses in Studio, you must" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX staff to help you create a course" +msgstr "" + +#: cms/templates/index.html +msgid "" +"In order to create courses in Studio, you must have course creator " +"privileges to create your own course." +msgstr "" + +#: cms/templates/index.html +msgid "Your request to author courses in studio has been denied. Please" +msgstr "" + +#: cms/templates/index.html +msgid "contact edX Staff with further questions" +msgstr "" + +#: cms/templates/index.html +msgid "Thanks for signing up, %(name)s!" +msgstr "" + +#: cms/templates/index.html +msgid "We need to verify your email address" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Almost there! In order to complete your sign up we need you to verify your " +"email address (%(email)s). An activation message and next steps should be " +"waiting for you there." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Please check your Junk or Spam folders in case our email isn't in your " +"INBOX. Still can't find the verification email? Request help via the link " +"below." +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/header.html +msgid "Sign In" +msgstr "" + +#: cms/templates/login.html cms/templates/login.html +msgid "Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html +msgid "Don't have a Studio Account? Sign up!" +msgstr "" + +#: cms/templates/login.html +msgid "Required Information to Sign In to edX Studio" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +msgid "Email Address" +msgstr "" + +#: cms/templates/login.html cms/templates/widgets/sock.html +msgid "Studio Support" +msgstr "" + +#: cms/templates/login.html +msgid "" +"Having trouble with your account? Use {link_start}our support " +"center{link_end} to look over self help steps, find solutions others have " +"found to the same problem, or let us know of your issue." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Settings" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Course Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a User to Your Course's Team" +msgstr "" + +#: cms/templates/manage_users.html +msgid "New Team Member Information" +msgstr "" + +#: cms/templates/manage_users.html +msgid "User's Email Address" +msgstr "" + +#: cms/templates/manage_users.html +msgid "e.g. jane.doe@gmail.com" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Please provide the email address of the course staff member you'd like to " +"add" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add User" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "Current Role:" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users.html +msgid "You!" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Staff" +msgstr "" + +#: cms/templates/manage_users.html +msgid "send an email message to {email}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Promote another member to Admin to remove your admin rights" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Remove Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Admin Access" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Delete the user, {username}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Team Members to This Course" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Adding team members makes course authoring collaborative. Users must be " +"signed up for Studio and have an active account. " +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Roles" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Course team members, or staff, are course co-authors. They have full writing" +" and editing privileges on all course content." +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Admins are course team members who can add and remove other course team " +"members." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Transferring Ownership" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Every course must have an Admin. If you're the Admin and you want transfer " +"ownership of the course, click Add admin access to make another user the " +"Admin, then ask that user to remove you from the Course Team list." +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Course Outline" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +#: cms/templates/overview.html +msgid "Expand/collapse this section" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Section Name" +msgstr "" + +#: cms/templates/overview.html +msgid "Add a new section name" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "Delete this section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to re-order" +msgstr "" + +#: cms/templates/overview.html cms/templates/overview.html +msgid "New Subsection" +msgstr "" + +#: cms/templates/overview.html cms/templates/widgets/units.html +msgid "New Unit" +msgstr "" + +#: cms/templates/overview.html +msgid "You haven't added any sections to your course outline yet." +msgstr "" + +#: cms/templates/overview.html +msgid "Add your first section" +msgstr "" + +#: cms/templates/overview.html +msgid "Collapse All Sections" +msgstr "" + +#: cms/templates/overview.html +msgid "New Section" +msgstr "" + +#: cms/templates/overview.html +msgid "This section is not scheduled for release" +msgstr "" + +#: cms/templates/overview.html +msgid "Schedule" +msgstr "" + +#: cms/templates/overview.html +msgid "Release date:" +msgstr "" + +#: cms/templates/overview.html +msgid "Edit section release date" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete section" +msgstr "" + +#: cms/templates/overview.html +msgid "Drag to reorder section" +msgstr "" + +#: cms/templates/overview.html +msgid "Expand/collapse this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete this subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "Delete subsection" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"You can create new sections and subsections, set the release date for " +"sections, and create new units in existing subsections. You can set the " +"assignment type for subsections that are to be graded, and you can open a " +"subsection for further editing." +msgstr "" + +#: cms/templates/overview.html +msgid "" +"In addition, you can drag and drop sections, subsections, and units to " +"reorganize your course." +msgstr "" + +#: cms/templates/overview.html +msgid "Section Release Date" +msgstr "" + +#: cms/templates/overview.html +msgid "" +"On the date set below, this section - {name} - will be released to students." +" Any units marked private will only be visible to admins." +msgstr "" + +#: cms/templates/overview.html +msgid "Form Actions" +msgstr "" + +#: cms/templates/register.html +msgid "Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "Already have a Studio Account? Sign in" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Ready to start creating online courses? Sign up below and start creating " +"your first edX course today." +msgstr "" + +#: cms/templates/register.html +msgid "Required Information to Sign Up for edX Studio" +msgstr "" + +#: cms/templates/register.html +msgid "" +"This will be used in public discussions with your courses and in our edX101 " +"support forums" +msgstr "" + +#: cms/templates/register.html +msgid "Your Location" +msgstr "" + +#: cms/templates/register.html +msgid "I agree to the {a_start} Terms of Service {a_end}" +msgstr "" + +#: cms/templates/register.html +msgid "Create My Account & Start Authoring Courses" +msgstr "" + +#: cms/templates/register.html +msgid "Common Studio Questions" +msgstr "" + +#: cms/templates/register.html +msgid "Who is Studio for?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is for anyone that wants to create online courses that leverage the " +"global edX platform. Our users are often faculty members, teaching " +"assistants and course staff, and members of instructional technology groups." +msgstr "" + +#: cms/templates/register.html +msgid "How technically savvy do I need to be to create courses in Studio?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Studio is designed to be easy to use by almost anyone familiar with common " +"web-based authoring environments (Wordpress, Moodle, etc.). No programming " +"knowledge is required, but for some of the more advanced features, a " +"technical background would be helpful. As always, we are here to help, so " +"don't hesitate to dive right in." +msgstr "" + +#: cms/templates/register.html +msgid "I've never authored a course online before. Is there help?" +msgstr "" + +#: cms/templates/register.html +msgid "" +"Absolutely. We have created an online course, edX101, that describes some " +"best practices: from filming video, creating exercises, to the basics of " +"running an online course. Additionally, we're always here to help, just drop" +" us a note." +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details Settings" +msgstr "" + +#: cms/templates/settings.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/settings.html +msgid "Basic Information" +msgstr "" + +#: cms/templates/settings.html +msgid "The nuts and bolts of your course" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "This field is disabled: this information cannot be changed." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Summary Page" +msgstr "" + +#: cms/templates/settings.html +msgid "(for student enrollment and access)" +msgstr "" + +#: cms/templates/settings.html +msgid "Send a note to students via email" +msgstr "" + +#: cms/templates/settings.html +msgid "Invite your students" +msgstr "" + +#: cms/templates/settings.html +msgid "Promoting Your Course with edX" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course summary page will not be viewable until your course has been " +"announced. To provide content for the page and preview it, follow the " +"instructions provided by your PM." +msgstr "" + +#: cms/templates/settings.html +msgid "Course Schedule" +msgstr "" + +#: cms/templates/settings.html +msgid "Dates that control when your course can be viewed" +msgstr "" + +#: cms/templates/settings.html +msgid "First day the course begins" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day your course is active" +msgstr "" + +#: cms/templates/settings.html +msgid "Course End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Date" +msgstr "" + +#: cms/templates/settings.html +msgid "First day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment Start Time" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Date" +msgstr "" + +#: cms/templates/settings.html +msgid "Last day students can enroll" +msgstr "" + +#: cms/templates/settings.html +msgid "Enrollment End Time" +msgstr "" + +#: cms/templates/settings.html +msgid "These Dates Are Not Used When Promoting Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"These dates impact when your courseware can be viewed, but " +"they are not the dates shown on your course summary page. " +"To provide the course start and registration dates as shown on your course " +"summary page, follow the instructions provided by your PM or Conrad Warre (conrad@edx.org)." +msgstr "" + +#: cms/templates/settings.html +msgid "Introducing Your Course" +msgstr "" + +#: cms/templates/settings.html +msgid "Information for prospective students" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Short Description" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Appears on the course catalog page when students roll over the course name. " +"Limit to ~150 characters" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Overview" +msgstr "" + +#: cms/templates/settings.html +msgid "your course summary page" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings.html +#: cms/templates/settings.html +msgid "Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"You can manage this image along with all of your other files " +"& uploads" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 375px wide by 200px tall)" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your course image (Note: only JPEG " +"or PNG format supported)" +msgstr "" + +#: cms/templates/settings.html +msgid "Upload Course Image" +msgstr "" + +#: cms/templates/settings.html +msgid "Course Introduction Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Delete Current Video" +msgstr "" + +#: cms/templates/settings.html +msgid "Enter your YouTube video's ID (along with any restriction parameters)" +msgstr "" + +#: cms/templates/settings.html +msgid "Requirements" +msgstr "" + +#: cms/templates/settings.html +msgid "Expectations of the students taking this course" +msgstr "" + +#: cms/templates/settings.html +msgid "Hours of Effort per Week" +msgstr "" + +#: cms/templates/settings.html +msgid "Time spent on all course work" +msgstr "" + +#: cms/templates/settings.html +msgid "How are these settings used?" +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Your course's schedule determines when students can enroll in and begin a " +"course." +msgstr "" + +#: cms/templates/settings.html +msgid "" +"Other information from this page appears on the About page for your course. " +"This information includes the course overview, course image, introduction " +"video, and estimated time requirements. Students use About pages to choose " +"new courses to take." +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html +msgid "Other Course Settings" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +msgid "Grading" +msgstr "" + +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +msgid "Advanced Settings" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "There was an error saving your information. Please see below." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Manual Policy Definition" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Warning: Do not modify these policies unless you are " +"familiar with their purpose." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "What do advanced settings do?" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Advanced settings control specific course functionality. On this page, you " +"can edit manual policies, which are JSON-based key and value pairs that " +"control specific course settings." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Any policies you modify here override all other information you've defined " +"elsewhere in Studio. Do not edit policies unless you are familiar with both " +"their purpose and syntax." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" +" you use double quotation marks (") around the string. Do not use " +"single quotation marks (')." +msgstr "" + +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +msgid "Details & Schedule" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Settings" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Overall Grade Range" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Your overall grading scale for student final grades" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Rules & Policies" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Deadlines, requirements, and logistics around grading student work" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grace Period on Deadline:" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Leeway on due dates" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Assignment Types" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Categories and labels for any exercises that are gradable" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "New Assignment Type" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can use the slider under Overall Grade Range to specify whether your " +"course is pass/fail or graded by letter, and to establish the thresholds for" +" each grade." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can specify whether your course offers students a grace period for late " +"assignments." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can also create assignment types, such as homework, labs, quizzes, and " +"exams, and specify how much of a student's grade each assignment type is " +"worth." +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +#: cms/templates/studio_vertical_wrapper.html +msgid "Expand or Collapse" +msgstr "" + +#: cms/templates/studio_vertical_wrapper.html +msgid "No Actions" +msgstr "" + +#: cms/templates/textbooks.html +msgid "You have unsaved changes. Do you really want to leave this page?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "New Textbook" +msgstr "" + +#: cms/templates/textbooks.html +msgid "Why should I break my textbook into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"Breaking your textbook into multiple chapters reduces loading times for " +"students, especially those with slow Internet connections. Breaking up " +"textbooks into chapters can also help students more easily find topic-based " +"information." +msgstr "" + +#: cms/templates/textbooks.html +msgid "What if my book isn't divided into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"If your textbook doesn't have individual chapters, you can upload the entire" +" text as a single chapter and enter a name of your choice in the Chapter " +"Name field." +msgstr "" + +#: cms/templates/unit.html cms/templates/ux/reference/unit.html +msgid "Individual Unit" +msgstr "" + +#: cms/templates/unit.html +msgid "You are editing a draft." +msgstr "" + +#: cms/templates/unit.html +msgid "This unit was originally published on {date}." +msgstr "" + +#: cms/templates/unit.html +msgid "View the Live Version" +msgstr "" + +#: cms/templates/unit.html +msgid "Add New Component" +msgstr "" + +#: cms/templates/unit.html +msgid "Common Problem Types" +msgstr "" + +#: cms/templates/unit.html +msgid "Advanced" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Settings" +msgstr "" + +#: cms/templates/unit.html +msgid "Visibility:" +msgstr "" + +#: cms/templates/unit.html +msgid "Public" +msgstr "" + +#: cms/templates/unit.html +msgid "Private" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit has been published. To make changes, you must {link_start}edit a " +"draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This is a draft of the published unit. To update the live version, you must " +"{link_start}replace it with this draft{link_end}." +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students on " +"{date} with the subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "" +"This unit is scheduled to be released to students with the " +"subsection {link_start}{name}{link_end}" +msgstr "" + +#: cms/templates/unit.html +msgid "Delete Draft" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Location" +msgstr "" + +#: cms/templates/unit.html +msgid "Unit Identifier:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for edX Studio! To activate your account, please " +"copy and paste this address into your web browser's address bar:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the edX web site." +msgstr "" + +#: cms/templates/emails/activation_email_subject.txt +msgid "Your account for edX Studio" +msgstr "" + +#: cms/templates/emails/course_creator_admin_subject.txt +msgid "{email} has requested Studio course creator privileges on edge" +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "" +"User '{user}' with e-mail {email} has requested Studio course creator " +"privileges on edge." +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "To grant or deny this request, use the course creator admin table." +msgstr "" + +#: cms/templates/emails/course_creator_denied.txt +msgid "" +"Your request for course creation rights to edX Studio have been denied. If " +"you believe this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_granted.txt +msgid "" +"Your request for course creation rights to edX Studio have been granted. To " +"create your first course, visit:" +msgstr "" + +#: cms/templates/emails/course_creator_revoked.txt +msgid "" +"Your course creation rights to edX Studio have been revoked. If you believe " +"this was in error, please contact: " +msgstr "" + +#: cms/templates/emails/course_creator_subject.txt +msgid "Your course creator status for edX Studio" +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "You can now {link_start}login{link_end}." +msgstr "" + +#: cms/templates/registration/reg_complete.html +msgid "" +"An activation link has been sent to {email}, along with instructions for " +"activating your account." +msgstr "" + +#: cms/templates/widgets/footer.html +msgid "All rights reserved." +msgstr "" + +#: cms/templates/widgets/footer.html cms/templates/widgets/header.html +#: cms/templates/widgets/sock.html +msgid "Contact Us" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Current Course:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "{course_name}'s Navigation:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Outline" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Updates" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Checklists" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Import" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Export" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Help & Account Navigation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +msgid "This is a PDF Document" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Documentation" +msgstr "" + +#: cms/templates/widgets/header.html cms/templates/widgets/sock.html +#: cms/templates/widgets/sock.html +msgid "Studio Help Center" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Currently signed in as:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Sign Out" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "You're not currently signed in" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "How Studio Works" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Studio Help" +msgstr "" + +#: cms/templates/widgets/metadata-edit.html +msgid "Launch Latex Source Compiler" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Heading 1" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Multiple Choice" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Checkboxes" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Text Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Numerical Input" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Dropdown" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +#: cms/templates/widgets/problem-edit.html +msgid "Explanation" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Advanced Editor" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Toggle Cheatsheet" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Label" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "edX Studio Help" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Need help with Studio? Creating a course is complex, so we're here to help. " +"Take advantage of our documentation, help center, as well as our edX101 " +"introduction course for course authors." +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Download Studio Documentation" +msgstr "" + +#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html +msgid "How to use Studio to build your course" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Enroll in edX101" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "Contact us about Studio" +msgstr "" + +#: cms/templates/widgets/sock.html +msgid "" +"Have problems, questions, or suggestions about Studio? We're also here to " +"listen to any feedback you want to share." +msgstr "" + +#: cms/templates/widgets/tabs-aggregator.html +msgid "name" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete this unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Delete unit" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to sort" +msgstr "" + +#: cms/templates/widgets/units.html +msgid "Drag to reorder unit" +msgstr "" + +# empty +msgid "This is a key string." +msgstr "" + +#: wiki/admin.py wiki/models/article.py +msgid "created" +msgstr "" + +#: wiki/forms.py +msgid "Only localhost... muahahaha" +msgstr "" + +#: wiki/forms.py +msgid "Initial title of the article. May be overridden with revision titles." +msgstr "" + +#: wiki/forms.py +msgid "Type in some contents" +msgstr "" + +#: wiki/forms.py +msgid "" +"This is just the initial contents of your article. After creating it, you " +"can use more complex features like adding plugins, meta data, related " +"articles etc..." +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Contents" +msgstr "" + +#: wiki/forms.py wiki/forms.py +msgid "Summary" +msgstr "" + +#: wiki/forms.py +msgid "" +"Give a short reason for your edit, which will be stated in the revision log." +msgstr "" + +#: wiki/forms.py +msgid "" +"While you were editing, someone else changed the revision. Your contents " +"have been automatically merged with the new contents. Please review the text" +" below." +msgstr "" + +#: wiki/forms.py +msgid "No changes made. Nothing to save." +msgstr "" + +#: wiki/forms.py +msgid "Select an option" +msgstr "" + +#: wiki/forms.py +msgid "Slug" +msgstr "" + +#: wiki/forms.py +msgid "" +"This will be the address where your article can be found. Use only " +"alphanumeric characters and - or _. Note that you cannot change the slug " +"after creating the article." +msgstr "" + +#: wiki/forms.py +msgid "Write a brief message for the article's history log." +msgstr "" + +#: wiki/forms.py +msgid "A slug may not begin with an underscore." +msgstr "" + +#: wiki/forms.py +msgid "A deleted article with slug \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "A slug named \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "Yes, I am sure" +msgstr "" + +#: wiki/forms.py +msgid "Purge" +msgstr "" + +#: wiki/forms.py +msgid "" +"Purge the article: Completely remove it (and all its contents) with no undo." +" Purging is a good idea if you want to free the slug such that users can " +"create new articles in its place." +msgstr "" + +#: wiki/forms.py wiki/plugins/attachments/forms.py +#: wiki/plugins/images/forms.py +msgid "You are not sure enough!" +msgstr "" + +#: wiki/forms.py +msgid "While you tried to delete this article, it was modified. TAKE CARE!" +msgstr "" + +#: wiki/forms.py +msgid "Lock article" +msgstr "" + +#: wiki/forms.py +msgid "Deny all users access to edit this article." +msgstr "" + +#: wiki/forms.py +msgid "Permissions" +msgstr "" + +#: wiki/forms.py +msgid "Owner" +msgstr "" + +#: wiki/forms.py +msgid "Enter the username of the owner." +msgstr "" + +#: wiki/forms.py +msgid "(none)" +msgstr "" + +#: wiki/forms.py +msgid "Inherit permissions" +msgstr "" + +#: wiki/forms.py +msgid "" +"Check here to apply the above permissions recursively to articles under this" +" one." +msgstr "" + +#: wiki/forms.py +msgid "Permission settings for the article were updated." +msgstr "" + +#: wiki/forms.py +msgid "Your permission settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/forms.py +msgid "No user with that username" +msgstr "" + +#: wiki/forms.py +msgid "Article locked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Article unlocked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Filter..." +msgstr "" + +#: wiki/core/plugins/base.py +msgid "Settings for plugin" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +#: wiki/plugins/attachments/models.py +msgid "current revision" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The revision being displayed for this article. If you need to do a roll-" +"back, simply change the value of this field." +msgstr "" + +#: wiki/models/article.py +msgid "modified" +msgstr "" + +#: wiki/models/article.py +msgid "Article properties last modified" +msgstr "" + +#: wiki/models/article.py +msgid "owner" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The owner of the article, usually the creator. The owner always has both " +"read and write access." +msgstr "" + +#: wiki/models/article.py +msgid "group" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Like in a UNIX file system, permissions can be given to a user according to " +"group membership. Groups are handled through the Django auth system." +msgstr "" + +#: wiki/models/article.py +msgid "group read access" +msgstr "" + +#: wiki/models/article.py +msgid "group write access" +msgstr "" + +#: wiki/models/article.py +msgid "others read access" +msgstr "" + +#: wiki/models/article.py +msgid "others write access" +msgstr "" + +#: wiki/models/article.py +msgid "Article without content (%(id)d)" +msgstr "" + +#: wiki/models/article.py +msgid "content type" +msgstr "" + +#: wiki/models/article.py +msgid "object ID" +msgstr "" + +#: wiki/models/article.py +msgid "Article for object" +msgstr "" + +#: wiki/models/article.py +msgid "Articles for object" +msgstr "" + +#: wiki/models/article.py +msgid "revision number" +msgstr "" + +#: wiki/models/article.py +msgid "IP address" +msgstr "" + +#: wiki/models/article.py +msgid "user" +msgstr "" + +#: wiki/models/article.py +msgid "locked" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +msgid "article" +msgstr "" + +#: wiki/models/article.py +msgid "article contents" +msgstr "" + +#: wiki/models/article.py +msgid "article title" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Each revision contains a title field that must be filled out, even if the " +"title has not changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "original article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "Permissions are inherited from this article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "A plugin was changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "" +"The revision being displayed for this plugin.If you need to do a roll-back, " +"simply change the value of this field." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Cache lookup value for articles" +msgstr "" + +#: wiki/models/urlpath.py +msgid "slug" +msgstr "" + +#: wiki/models/urlpath.py +msgid "(root)" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL path" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL paths" +msgstr "" + +#: wiki/models/urlpath.py +msgid "Sorry but you cannot have a root article with a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "A non-root note must always have a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "There is already a root node on %s" +msgstr "" + +#: wiki/models/urlpath.py +msgid "" +"Articles who lost their parents\n" +"===============================\n" +"\n" +"The children of this article have had their parents deleted. You should probably find a new home for them." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Lost and found" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "A short summary of what the file contains" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "Yes I am sure..." +msgstr "" + +#: wiki/plugins/attachments/markdown_extensions.py +msgid "Click to download file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "" +"The revision of this attachment currently in use (on all articles using the " +"attachment)" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "original filename" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachments" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revision" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revisions" +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s was successfully added." +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "Your file could not be saved: %s" +msgstr "" + +#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py +msgid "" +"Your file could not be saved, probably because of a permission error on the " +"web server." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "%s uploaded and replaces old attachment." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your new file will automatically be renamed to match the file already " +"present. Files with different extensions are not allowed." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Current revision changed for %s." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "The file %s was deleted." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "This article is no longer related to the file %s." +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was changed: %s" +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +msgid "A file was deleted: %s" +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "" +"New image %s was successfully uploaded. You can use it by selecting it from " +"the list of available images." +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "Are you sure?" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "images" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image: %s" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Current revision not set!!" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revision" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revisions" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Image Revsion: %d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been restored" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%s has been marked as deleted" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been changed to revision #%(revision)d" +msgstr "" + +#: wiki/plugins/images/views.py +msgid "%(file)s has been saved." +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "Images" +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +msgid "An image was added: %s" +msgstr "" + +#: wiki/plugins/links/wiki_plugin.py +msgid "Links" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Notifications" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "When this article is edited" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Also receive emails about article edits" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were updated." +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "%(user)s subscribing to %(article)s (%(type)s)" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article deleted: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "Article modified: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +msgid "New article created: %s" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now sign up... and now you can sign in!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are no longer logged in. Bye bye!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now logged in! Have fun!" +msgstr "" + +#: wiki/views/article.py +msgid "New article '%s' created." +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article: %s" +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article cannot be deleted because it has children or is a root article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article together with all its contents are now completely gone! Thanks!" +msgstr "" + +#: wiki/views/article.py +msgid "" +"The article \"%s\" is now marked as deleted! Thanks for keeping the site " +"free from unwanted material!" +msgstr "" + +#: wiki/views/article.py +msgid "Your changes were saved." +msgstr "" + +#: wiki/views/article.py +msgid "A new revision of the article was succesfully added." +msgstr "" + +#: wiki/views/article.py +msgid "Restoring article" +msgstr "" + +#: wiki/views/article.py +msgid "The article \"%s\" and its children are now restored." +msgstr "" + +#: wiki/views/article.py +msgid "The article %s is now set to display revision #%d" +msgstr "" + +#: wiki/views/article.py +msgid "New title" +msgstr "" + +#: wiki/views/article.py +msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" +msgstr "" + +#: wiki/views/article.py +msgid "" +"A new revision was created: Merge between Revision #%(r1)d and Revision " +"#%(r2)d" +msgstr "" diff --git a/conf/locale/ur/LC_MESSAGES/djangojs.mo b/conf/locale/ur/LC_MESSAGES/djangojs.mo new file mode 100644 index 0000000000..9f21937c49 Binary files /dev/null and b/conf/locale/ur/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/ur/LC_MESSAGES/djangojs.po b/conf/locale/ur/LC_MESSAGES/djangojs.po new file mode 100644 index 0000000000..f92a8455b2 --- /dev/null +++ b/conf/locale/ur/LC_MESSAGES/djangojs.po @@ -0,0 +1,1712 @@ +# #-#-#-#-# djangojs-partial.po (edx-platform) #-#-#-#-# +# edX community translations have been downloaded from Urdu (http://www.transifex.com/projects/p/edx-platform/language/ur/). +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +# #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# +# edX translation file. +# Copyright (C) 2014 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: edx-platform\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-04-24 13:00+0000\n" +"Last-Translator: sarina \n" +"Language-Team: Urdu (http://www.transifex.com/projects/p/edx-platform/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: cms/static/coffee/src/views/tabs.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/modals/edit_xblock.js +#: common/static/coffee/src/discussion/utils.js +msgid "OK" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/asset.js +#: cms/static/js/views/course_info_update.js +#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js +#: cms/static/js/views/modals/base_modal.js +#: cms/static/js/views/pages/container.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Cancel" +msgstr "" + +#: cms/static/js/base.js lms/static/js/verify_student/photocapture.js +msgid "This link will open in a new browser window/tab" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Show Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Hide Annotations" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Expand Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Collapse Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Commentary" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/annotatable/display.js +msgid "Reply to Annotation" +msgstr "" + +#. Translators: %(earned)s is the number of points earned. %(total)s is the +#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of +#. points will always be at least 1. We pluralize based on the total number of +#. points (example: 0/1 point; 1/2 points); +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(earned)s/%(possible)s point)" +msgid_plural "(%(earned)s/%(possible)s points)" +msgstr[0] "" +msgstr[1] "" + +#. Translators: %(num_points)s is the number of points possible (examples: 1, +#. 3, 10). There will always be at least 1 point possible.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "(%(num_points)s point possible)" +msgid_plural "(%(num_points)s points possible)" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer:" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Hide Answer" +msgstr "" + +#. Translators: the word Answer here refers to the answer to a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Show Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Reveal Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Answer hidden" +msgstr "" + +#. Translators: the word unanswered here is about answering a problem the +#. student must solve.; +#: common/lib/xmodule/xmodule/js/src/capa/display.js +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "unanswered" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/capa/display.js +msgid "Status: unsubmitted" +msgstr "" + +#. Translators: A "rating" is a score a student gives to indicate how well +#. they feel they were graded on this problem +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "You need to pick a rating before you can submit." +msgstr "" + +#. Translators: this message appears when transitioning between openended +#. grading +#. types (i.e. self assesment to peer assessment). Sometimes, if a student +#. did not perform well at one step, they cannot move on to the next one. +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Your score did not meet the criteria to move to the next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Submit" +msgstr "" + +#. Translators: one clicks this button after one has finished filling out the +#. grading +#. form for an openended assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Your response has been submitted. Please check back later for your grade." +msgstr "" + +#. Translators: this button is clicked to submit a student's rating of +#. an evaluator's assessment +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Submit post-assessment" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Answer saved, but not yet submitted." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Please confirm that you wish to submit your work. You will not be able to " +"make any changes after submitting." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"You are trying to upload a file that is too large for our system. Please " +"choose a file under 2MB or paste a link to it into the answer box." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"Are you sure you want to remove your previous response to this question?" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Moved to next step." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "" +"File uploads are required for this question, but are not supported in your " +"browser. Try the newest version of Google Chrome. Alternatively, if you have" +" uploaded the image to another website, you can paste a link to it into the " +"answer box." +msgstr "" + +#. Translators: "Show Question" is some text that, when clicked, shows a +#. question's +#. content that had been hidden +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Show Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +#: common/lib/xmodule/xmodule/js/src/combinedopenended/display.js +msgid "Hide Question" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/sequence/display.js +msgid "" +"Sequence error! Cannot navigate to tab %(tab_name)s in the current " +"SequenceModule. Please contact the course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Video slider" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Pause" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Play" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Fill browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js +msgid "Exit full browser" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD on" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js +msgid "HD off" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video position" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "Video ended" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s hour" +msgid_plural "%(value)s hours" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s minute" +msgid_plural "%(value)s minutes" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js +msgid "%(value)s second" +msgid_plural "%(value)s seconds" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Volume" +msgstr "" + +#. Translators: Volume level equals 0%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Muted" +msgstr "" + +#. Translators: Volume level in range (0,20]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very low" +msgstr "" + +#. Translators: Volume level in range (20,40]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Low" +msgstr "" + +#. Translators: Volume level in range (40,60]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Average" +msgstr "" + +#. Translators: Volume level in range (60,80]% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Loud" +msgstr "" + +#. Translators: Volume level in range (80,100)% +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Very loud" +msgstr "" + +#. Translators: Volume level equals 100%. +#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js +msgid "Maximum" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Caption will be displayed when " +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn on captions" +msgstr "" + +#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js +msgid "Turn off captions" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Hide Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "Show Discussion" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/discussion_module_view.js +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Sorry" +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "We had some trouble loading the discussion. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/discussion_module_view.js +msgid "" +"We had some trouble loading the threads you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "Loading content" +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "" +"We had some trouble processing your request. Please ensure you have copied " +"any unsaved work and then reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +msgid "We had some trouble processing your request. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/utils.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +#: common/static/coffee/src/discussion/views/new_post_view.js +msgid "…" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Close" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "Open" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "remove vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to remove your vote)" +msgid_plural "votes (click to remove your vote)" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_content_view.js +msgid "vote (click to vote)" +msgid_plural "votes (click to vote)" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Load more" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading more threads" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "We had some trouble loading more threads. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "%(unread_count)s new comment" +msgid_plural "%(unread_count)s new comments" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_list_view.js +msgid "Loading thread list" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to remove report" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported%(start_sr_span)s, click to remove report%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Report Misuse" +msgstr "" + +#. Translators: The text between start_sr_span and end_span is not shown +#. in most browsers but will be read by screen readers. +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned%(start_sr_span)s, click to unpin%(end_span)s" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Click to unpin" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pinned" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_show_view.js +msgid "Pin Thread" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "" +"The thread you selected has been deleted. Please select another thread." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading responses. Please reload the page." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "We had some trouble loading more responses. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "%(numResponses)s response" +msgid_plural "%(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Showing first response" +msgid_plural "Showing first %(numResponses)s responses" +msgstr[0] "" +msgstr[1] "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load all responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Load next %(numResponses)s responses" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_thread_view.js +msgid "Are you sure you want to delete this post?" +msgstr "" + +#: common/static/coffee/src/discussion/views/discussion_user_profile_view.js +msgid "We had some trouble loading the page you requested. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +msgid "anonymous" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "staff" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Community TA" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/response_comment_show_view.js +#: common/static/coffee/src/discussion/views/thread_response_show_view.js +msgid "Misuse Reported, click to remove report" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "Are you sure you want to delete this comment?" +msgstr "" + +#: common/static/coffee/src/discussion/views/response_comment_view.js +msgid "We had some trouble deleting this comment. Please try again." +msgstr "" + +#: common/static/coffee/src/discussion/views/thread_response_view.js +msgid "Are you sure you want to delete this response?" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s ago" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%s from now" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "less than a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a minute" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about an hour" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about %d hour" +msgid_plural "about %d hours" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "a day" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a month" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "about a year" +msgstr "" + +#: common/static/js/src/jquery.timeago.locale.js +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Available %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of available %s. You may choose some by selecting them in " +"the box below and then clicking the \"Choose\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Type into this box to filter down the list of available %s." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Filter" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to choose all %s at once." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Choose" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Chosen %s" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "" +"This is the list of chosen %s. You may remove some by selecting them in the " +"box below and then clicking the \"Remove\" arrow between the two boxes." +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Remove all" +msgstr "" + +#: lms/static/admin/js/SelectFilter2.js +msgid "Click to remove all chosen %s at once." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "%(sel)s of %(cnt)s selected" +msgid_plural "%(sel)s of %(cnt)s selected" +msgstr[0] "" +msgstr[1] "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have unsaved changes on individual editable fields. If you run an " +"action, your unsaved changes will be lost." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, but you haven't saved your changes to " +"individual fields yet. Please click OK to save. You'll need to re-run the " +"action." +msgstr "" + +#: lms/static/admin/js/actions.js lms/static/admin/js/actions.min.js +msgid "" +"You have selected an action, and you haven't made any changes on individual " +"fields. You're probably looking for the Go button rather than the Save " +"button." +msgstr "" + +#. Translators: the names of months, keep the pipe (|) separators. +#: lms/static/admin/js/calendar.js lms/static/admin/js/dateparse.js +msgid "" +"January|February|March|April|May|June|July|August|September|October|November|December" +msgstr "" + +#. Translators: abbreviations for days of the week, keep the pipe (|) +#. separators. +#: lms/static/admin/js/calendar.js +msgid "S|M|T|W|T|F|S" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.js.c +#: lms/static/admin/js/collapse.min.js +msgid "Show" +msgstr "" + +#: lms/static/admin/js/collapse.js lms/static/admin/js/collapse.min.js +msgid "Hide" +msgstr "" + +#. Translators: the names of days, keep the pipe (|) separators. +#: lms/static/admin/js/dateparse.js +msgid "Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Now" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Clock" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Choose a time" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Midnight" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "6 a.m." +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Noon" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Today" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Calendar" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Yesterday" +msgstr "" + +#: lms/static/admin/js/admin/DateTimeShortcuts.js +msgid "Tomorrow" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Open Calculator" +msgstr "" + +#: lms/static/coffee/src/calculator.js +msgid "Close Calculator" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Preview" +msgstr "" + +#: lms/static/coffee/src/customwmd.js +msgid "Post body" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching distribution." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Unavailable metric display." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Error fetching grade distributions." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "Last Updated: <%= timestamp %>" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/analytics.js +msgid "<%= num_students %> students scored." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Loading..." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error getting student list." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error retrieving grading configuration." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "Error generating grades. Please try again." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "File Name" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/data_download.js +msgid "" +"Links are generated on demand and expire within 5 minutes due to the " +"sensitive nature of student information." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Username" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Revoke access" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Enter username or email" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Please enter a username or email." +msgstr "" + +#. Translators: A rolename appears this sentence.; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error fetching list for role" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +#: lms/static/coffee/src/instructor_dashboard/membership.js +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 "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were successfully removed as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not added as beta testers:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users were not removed as beta testers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Users must create and activate their account before they can be promoted to " +"beta tester." +msgstr "" + +#. Translators: A list of identifiers (which are email addresses and/or +#. usernames) appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Could not find users associated with the following identifiers:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Error enrolling/unenrolling users." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following email addresses and/or usernames are invalid:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled and sent email to the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "Successfully enrolled the following users:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be allowed to enroll once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Successfully sent enrollment emails to the following users. They will be " +"enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "These users will be enrolled once they register:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"Emails successfully sent. The following users are no longer enrolled in the " +"course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "The following users are no longer enrolled in the course:" +msgstr "" + +#. Translators: A list of users appears after this sentence; +#: lms/static/coffee/src/instructor_dashboard/membership.js +msgid "" +"These users were not affiliated with the course so could not be unenrolled:" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message must have a subject." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your message cannot be blank." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Your email was successfully queued for sending." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to yourself. Is this " +"OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to everyone who is " +"staff or instructor on this course. Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"You are about to send an email titled '<%= subject %>' to ALL (everyone who " +"is enrolled in this course as student, staff, or instructor). Is this OK?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "" +"Your email was successfully queued for sending. Please note that for large " +"classes, it may take up to an hour (or more, if other courses are " +"simultaneously sending email) to send all emails." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "Error sending email." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There is no email history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/send_email.js +msgid "There was an error obtaining email task history for this course." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a student email address or username." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting student progress url for '<%= student_id %>'. Check that the " +"student identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Please enter a problem urlname." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Success! Problem attempts reset for problem '<%= problem_id %>' and student " +"'<%= student_id %>'." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error resetting problem attempts for problem '<%= problem_id %>' and student" +" '<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Delete student '<%= student_id %>'s state on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id" +" %>'. Check that the problem and student identifiers are spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Module state successfully deleted." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Started rescore problem task for problem '<%= problem_id %>' and student " +"'<%= student_id %>'. Click the 'Show Background Task History for Student' " +"button to see the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>' for student " +"'<%= student_id %>'. Check that the problem and student identifiers are " +"spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error getting task history for problem '<%= problem_id %>' and student '<%= " +"student_id %>'. Check that the problem and student identifiers are spelled " +"correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Reset attempts for all students on problem '<%= problem_id %>'?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to reset attempts for problem '<%= problem_id %>'." +" Click the 'Show Background Task History for Problem' button to see the " +"status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to reset attempts for all students on problem '<%= " +"problem_id %>'. Check that the problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Rescore problem '<%= problem_id %>' for all students?" +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Successfully started task to rescore problem '<%= problem_id %>' for all " +"students. Click the 'Show Background Task History for Problem' button to see" +" the status of the task." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "" +"Error starting a task to rescore problem '<%= problem_id %>'. Check that the" +" problem identifier is spelled correctly." +msgstr "" + +#: lms/static/coffee/src/instructor_dashboard/student_admin.js +msgid "Error listing task history for this student and problem." +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Type" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task inputs" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task ID" +msgstr "" + +#. Translators: a "Requester" is a username that requested a task such as +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Requester" +msgstr "" + +#. Translators: A timestamp of when a task (eg, sending email) was submitted +#. appears after this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Submitted" +msgstr "" + +#. Translators: The length of a task (eg, sending email) in seconds appears +#. this +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Duration (sec)" +msgstr "" + +#. Translators: The state (eg, "In progress") of a task (eg, sending email) +#. appears after this. +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "State" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Status" +msgstr "" + +#. Translators: a "Task" is a background process such as grading students or +#. sending email +#: lms/static/coffee/src/instructor_dashboard/util.js +msgid "Task Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Grades saved. Fetching the next submission to grade." +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Problem Name" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Graded" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Available to Grade" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Required" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Progress" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Back to problem list" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Try loading again" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> available " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> graded " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "<%= num %> more needed to start ML" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "Re-check for submissions" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state: <%= state %>" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "System got into invalid state for submission: " +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Hide)" +msgstr "" + +#: lms/static/coffee/src/staff_grading/staff_grading.js +msgid "(Show)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Hyperlink" +msgstr "" + +#. Translators: Please keep the quotation marks (") around this text +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js.c +msgid "\"optional title\"" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Insert Image (upload file or type url)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Markdown Editing Help" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bold (Ctrl+B)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Italic (Ctrl+I)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Hyperlink (Ctrl+L)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote (Ctrl+Q)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Code Sample (Ctrl+K)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Image (Ctrl+G)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Numbered List (Ctrl+O)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Bulleted List (Ctrl+U)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading (Ctrl+H)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Horizontal Rule (Ctrl+R)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Undo (Ctrl+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Y)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Redo (Ctrl+Shift+Z)" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "strong text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "emphasized text" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter image description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "enter link description here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Blockquote" +msgstr "" + +#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js +msgid "enter code here" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "List item" +msgstr "" + +#: lms/static/js/Markdown.Editor.js +msgid "Heading" +msgstr "" + +#: lms/templates/class_dashboard/all_section_metrics.js +#: lms/templates/class_dashboard/all_section_metrics.js +msgid "Unable to retrieve data, please try again later." +msgstr "" + +#: lms/templates/class_dashboard/d3_stacked_bar_graph.js +msgid "Number of Students" +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "" +"This may be happening because of an error with our server or your internet " +"connection. Try refreshing the page or making sure you are online." +msgstr "" + +#: cms/static/coffee/src/main.js +msgid "Studio's having trouble saving your work" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/tabs.js +#: cms/static/coffee/src/views/unit.js +#: cms/static/coffee/src/xblock/cms.runtime.v1.js +#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js +#: cms/static/js/views/asset.js cms/static/js/views/course_info_handout.js +#: cms/static/js/views/course_info_update.js cms/static/js/views/overview.js +#: cms/static/js/views/xblock_editor.js +msgid "Saving…" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "Delete Component Confirmation" +msgstr "" + +#: cms/static/coffee/src/views/tabs.js +msgid "" +"Are you sure you want to delete this component? This action cannot be " +"undone." +msgstr "" + +#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js +#: cms/static/js/base.js cms/static/js/views/course_info_update.js +#: cms/static/js/views/pages/container.js +msgid "Deleting…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js +msgid "Adding…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Duplicating…" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Delete this component?" +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Deleting this component is permanent and cannot be undone." +msgstr "" + +#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js +msgid "Yes, delete this component" +msgstr "" + +#: cms/static/js/base.js +msgid "This link will open in a modal window" +msgstr "" + +#: cms/static/js/base.js +msgid "Delete this " +msgstr "" + +#: cms/static/js/base.js +msgid "Deleting this " +msgstr "" + +#: cms/static/js/base.js +msgid "Yes, delete this " +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "Please do not use any spaces or special characters in this field." +msgstr "" + +#: cms/static/js/index.js +msgid "" +"The combined length of the organization, course number, and course run " +"fields cannot be more than 65 characters." +msgstr "" + +#: cms/static/js/index.js +msgid "Required field." +msgstr "" + +#: cms/static/js/sock.js +msgid "Hide Studio Help" +msgstr "" + +#: cms/static/js/sock.js +msgid "Looking for Help with Studio?" +msgstr "" + +#: cms/static/js/models/course.js cms/static/js/models/section.js +msgid "You must specify a name" +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "" +"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " +"<%= fileExtensions %> to upload." +msgstr "" + +#: cms/static/js/models/uploads.js +msgid "or" +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course must have an assigned start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course end date cannot be before the course start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The course start date cannot be before the enrollment start date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment start date cannot be after the enrollment end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "The enrollment end date cannot be after the course end date." +msgstr "" + +#: cms/static/js/models/settings/course_details.js +msgid "Key should only contain letters, numbers, _, or -" +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "There's already another assignment type with this name." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer between 0 and 100." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter an integer greater than 0." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Please enter non-negative integer." +msgstr "" + +#: cms/static/js/models/settings/course_grader.js +msgid "Cannot drop more <% attrs.types %> than will assigned." +msgstr "" + +#: cms/static/js/models/settings/course_grading_policy.js +msgid "Grace period must be specified in HH:MM format." +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Delete File Confirmation" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "" +"Are you sure you wish to delete this item. It cannot be reversed!\n" +"\n" +"Also any content that links/refers to this item will no longer work (e.g. broken images and/or links)" +msgstr "" + +#: cms/static/js/views/asset.js cms/static/js/views/show_textbook.js +msgid "Delete" +msgstr "" + +#: cms/static/js/views/asset.js +msgid "Your file has been deleted." +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Name" +msgstr "" + +#: cms/static/js/views/assets.js +msgid "Date Added" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "Are you sure you want to delete this update?" +msgstr "" + +#: cms/static/js/views/course_info_update.js +msgid "This action cannot be undone." +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Upload a new PDF to “<%= name %>”" +msgstr "" + +#: cms/static/js/views/edit_chapter.js +msgid "Please select a PDF file to upload." +msgstr "" + +#: cms/static/js/views/edit_textbook.js +#: cms/static/js/views/overview_assignment_grader.js +msgid "Saving" +msgstr "" + +#: cms/static/js/views/import.js +msgid "There was an error with the upload" +msgstr "" + +#: cms/static/js/views/import.js +msgid "" +"File format not supported. Please upload a file with a tar.gz " +"extension." +msgstr "" + +#: cms/static/js/views/metadata.js +msgid "Upload File" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Collapse All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Expand All Sections" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Release date:" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "{month}/{day}/{year} at {hour}:{minute} UTC" +msgstr "" + +#: cms/static/js/views/overview.js +msgid "Edit section release date" +msgstr "" + +#: cms/static/js/views/overview_assignment_grader.js +msgid "Not Graded" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "ascending" +msgstr "" + +#: cms/static/js/views/paging.js +msgid "descending" +msgstr "" + +#: cms/static/js/views/paging_header.js +msgid "" +"Showing %(current_span)s%(start)s-%(end)s%(end_span)s out of " +"%(total_span)s%(total)s total%(end_span)s, sorted by " +"%(order_span)s%(sort_order)s%(end_span)s %(sort_direction)s" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Your change could not be saved" +msgstr "" + +#: cms/static/js/views/section_edit.js +msgid "Return and resolve this issue" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Delete “<%= name %>”?" +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "" +"Deleting a textbook cannot be undone and once deleted any reference to it in" +" your courseware's navigation will also be removed." +msgstr "" + +#: cms/static/js/views/show_textbook.js +msgid "Deleting" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "Upload" +msgstr "" + +#: cms/static/js/views/uploads.js +msgid "We're sorry, there was an error" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes will not take effect until you save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "You've made some changes, but there are some errors" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "" +"Please address the errors on this page first, and then save your progress." +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Save Changes" +msgstr "" + +#: cms/static/js/views/validation.js +msgid "Your changes have been saved." +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Editor" +msgstr "" + +#: cms/static/js/views/xblock_editor.js +msgid "Settings" +msgstr "" + +#: cms/static/js/views/modals/base_modal.js +msgid "Save" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Component" +msgstr "" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Editing: %(title)s" +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Your changes will not take effect until you save your progress. Take care " +"with key and value formatting, as validation is not implemented." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/static/js/views/settings/advanced.js +msgid "" +"Please note that validation of your policy key and value pairs is not " +"currently in place yet. If you are having difficulties, please review your " +"policy pairs." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Upload your course image." +msgstr "" + +#: cms/static/js/views/settings/main.js +msgid "Files must be in JPEG or PNG format." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "" +"Sorry, there was an error parsing the subtitles that you uploaded. Please " +"check the format and try again." +msgstr "" + +#: cms/static/js/views/video/translations_editor.js +msgid "Upload translation" +msgstr "" diff --git a/conf/locale/vi/LC_MESSAGES/django.mo b/conf/locale/vi/LC_MESSAGES/django.mo index 38690fe37f..5a2e3df341 100644 Binary files a/conf/locale/vi/LC_MESSAGES/django.mo and b/conf/locale/vi/LC_MESSAGES/django.mo differ diff --git a/conf/locale/vi/LC_MESSAGES/django.po b/conf/locale/vi/LC_MESSAGES/django.po index 7c2abb067f..5febd258f2 100644 --- a/conf/locale/vi/LC_MESSAGES/django.po +++ b/conf/locale/vi/LC_MESSAGES/django.po @@ -66,6 +66,7 @@ # hoanghadu , 2014 # mannd , 2013 # ngocchung75 , 2013 +# An Walker , 2014 # hdvd2309 , 2014 # tah , 2013 # Thành Bùi Việt , 2014 @@ -86,13 +87,14 @@ # Translators: # Hoang Doan , 2014 # JosephTrong , 2014 +# tan.mng90 , 2014 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" -"PO-Revision-Date: 2014-04-15 05:10+0000\n" -"Last-Translator: JosephTrong \n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" +"PO-Revision-Date: 2014-05-02 00:21+0000\n" +"Last-Translator: tan.mng90 \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/edx-platform/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -858,7 +860,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1421,6 +1423,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "Định hướng" @@ -4936,10 +4948,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "" @@ -4949,6 +4975,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5765,10 +5795,6 @@ msgstr "" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" diff --git a/conf/locale/vi/LC_MESSAGES/djangojs.mo b/conf/locale/vi/LC_MESSAGES/djangojs.mo index a393a52021..74dd504d3a 100644 Binary files a/conf/locale/vi/LC_MESSAGES/djangojs.mo and b/conf/locale/vi/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/vi/LC_MESSAGES/djangojs.po b/conf/locale/vi/LC_MESSAGES/djangojs.po index 22788c2f4c..6aeac07fce 100644 --- a/conf/locale/vi/LC_MESSAGES/djangojs.po +++ b/conf/locale/vi/LC_MESSAGES/djangojs.po @@ -24,15 +24,16 @@ # hdvd2309 , 2013-2014 # hoad, 2013 # ngocchung75 , 2013 +# An Walker , 2014 # hdvd2309 , 2014 # ppanhh , 2013 msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" -"PO-Revision-Date: 2014-04-24 13:20+0000\n" -"Last-Translator: sarina \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-05-05 09:39+0000\n" +"Last-Translator: An Walker \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/edx-platform/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/conf/locale/zh_CN/LC_MESSAGES/django.mo b/conf/locale/zh_CN/LC_MESSAGES/django.mo index fb90e5456d..07fe3c0af2 100644 Binary files a/conf/locale/zh_CN/LC_MESSAGES/django.mo and b/conf/locale/zh_CN/LC_MESSAGES/django.mo differ diff --git a/conf/locale/zh_CN/LC_MESSAGES/django.po b/conf/locale/zh_CN/LC_MESSAGES/django.po index 04db7ca7bf..63ecfa155c 100644 --- a/conf/locale/zh_CN/LC_MESSAGES/django.po +++ b/conf/locale/zh_CN/LC_MESSAGES/django.po @@ -4,10 +4,12 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# vingte <411029240@qq.com>, 2014 # Bookman , 2013 # focusheart , 2014 # focusheart , 2014 # focusheart , 2014 +# freakylemon , 2014 # hanwentao , 2013 # Jerome Huang , 2014 # Jie , 2013 @@ -54,8 +56,11 @@ # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # # Translators: +# perypery <410224186@qq.com>, 2014 +# vingte <411029240@qq.com>, 2014 # alphaf52 , 2013 # Bookman , 2013 +# PeterWang.Dut , 2014 # cmouse , 2013 # focusheart , 2014 # focusheart , 2014 @@ -157,7 +162,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-04-24 12:34+0000\n" "Last-Translator: pku9104038 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/edx-platform/language/zh_CN/)\n" @@ -278,6 +283,7 @@ msgid "Course id is invalid" msgstr "课程编号无效" #: common/djangoapps/student/views.py +#: lms/templates/courseware/course_about.html msgid "Course is full" msgstr "该课程已满" @@ -298,6 +304,8 @@ msgid "" "account. Please use your {platform_name} credentials or pick another " "provider." msgstr "" +"未找到与{provider_name}相关联的 {platform_name}账户,请使用您在 {platform_name} " +"的正确身份或选用其他身份提供方。" #: common/djangoapps/student/views.py msgid "There was an error receiving your login information. Please email us." @@ -923,8 +931,8 @@ msgid "unanswered" msgstr "未答复" #: common/lib/capa/capa/inputtypes.py -msgid "queued" -msgstr "已经在队列中" +msgid "processing" +msgstr "处理中" #: common/lib/capa/capa/inputtypes.py msgid "" @@ -946,7 +954,7 @@ msgstr "发布。当响应返回,该消息将被反馈信息所替代。" #: common/lib/capa/capa/inputtypes.py msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." -msgstr "" +msgstr " Xqueue在 {xqueue_timeout} 秒内无响应,终止。" #: common/lib/capa/capa/responsetypes.py msgid "Error {err} in evaluating hint function {hintfn}." @@ -1024,7 +1032,7 @@ msgstr "客户端响应:检查函数返回无效字典!" msgid "" "Unable to deliver your submission to grader (Reason: {error_msg}). Please " "try again later." -msgstr "" +msgstr "无法将您的提交发送给评分者 (原因:{error_msg})。 请稍后重试。" #. Translators: 'grader' refers to the edX automatic code grader. #. Translators: the `grader` refers to the grading service open response @@ -1058,7 +1066,7 @@ msgstr "无效输入:无法将'{bad_input}'解析为一个公式" #. translated. #: common/lib/capa/capa/responsetypes.py msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" -msgstr "" +msgstr "评估SchematicResponse出错。错误为: {error_msg}" #: common/lib/capa/capa/responsetypes.py msgid "The Staff answer could not be interpreted as a number." @@ -1216,8 +1224,10 @@ msgstr "" msgid "Course Info" msgstr "课程信息" +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: "Progress" is the name of the student's course progress page #: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/peer_grading/peer_grading.html msgid "Progress" msgstr "进度" @@ -1239,11 +1249,18 @@ msgstr "讨论" msgid "Textbooks" msgstr "教材" +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# #. Translators: "Staff grading" appears on a tab that allows #. staff to view open-ended problems that require staff grading #: common/lib/xmodule/xmodule/tabs.py +#: lms/templates/instructor/staff_grading.html +#, fuzzy msgid "Staff grading" -msgstr "员工评分" +msgstr "" +"#-#-#-#-# django-partial.po (edx-platform) #-#-#-#-#\n" +"员工评分\n" +"#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" +"教员评分" #. Translators: "Peer grading" appears on a tab that allows #. students to view open-ended problems that require grading @@ -1364,7 +1381,7 @@ msgstr "所有评价" msgid "" "Could not find needed tag {tag_name} in the survey responses. Please try " "submitting again." -msgstr "" +msgstr "调查结果中无法找到所需的标签 {tag_name},请尝试重新提交。" #: common/lib/xmodule/xmodule/open_ended_grading_classes/open_ended_module.py msgid "There was an error saving your feedback. Please contact course staff." @@ -1490,6 +1507,16 @@ msgstr "{exception_message}: 找不到上传的成绩单: {user_filename}" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "一个YouTube URL或者一个任意地址的网络文件的链接。" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "字幕 (.srt) 文件" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "文本 (.txt) 文件" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "导航" @@ -1504,10 +1531,18 @@ msgstr "索引" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html #: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/discussion/_thread_list_template.html +#, fuzzy msgid "Search" -msgstr "搜索" +msgstr "" +"#-#-#-#-# django-partial.po (edx-platform) #-#-#-#-#\n" +"搜索\n" +"#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" +"检索" #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html +#: lms/templates/static_templates/copyright.html +#: lms/templates/static_templates/copyright.html msgid "Copyright" msgstr "版权" @@ -1919,10 +1954,15 @@ msgstr "任务已在运行中。" #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/legacy.py #: lms/djangoapps/instructor/views/tools.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Username" msgstr "用户名" -#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Name" msgstr "名称" @@ -1974,6 +2014,7 @@ msgid "An error occurred while deleting the score." msgstr "删除该分数时出错。" #: lms/djangoapps/instructor/views/api.py +#: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Complete" msgstr "已完成" @@ -2257,7 +2298,12 @@ msgid "ID" msgstr "身份标识" #: lms/djangoapps/instructor/views/legacy.py -#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor/views/tools.py cms/templates/register.html +#: lms/templates/dashboard.html lms/templates/register-shib.html +#: lms/templates/register.html lms/templates/register.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: lms/templates/verify_student/_modal_editname.html +#: lms/templates/verify_student/face_upload.html msgid "Full Name" msgstr "全名" @@ -2663,7 +2709,7 @@ msgstr "订单ID" msgid "Status" msgstr "状态" -#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html msgid "Quantity" msgstr "数量" @@ -2675,11 +2721,16 @@ msgstr "单位价格" msgid "Total Cost" msgstr "总价格" -#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html msgid "Currency" msgstr "货币" -#: lms/djangoapps/shoppingcart/reports.py wiki/plugins/attachments/forms.py +#: lms/djangoapps/shoppingcart/reports.py lms/templates/shoppingcart/list.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: lms/templates/shoppingcart/verified_cert_receipt.html +#: wiki/plugins/attachments/forms.py msgid "Description" msgstr "描述" @@ -2693,7 +2744,9 @@ msgid "University" msgstr "大学" #: lms/djangoapps/shoppingcart/reports.py -#: lms/djangoapps/shoppingcart/reports.py +#: lms/djangoapps/shoppingcart/reports.py cms/templates/widgets/header.html +#: cms/templates/widgets/header.html +#: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Course" msgstr "课程" @@ -3144,10 +3197,12 @@ msgstr "" " " #: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html msgid "Download CSV Reports" msgstr "下载CSV报告" #: lms/djangoapps/shoppingcart/tests/test_views.py +#: lms/templates/shoppingcart/download_report.html msgid "" "There was an error in your date input. It should be formatted as YYYY-MM-DD" msgstr "你输入的日期有误。其格式应为YYYY-MM-DD" @@ -3189,7 +3244,8 @@ msgstr "本课程不支持认证证书。" msgid "No selected price or selected price is below minimum." msgstr "未选择价格或选择的价格低于最低价。" -#: lms/templates/main_django.html +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html msgid "Skip to this view's content" msgstr "跳过本内容页" @@ -3315,6 +3371,8 @@ msgid "Password Reset Help" msgstr "密码重置帮助" #: lms/templates/registration/password_reset_confirm.html +#: cms/templates/login.html lms/templates/login-sidebar.html +#: lms/templates/register-sidebar.html msgid "Need Help?" msgstr "需要帮助?" @@ -3383,6 +3441,11 @@ msgstr "删除文章" #: lms/templates/wiki/delete.html #: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache msgid "Delete" msgstr "删除" @@ -3414,7 +3477,14 @@ msgstr "...还有更多!" msgid "You are deleting an article. Please confirm." msgstr "您正试图删除文章。请确认!" -#: lms/templates/wiki/edit.html +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_thread_show.mustache +#: lms/templates/wiki/includes/article_menu.html msgid "Edit" msgstr "编辑" @@ -3449,8 +3519,15 @@ msgstr "关闭" msgid "Wiki Preview" msgstr "Wiki预览" +#. #-#-#-#-# mako.po (edx-platform) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not #: lms/templates/wiki/edit.html lms/templates/wiki/history.html #: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html lms/templates/dashboard.html +#: lms/templates/dashboard.html +#: lms/templates/modal/_modal-settings-language.html msgid "window open" msgstr "窗口打开" @@ -3975,38 +4052,38 @@ msgstr "关于本用户的可选备注(例如,课程创建被拒绝的原因 #: cms/templates/404.html cms/templates/error.html #: lms/templates/static_templates/404.html msgid "Page Not Found" -msgstr "" +msgstr "页面无法找到" #: cms/templates/404.html lms/templates/static_templates/404.html msgid "Page not found" -msgstr "" +msgstr "页面无法找到" #: cms/templates/asset_index.html lms/templates/courseware/courseware.html #: lms/templates/verify_student/_modal_editname.html msgid "close" -msgstr "" +msgstr "关闭" #: cms/templates/container.html #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Loading..." -msgstr "" +msgstr "载入中..." #. Translators: this is a verb describing the action of viewing more details #: cms/templates/container_xblock_component.html #: lms/templates/wiki/includes/article_menu.html msgid "View" -msgstr "" +msgstr "阅览" #: cms/templates/html_error.html lms/templates/module-error.html msgid "Error:" -msgstr "" +msgstr "错误:" #: cms/templates/index.html cms/templates/settings.html #: lms/templates/courseware/course_about.html msgid "Course Number" -msgstr "" +msgstr "课程代码" #: cms/templates/index.html cms/templates/manage_users.html #: cms/templates/overview.html cms/templates/overview.html @@ -4019,28 +4096,28 @@ msgstr "" #: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache #: lms/templates/verify_student/face_upload.html msgid "Cancel" -msgstr "" +msgstr "取消" #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Organization:" -msgstr "" +msgstr "组织:" #: cms/templates/index.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Number:" -msgstr "" +msgstr "课程代码:" #: cms/templates/index.html #: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Pending" -msgstr "" +msgstr "待定" #: cms/templates/login.html lms/templates/login.html #: lms/templates/university_profile/edge.html msgid "Forgot password?" -msgstr "" +msgstr "忘记密码?" #: cms/templates/login.html cms/templates/register.html #: lms/templates/login.html lms/templates/provider_login.html @@ -4049,19 +4126,19 @@ msgstr "" #: lms/templates/sysadmin_dashboard.html #: lms/templates/university_profile/edge.html msgid "Password" -msgstr "" +msgstr "密码" #: cms/templates/manage_users.html cms/templates/settings.html #: cms/templates/settings_advanced.html cms/templates/settings_graders.html #: cms/templates/widgets/header.html #: lms/templates/wiki/includes/article_menu.html msgid "Settings" -msgstr "" +msgstr "设置" #: cms/templates/manage_users.html #: lms/templates/courseware/instructor_dashboard.html msgid "Admin" -msgstr "" +msgstr "管理员" #: cms/templates/overview.html cms/templates/overview.html #: cms/templates/overview.html cms/templates/overview.html @@ -4070,51 +4147,53 @@ msgstr "" #: lms/templates/combinedopenended/selfassessment/self_assessment_prompt.html #: lms/templates/verify_student/face_upload.html msgid "Save" -msgstr "" +msgstr "保存" #: cms/templates/register.html cms/templates/widgets/header.html #: lms/templates/index.html msgid "Sign Up" -msgstr "" +msgstr "注册" #: cms/templates/register.html lms/templates/register-shib.html #: lms/templates/register.html lms/templates/signup_modal.html #: lms/templates/signup_modal.html msgid "Public Username" -msgstr "" +msgstr "公开用户名" #: cms/templates/register.html #: lms/templates/dashboard/_dashboard_info_language.html msgid "Preferred Language" -msgstr "" +msgstr "偏好的语言" #: cms/templates/registration/activation_complete.html #: lms/templates/registration/activation_complete.html msgid "Thanks for activating your account." -msgstr "" +msgstr "谢谢您激活账号。" #: cms/templates/registration/activation_complete.html #: lms/templates/registration/activation_complete.html msgid "This account has already been activated." -msgstr "" +msgstr "本账号已经被激活" #: cms/templates/registration/activation_complete.html #: lms/templates/registration/activation_complete.html msgid "Visit your {link_start}dashboard{link_end} to see your courses." -msgstr "" +msgstr "访问您的{link_start}控制面板{link_end}来查看您的课程。" #: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html #: lms/templates/static_templates/tos.html msgid "Terms of Service" -msgstr "" +msgstr "服务条款" #: cms/templates/widgets/footer.html lms/templates/footer.html #: lms/templates/static_templates/privacy.html #: lms/templates/static_templates/privacy.html msgid "Privacy Policy" -msgstr "" +msgstr "隐私政策" -#: wiki/plugins/help/wiki_plugin.py +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/navigation.html lms/templates/static_templates/help.html +#: lms/templates/static_templates/help.html wiki/plugins/help/wiki_plugin.py msgid "Help" msgstr "帮助" @@ -4136,28 +4215,28 @@ msgstr "" #: common/templates/course_modes/choose.html msgid "Certificate of Achievement (ID Verified)" -msgstr "" +msgstr "完成证书(ID 认证)" #: common/templates/course_modes/choose.html msgid "Upgrade and work toward a verified Certificate of Achievement." -msgstr "" +msgstr "更新并进入了证书查证工作。" #: common/templates/course_modes/choose.html msgid "Sign up and work toward a verified Certificate of Achievement." -msgstr "" +msgstr "注册并完成身份认证证书。" #: common/templates/course_modes/choose.html msgid "Select your contribution for this course (min. $" -msgstr "" +msgstr "选择课程捐款 (最少 $" #: common/templates/course_modes/choose.html #: lms/templates/verify_student/photo_verification.html msgid "):" -msgstr "" +msgstr "):" #: common/templates/course_modes/choose.html msgid "Why do I have to pay? What if I don't meet all the requirements?" -msgstr "" +msgstr "为什么需要付费?不满足所有要求将如何?" #: common/templates/course_modes/choose.html msgid "Why do I have to pay?" @@ -4170,17 +4249,18 @@ msgid "" "learning through research. While we have established a minimum fee, we ask " "that you contribute as much as you can." msgstr "" +"作为一个非赢利组织,edX使用您的捐助来支持我们的使命:为世界上所有人提供高质量的教育,研究如何增进学习。尽管设置了最低收费,但是我们希望您能提供更多力所能及的捐助。" #: common/templates/course_modes/choose.html msgid "" "I'd like to pay more than the minimum. Is my contribution tax deductible?" -msgstr "" +msgstr "如果付费超过最低收费,我的捐赠是否可以抵扣税款?" #: common/templates/course_modes/choose.html msgid "" "Please check with your tax advisor to determine whether your contribution is" " tax deductible." -msgstr "" +msgstr "请向你的税务咨询人员确认是否可以抵扣税款。" #: common/templates/course_modes/choose.html msgid "What if I can't afford it or don't have the necessary equipment?" @@ -4213,11 +4293,11 @@ msgstr "请简短描述你选择诚信条例证书而不选择付费课程认证 #: common/templates/course_modes/choose.html msgid "Upgrade Your Registration" -msgstr "" +msgstr "更新您的登记" #: common/templates/course_modes/choose.html msgid "Select Certificate" -msgstr "" +msgstr "选择证书" #: common/templates/course_modes/choose.html msgid "Verified Registration Requirements" @@ -4227,17 +4307,17 @@ msgstr "认证注册要求" msgid "" "To upgrade your registration and work towards a Verified Certificate of " "Achievement, you will need a webcam, a credit or debit card, and an ID." -msgstr "" +msgstr "为了更新您的登记并进入证书查证工作,你需要一个摄像头,一个信用卡或借记卡,还要一个ID。" #: common/templates/course_modes/choose.html msgid "" "To register for a Verified Certificate of Achievement option, you will need " "a webcam, a credit or debit card, and an ID." -msgstr "" +msgstr "为了完成一个认证证书,你需要有一个视频头,一个信用卡或者借记卡,还要一个ID。" #: common/templates/course_modes/choose.html msgid "What is an ID Verified Certificate?" -msgstr "" +msgstr "什么是ID认证证书?" #: common/templates/course_modes/choose.html msgid "" @@ -4248,7 +4328,7 @@ msgstr "" #: common/templates/course_modes/choose.html msgid "or" -msgstr "" +msgstr "或者" #: common/templates/course_modes/choose.html msgid "Audit This Course" @@ -4256,11 +4336,11 @@ msgstr "旁听这门课程" #: common/templates/course_modes/choose.html msgid "Sign up to audit this course for free and track your own progress." -msgstr "" +msgstr "免费登入来审计这门课程,并且拥有自己的学习记录。" #: common/templates/course_modes/choose.html msgid "Select Audit" -msgstr "" +msgstr "选择审计" #: lms/templates/admin_dashboard.html msgid "{platform_name}-wide Summary" @@ -4333,6 +4413,7 @@ msgid "" " on our {fb_link_start}facebook page{fb_link_end}. Though we may not have a " "chance to respond to every email, we take all feedback into consideration." msgstr "" +"如果您对{platform_name}平台有任何疑问,请发送邮件到{contact_email}。您可以访问我们的{faq_link_start}FAQ页面{faq_link_end},以便查看您的问题是否已经有答案。您也可以加入我们在{fb_link_start}脸谱页面{fb_link_end}进行讨论。虽然我们不一定会回复每一封邮件,我们会认真考虑您的建议。" #: lms/templates/contact.html msgid "Technical Inquiries and Feedback" @@ -4348,6 +4429,7 @@ msgid "" "as screenshots or other pertinent details. If you find a bug or other " "issues, you can reach us at the following: {bugs_email}." msgstr "" +"如果您对于{platform_name}平台整体上有什么意见,或者遇到了常见的技术问题(如邮件地址和密码的问题),您可以通过{tech_email}联系我们。如果您遇到了技术问题,首先确保使用Firefox或者Chrome浏览器的最新版本浏览我们的网页,如果仍有问题,请在邮件中说明您所使用的浏览器和版本,并附上屏幕截图或相关的细节描述。如果您遇到了的系统缺陷错误或其它问题,请给{bugs_email}发邮件。" #: lms/templates/contact.html msgid "Media" @@ -4386,7 +4468,7 @@ msgstr "出现错误,请稍后再试。" #: lms/templates/dashboard.html msgid "Please verify your new email" -msgstr "" +msgstr "请验证您的新邮箱" #. Translators: this message is displayed when a user tries to link their #. account with a third-party authentication provider (for example, Google or @@ -4401,6 +4483,8 @@ msgid "" "{platform_name} account. Please {link_start}log out{link_end}, then log in " "with your {provider_name} account." msgstr "" +"所选择的账号 {provider_name} 已经链接到 " +"{platform_name}的账号。请{link_start}退出{link_end},然后使用账号 {provider_name}重新登录。" #: lms/templates/dashboard.html lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_info_language.html @@ -4413,21 +4497,21 @@ msgstr "编辑" #. their edX account. #: lms/templates/dashboard.html msgid "Account Links" -msgstr "" +msgstr "账户链接" #. Translators: clicking on this removes the link between a user's edX account #. and their account with an external authentication provider (like Google or #. LinkedIn). #: lms/templates/dashboard.html msgid "unlink" -msgstr "" +msgstr "解绑" #. Translators: clicking on this creates a link between a user's edX account #. and their account with an external authentication provider (like Google or #. LinkedIn). #: lms/templates/dashboard.html msgid "link" -msgstr "" +msgstr "绑定" #: lms/templates/dashboard.html lms/templates/dashboard.html msgid "Reset Password" @@ -4504,7 +4588,7 @@ msgstr "更改您的姓名" msgid "" "To uphold the credibility of your {platform} {cert_name_short}, all name " "changes will be logged and recorded." -msgstr "" +msgstr "为确保你的 {platform} {cert_name_short}的可信性,所有名字的变更都将被记录。" #. Translators: note that {platform} {cert_name_short} will look something #. like: "edX certificate". Please do not change the order of these @@ -4513,7 +4597,7 @@ msgstr "" msgid "" "Enter your desired full name, as it will appear on your {platform} " "{cert_name_short}:" -msgstr "" +msgstr "输入你期望的全名,其将显示在你的{platform} {cert_name_short}:" #: lms/templates/dashboard.html #: lms/templates/verify_student/_modal_editname.html @@ -4529,6 +4613,8 @@ msgid "" " {course_number}? " msgstr "" +" {course_number}? " #: lms/templates/dashboard.html #: lms/templates/dashboard/_dashboard_course_listing.html @@ -4539,7 +4625,7 @@ msgstr "退出课程" #: lms/templates/edit_unit_link.html msgid "View Unit in Studio" -msgstr "" +msgstr "在职员界面查看单元" #: lms/templates/email_change_failed.html lms/templates/email_exists.html msgid "E-mail change failed" @@ -4657,7 +4743,7 @@ msgstr "常见问题" #: lms/templates/footer.html msgid "{platform_name} Logo" -msgstr "" +msgstr "{platform_name} 标识" #: lms/templates/footer.html msgid "" @@ -4673,7 +4759,7 @@ msgstr "" #: lms/templates/footer.html msgid "© 2014 {platform_name}, some rights reserved." -msgstr "" +msgstr "© 2014 {platform_name},一些权利被保留。" #: lms/templates/footer.html msgid "Terms of Service and Honor Code" @@ -4696,7 +4782,7 @@ msgstr "您的邮件地址" #: lms/templates/forgot_password_modal.html lms/templates/login.html msgid "This is the e-mail address you used to register with {platform}" -msgstr "" +msgstr "这个e-mail地址被用于在{platform}注册。" #: lms/templates/forgot_password_modal.html msgid "Reset My Password" @@ -4751,7 +4837,7 @@ msgid "" "Please note: The {platform_name} support team is English speaking. While we " "will do our best to address your inquiry in any language, our responses will" " be in English." -msgstr "" +msgstr "请注意{platform_name}平台的技术支持团队说的是英语。我们将尽可能处理来自任何语种的请求,但我们只用英语答复。" #: lms/templates/help_modal.html lms/templates/login.html #: lms/templates/provider_login.html lms/templates/provider_login.html @@ -4763,11 +4849,11 @@ msgstr "电子邮件" #: lms/templates/help_modal.html msgid "Briefly describe your issue" -msgstr "" +msgstr "简述您的问题" #: lms/templates/help_modal.html msgid "Tell us the details" -msgstr "" +msgstr "告诉我们细节" #: lms/templates/help_modal.html msgid "Include error messages, steps which lead to the issue, etc" @@ -4803,35 +4889,35 @@ msgstr "" #: lms/templates/help_modal.html msgid "problem" -msgstr "" +msgstr "问题" #: lms/templates/help_modal.html msgid "Report a Problem" -msgstr "" +msgstr "报告问题" #: lms/templates/help_modal.html msgid "Brief description of the problem" -msgstr "" +msgstr "简述此问题" #: lms/templates/help_modal.html msgid "Details of the problem you are encountering" -msgstr "" +msgstr "你遇到的问题的细节" #: lms/templates/help_modal.html msgid "Include error messages, steps which lead to the issue, etc." -msgstr "" +msgstr "附上错误消息以及导致错误的步骤等" #: lms/templates/help_modal.html msgid "suggestion" -msgstr "" +msgstr "建议" #: lms/templates/help_modal.html msgid "Make a Suggestion" -msgstr "" +msgstr "提供建议" #: lms/templates/help_modal.html msgid "Brief description of your suggestion" -msgstr "" +msgstr "简述您的建议" #: lms/templates/help_modal.html lms/templates/help_modal.html #: lms/templates/module-error.html @@ -4840,27 +4926,27 @@ msgstr "细节" #: lms/templates/help_modal.html msgid "question" -msgstr "" +msgstr "问题" #: lms/templates/help_modal.html msgid "Ask a Question" -msgstr "" +msgstr "提问" #: lms/templates/help_modal.html msgid "Brief summary of your question" -msgstr "" +msgstr "简单概述您的问题" #: lms/templates/help_modal.html msgid "An error has occurred." -msgstr "" +msgstr "发生错误" #: lms/templates/help_modal.html msgid "Please {link_start}send us e-mail{link_end}." -msgstr "" +msgstr "请 {link_start}发送e-mail{link_end} 给我们。" #: lms/templates/help_modal.html msgid "Please try again later." -msgstr "" +msgstr "请稍后再试。" #: lms/templates/index.html msgid "Free courses from {university_name}" @@ -4946,7 +5032,7 @@ msgstr "进入我的课程" #: lms/templates/login.html lms/templates/register.html msgid "Processing your account information…" -msgstr "" +msgstr "正在处理您的账户信息..." #: lms/templates/login.html msgid "Please log in" @@ -4962,7 +5048,7 @@ msgstr "我们很遗憾,{platform_name} 账户现在无法使用" #: lms/templates/login.html msgid "The following errors occurred while logging you in:" -msgstr "" +msgstr "下面这些错误发生在您登录的时候:" #: lms/templates/login.html msgid "Your email or password is incorrect" @@ -4995,7 +5081,7 @@ msgstr "记住我" #. to the site. #: lms/templates/login.html msgid "or, if you have connected one of these providers, log in below." -msgstr "" +msgstr "或者,如果您有使用所列服务之一,请登录。" #. Translators: provider_name is the name of an external, third-party user #. authentication provider (like Google or LinkedIn). @@ -5003,52 +5089,70 @@ msgstr "" #. authentication service (like Google or LinkedIn). #: lms/templates/login.html lms/templates/register.html msgid "Sign in with {provider_name}" -msgstr "" +msgstr "以 {provider_name}登陆" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" -msgstr "" +msgstr "外部资源" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "{points} / {total_points} 分" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "总分{total_points} " #: lms/templates/lti.html msgid "View resource in a new window" -msgstr "" +msgstr "在新窗口中查看资源" #: lms/templates/lti.html msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." -msgstr "" +msgstr "请提供运行链接 launch_url,点击”编辑“,并填写需要的项。" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "根据以下等级反馈您的工作:" #: lms/templates/lti_form.html msgid "Press to Launch" -msgstr "" +msgstr "点击来启动" #: lms/templates/manage_user_standing.html msgid "Disable or Reenable student accounts" -msgstr "" +msgstr "停用或重新启用学生账号" #: lms/templates/manage_user_standing.html msgid "Username:" -msgstr "" +msgstr "用户名:" #: lms/templates/manage_user_standing.html msgid "Disable Account" -msgstr "" +msgstr "停用账号" #: lms/templates/manage_user_standing.html msgid "Reenable Account" -msgstr "" +msgstr "重新启用账号" #: lms/templates/manage_user_standing.html msgid "Students whose accounts have been disabled" -msgstr "" +msgstr "学生帐户已被停用" #: lms/templates/manage_user_standing.html msgid "(reload your page to refresh)" -msgstr "" +msgstr "(重新加载以刷新您的页面)" #: lms/templates/manage_user_standing.html msgid "working..." -msgstr "" +msgstr "进行中..." #: lms/templates/mathjax_accessible.html msgid "" @@ -5057,6 +5161,8 @@ msgid "" "the {link_start}MathPlayer Download Page{link_end} to download the plugin " "for your browser." msgstr "" +"这个页面采用MathJax技术来显示数学公式。为了使数学式可用,我们建议使用MathPlayer插件。请访问{link_start}MathPlayer下载页面{link_end}" +" 来为你的浏览器下载插件。" #: lms/templates/mathjax_accessible.html msgid "" @@ -5067,7 +5173,7 @@ msgstr "你的浏览器不支持MathPlayer插件。请使用IE6至9浏览器来 #: lms/templates/module-error.html #: lms/templates/courseware/courseware-error.html msgid "There has been an error on the {platform_name} servers" -msgstr "" +msgstr "{platform_name} 平台的服务器发生了错误" #: lms/templates/module-error.html msgid "" @@ -5075,6 +5181,7 @@ msgid "" " fix it as soon as possible. Please email us at {tech_support_email} to " "report any problems or downtime." msgstr "" +"非常抱歉,该模块暂时无法使用,我们的教员正在努力尽修复问题。要报告您发现的任何问题或遇到网站停摆,请向{tech_support_email}发送邮件" #: lms/templates/module-error.html msgid "Raw data:" @@ -5127,7 +5234,7 @@ msgstr "注销" #: lms/templates/navigation.html msgid "Shopping Cart" -msgstr "" +msgstr "购物车" #: lms/templates/navigation.html msgid "How it Works" @@ -5172,11 +5279,11 @@ msgstr "重置" #: lms/templates/problem.html msgid "Show Answer" -msgstr "" +msgstr "显示答案" #: lms/templates/problem.html msgid "Reveal Answer" -msgstr "" +msgstr "揭示答案" #: lms/templates/problem.html msgid "You have used {num_used} of {num_total} submissions" @@ -5192,7 +5299,7 @@ msgid "" "Your username, email, and full name will be sent to {destination}, where the" " collection and use of this information will be governed by their terms of " "service and privacy policy." -msgstr "" +msgstr "您的用户名、邮箱地址及全名将发送到 {destination},并保证在服务和隐私保护条款的监管下收集和使用这些信息。" #: lms/templates/provider_login.html msgid "Return To %s" @@ -5208,7 +5315,7 @@ msgstr "更新{platform_name}账户" #: lms/templates/register-shib.html msgid "Processing your account information …" -msgstr "" +msgstr "正在处理您的帐户信息..." #: lms/templates/register-shib.html msgid "Welcome {username}! Please set your preferences below" @@ -5221,7 +5328,7 @@ msgstr "我们很遗憾,{platform_name} 的注册功能在您的地区还无 #: lms/templates/register-shib.html lms/templates/register.html msgid "The following errors occurred while processing your registration:" -msgstr "" +msgstr "在你注册时发生了下列错误:" #: lms/templates/register-shib.html lms/templates/register.html msgid "" @@ -5245,7 +5352,7 @@ msgstr "将会在您参加的任何讨论或论坛上显示(之后将无法更 #: lms/templates/register-shib.html lms/templates/register.html msgid "Account Acknowledgements" -msgstr "" +msgstr "账户致谢" #: lms/templates/register-shib.html lms/templates/register.html #: lms/templates/signup_modal.html @@ -5330,7 +5437,7 @@ msgstr "{platform_name}注册" #: lms/templates/register.html msgid "Create My {platform_name} Account" -msgstr "" +msgstr "创建我的{platform_name}账户" #: lms/templates/register.html msgid "Welcome!" @@ -5342,23 +5449,23 @@ msgstr "注册以创建你在 {platform_name}的账户" #: lms/templates/register.html msgid "Register to start learning today!" -msgstr "" +msgstr "注册完今天就开始学习" #: lms/templates/register.html msgid "" "or create your own {platform_name} account by completing all " "required* fields below." -msgstr "" +msgstr "或者完善下面所有要求的*区域以创建自己的 {platform_name} 账户。" #. Translators: selected_provider is the name of an external, third-party user #. authentication service (like Google or LinkedIn). #: lms/templates/register.html msgid "You've successfully signed in with {selected_provider}." -msgstr "" +msgstr "您已成功地以{selected_provider}登陆。" #: lms/templates/register.html msgid "Finish your account registration below to start learning." -msgstr "" +msgstr "完成您的账户注册开始学习" #: lms/templates/register.html msgid "Please complete the following fields to register for an account. " @@ -5366,7 +5473,7 @@ msgstr "请将以下字段补充完整以完成账户注册。" #: lms/templates/register.html lms/templates/register.html msgid "cannot be changed later" -msgstr "" +msgstr "以后不能更改" #: lms/templates/register.html lms/templates/verify_student/face_upload.html msgid "example: Jane Doe" @@ -5374,7 +5481,7 @@ msgstr "例:Jane Doe" #: lms/templates/register.html lms/templates/register.html msgid "Needed for any certificates you may earn" -msgstr "" +msgstr "会作为你以后任何证书的信息" #: lms/templates/register.html msgid "Welcome {username}" @@ -5382,27 +5489,27 @@ msgstr "欢迎 {username}" #: lms/templates/register.html msgid "Enter a Public Display Name:" -msgstr "" +msgstr "输入一个公开的显示名称:" #: lms/templates/register.html msgid "Public Display Name" -msgstr "" +msgstr "公开显示名称" #: lms/templates/register.html lms/templates/register.html msgid "Extra Personal Information" -msgstr "" +msgstr "更多个人信息" #: lms/templates/register.html msgid "City" -msgstr "" +msgstr "城市" #: lms/templates/register.html msgid "example: New York" -msgstr "" +msgstr "例:北京" #: lms/templates/register.html msgid "Country" -msgstr "" +msgstr "国家" #: lms/templates/register.html msgid "Highest Level of Education Completed" @@ -5427,13 +5534,14 @@ msgstr "创建账号" #: lms/templates/resubscribe.html msgid "Re-subscribe Successful!" -msgstr "" +msgstr "重新订阅成功!" #: lms/templates/resubscribe.html msgid "" "You have re-enabled forum notification emails from {platform_name}. Click " "{dashboard_link_start}here{link_end} to return to your dashboard. " msgstr "" +"您已经同意接收{dashboard_link_start}论坛邮件提醒,请单击{dashboard_link_start}此处{link_end}返回您的控制面板。" #: lms/templates/seq_module.html lms/templates/seq_module.html #: lms/templates/discussion/mustache/_pagination.mustache @@ -5451,7 +5559,7 @@ msgstr "下一个" #: lms/templates/signup_modal.html msgid "Sign Up for {platform_name}" -msgstr "" +msgstr "注册为{platform_name}平台的会员" #: lms/templates/signup_modal.html lms/templates/signup_modal.html msgid "e.g. yourname@domain.com" @@ -5501,7 +5609,7 @@ msgstr "登录" #. sorted into group_id #: lms/templates/split_test_staff_view.html msgid "Group {group_id}" -msgstr "" +msgstr " {group_id}组" #: lms/templates/staff_problem_info.html msgid "Staff Debug Info" @@ -5529,7 +5637,7 @@ msgstr "标签" #: lms/templates/staff_problem_info.html msgid "Optional tag (eg \"done\" or \"broken\"):" -msgstr "" +msgstr "选项标志(如:“done” 或 “broken”)" #: lms/templates/staff_problem_info.html msgid "tag" @@ -5589,7 +5697,7 @@ msgstr "" #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Users" -msgstr "" +msgstr "用户" #: lms/templates/sysadmin_dashboard.html #: lms/templates/sysadmin_dashboard_gitlogs.html @@ -5600,27 +5708,27 @@ msgstr "" #: lms/templates/sysadmin_dashboard_gitlogs.html #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Logs" -msgstr "" +msgstr "Git日志" #: lms/templates/sysadmin_dashboard.html msgid "User Management" -msgstr "" +msgstr "用户管理" #: lms/templates/sysadmin_dashboard.html msgid "Email or username" -msgstr "" +msgstr "电子邮件或名字" #: lms/templates/sysadmin_dashboard.html msgid "Delete user" -msgstr "" +msgstr "删除用户" #: lms/templates/sysadmin_dashboard.html msgid "Create user" -msgstr "" +msgstr "创建用户" #: lms/templates/sysadmin_dashboard.html msgid "Download list of all users (csv file)" -msgstr "" +msgstr "下载所有用户列表 (csv 格式)" #: lms/templates/sysadmin_dashboard.html msgid "Check and repair external authentication map" @@ -5630,58 +5738,58 @@ msgstr "" msgid "" "Go to each individual course's Instructor dashboard to manage course " "enrollment." -msgstr "" +msgstr "进入每个课程的主讲教师面板来管理学生选课" #: lms/templates/sysadmin_dashboard.html msgid "Manage course staff and instructors" -msgstr "" +msgstr "管理课程教员与主讲教师" #: lms/templates/sysadmin_dashboard.html msgid "Download staff and instructor list (csv file)" -msgstr "" +msgstr "下载教员与主讲教师列名单(csv 格式)" #: lms/templates/sysadmin_dashboard.html msgid "Administer Courses" -msgstr "" +msgstr "管理课程" #. Translators: Repo is short for git repository or source of #. courseware #: lms/templates/sysadmin_dashboard.html msgid "Repo Location" -msgstr "" +msgstr "仓库位置" #. Translators: Repo is short for git repository or source of #. courseware and branch is a specific version within that repository #: lms/templates/sysadmin_dashboard.html msgid "Repo Branch (optional)" -msgstr "" +msgstr "仓库分支(可选)" #: lms/templates/sysadmin_dashboard.html msgid "Load new course from github" -msgstr "" +msgstr "从github载入新的课程" #: lms/templates/sysadmin_dashboard.html msgid "Course ID or dir" -msgstr "" +msgstr "课程编号或目录" #: lms/templates/sysadmin_dashboard.html msgid "Delete course from site" -msgstr "" +msgstr "从网站中删除课程" #: lms/templates/sysadmin_dashboard.html msgid "Django PID" -msgstr "" +msgstr "Django进程ID" #. Translators: A version number appears after this string #: lms/templates/sysadmin_dashboard.html msgid "Platform Version" -msgstr "" +msgstr "平台版本" #: lms/templates/sysadmin_dashboard_gitlogs.html #: lms/templates/sysadmin_dashboard_gitlogs.html #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Date" -msgstr "" +msgstr "日期" #: lms/templates/sysadmin_dashboard_gitlogs.html #: lms/templates/sysadmin_dashboard_gitlogs.html @@ -5690,19 +5798,19 @@ msgstr "课程编号" #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Git Action" -msgstr "" +msgstr "Git动作" #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "Recent git load activity for" -msgstr "" +msgstr "近期的git加载活动" #: lms/templates/sysadmin_dashboard_gitlogs.html msgid "git action" -msgstr "" +msgstr "Git动作" #: lms/templates/textannotation.html msgid "Source:" -msgstr "" +msgstr "源" #: lms/templates/tracking_log.html msgid "Tracking Log" @@ -5726,7 +5834,7 @@ msgstr "类型" #: lms/templates/unsubscribe.html msgid "Unsubscribe Successful!" -msgstr "" +msgstr "取消订阅成功!" #: lms/templates/unsubscribe.html msgid "" @@ -5735,6 +5843,7 @@ msgid "" "you did not mean to do this, click {undo_link_start}here{link_end} to re-" "subscribe." msgstr "" +"您不将再接收到{dashboard_link_start}论坛邮件提醒,请单击{dashboard_link_start}此处{link_end}返回您的控制面板。如果您不是有意取消,请单击{undo_link_start}此处{link_end}重新订阅消息。" #: lms/templates/using.html msgid "Using the system" @@ -5764,19 +5873,19 @@ msgstr "" #: lms/templates/video.html msgid "Skip to a navigable version of this video's transcript." -msgstr "" +msgstr "跳到视频字幕的导航版本。" #: lms/templates/video.html msgid "Loading video player" -msgstr "" +msgstr "正在加载视频播放器" #: lms/templates/video.html msgid "Play video" -msgstr "" +msgstr "播放视频" #: lms/templates/video.html msgid "Video position" -msgstr "" +msgstr "视频位置" #: lms/templates/video.html msgid "Play" @@ -5796,11 +5905,11 @@ msgstr "音量" #: lms/templates/video.html msgid "Fill browser" -msgstr "" +msgstr "填充浏览器" #: lms/templates/video.html msgid "HD off" -msgstr "" +msgstr "关闭高清" #: lms/templates/video.html lms/templates/video.html msgid "Turn off captions" @@ -5808,17 +5917,17 @@ msgstr "关闭字幕" #: lms/templates/video.html msgid "Skip to end of transcript." -msgstr "" +msgstr "跳到字幕结尾。" #: lms/templates/video.html msgid "" "Activating an item in this group will spool the video to the corresponding " "time point. To skip transcript, go to previous item." -msgstr "" +msgstr "激活组中的某个项目将会跳到视频中对应的时间点。前往前一个项目可以跳过字幕。" #: lms/templates/video.html msgid "Go back to start of transcript." -msgstr "" +msgstr "回到字幕起始点。" #: lms/templates/video.html msgid "Download video" @@ -5826,15 +5935,11 @@ msgstr "下载视频" #: lms/templates/video.html lms/templates/video.html msgid "Download transcript" -msgstr "" - -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" +msgstr "下载字幕" #: lms/templates/video.html msgid "Download Handout" -msgstr "" +msgstr "下载讲义" #: lms/templates/word_cloud.html msgid "Your words:" @@ -5846,11 +5951,11 @@ msgstr "总字数:" #: lms/templates/combinedopenended/combined_open_ended.html msgid "Open Response" -msgstr "" +msgstr "打开回复" #: lms/templates/combinedopenended/combined_open_ended.html msgid "Assessments:" -msgstr "" +msgstr "评估:" #: lms/templates/combinedopenended/combined_open_ended.html #: lms/templates/peer_grading/peer_grading_problem.html @@ -5859,7 +5964,7 @@ msgstr "隐藏问题" #: lms/templates/combinedopenended/combined_open_ended.html msgid "New Submission" -msgstr "" +msgstr "新意见" #: lms/templates/combinedopenended/combined_open_ended.html msgid "Next Step" @@ -5873,6 +5978,8 @@ msgid "" "automatically, and will be returned within 30 minutes if the original is " "already graded, or when the original is graded if not." msgstr "" +"教员提醒:请注意,如果你重复提交相同的评定用资料,它将不会出现在教员的视图中。它将会自动的给与之前提交的版本相同的评价, " +"如果原版本已经评价了,则它将会在30分钟内被退回。" #: lms/templates/combinedopenended/combined_open_ended_legend.html msgid "Legend" @@ -5880,11 +5987,11 @@ msgstr " 图例" #: lms/templates/combinedopenended/combined_open_ended_results.html msgid "Submitted Rubric" -msgstr "" +msgstr "提交的规则" #: lms/templates/combinedopenended/combined_open_ended_results.html msgid "Toggle Full Rubric" -msgstr "" +msgstr "开关完整规则" #. Translators: an example of what this string will look #. like is: "Scored rubric from grader 1", where @@ -5896,7 +6003,7 @@ msgstr "" #. graded rubrics the user might have received #: lms/templates/combinedopenended/combined_open_ended_results.html msgid "{result_of_task} from grader {number}" -msgstr "" +msgstr "来自评定者{number}的结果{result_of_task}" #. Translators: "See full feedback" is the text of #. a link that allows a user to see more detailed @@ -5978,7 +6085,7 @@ msgstr "跳过后继评阅" #: lms/templates/combinedopenended/openended/open_ended_combined_rubric.html msgid "{num} point: {explanatory_text}" msgid_plural "{num} points: {explanatory_text}" -msgstr[0] "" +msgstr[0] "{num} 点数: {explanatory_text}" #: lms/templates/combinedopenended/openended/open_ended_error.html msgid "There was an error with your submission. Please contact course staff." @@ -5992,12 +6099,12 @@ msgstr "评分标准" msgid "" "Select the criteria you feel best represents this submission in each " "category." -msgstr "" +msgstr "在每一种类中选择一个您觉得的能最好代表这个提交的标准" #: lms/templates/combinedopenended/openended/open_ended_rubric.html msgid "{num} point: {text}" msgid_plural "{num} points: {text}" -msgstr[0] "" +msgstr[0] "{num} 分: {text}" #: lms/templates/combinedopenended/selfassessment/self_assessment_hint.html msgid "Please enter a hint below:" @@ -6034,7 +6141,7 @@ msgstr "{chapter}, 当前章节" #: lms/templates/courseware/accordion.html #: lms/templates/courseware/progress.html msgid "due {date}" -msgstr "" +msgstr "到期日{date}" #: lms/templates/courseware/course_about.html msgid "" @@ -6042,7 +6149,7 @@ msgid "" "this course. You may need to {start_logout_tag}log out{end_tag} then try the" " register button again. Please visit the {start_help_tag}help page{end_tag} " "for a possible solution." -msgstr "" +msgstr "当前登录用户的账号没有参加此课程的权限,建议您登出后尝试重新注册,请访问帮助页面查找解决方法。" #: lms/templates/courseware/course_about.html msgid "About {course.display_number_with_default}" @@ -6050,7 +6157,7 @@ msgstr "关于{course.display_number_with_default}" #: lms/templates/courseware/course_about.html msgid "You are registered for this course" -msgstr "" +msgstr "您已注册了此课程" #: lms/templates/courseware/course_about.html msgid "View Courseware" @@ -6071,7 +6178,7 @@ msgstr "注册{course.display_number_with_default}" #: lms/templates/courseware/course_about.html msgid "View About Page in studio" -msgstr "" +msgstr "在职员界面查看课程简介页面" #: lms/templates/courseware/course_about.html msgid "Overview" @@ -6085,15 +6192,15 @@ msgstr "与亲朋好友分享!" #. Twitter account. {url} should appear at the end of the text. #: lms/templates/courseware/course_about.html msgid "I just registered for {number} {title} through {account}: {url}" -msgstr "" +msgstr "我刚刚通过 {account} 注册了编号为 {number} 的课程 {title},链接是:{url}" #: lms/templates/courseware/course_about.html msgid "Take a course with {platform} online" -msgstr "" +msgstr "在 {platform} 上在线学习课程" #: lms/templates/courseware/course_about.html msgid "I just registered for {number} {title} through {platform} {url}" -msgstr "" +msgstr "我刚刚通过 {platform} 注册了编号为 {number} 的课程 {title},链接是:{url}" #: lms/templates/courseware/course_about.html msgid "Classes Start" @@ -6119,7 +6226,7 @@ msgstr "额外资源" #. notification image that indicates the tab "needs attention". #: lms/templates/courseware/course_navigation.html msgid "needs attention" -msgstr "" +msgstr "需要注意" #: lms/templates/courseware/course_navigation.html #: lms/templates/courseware/course_navigation.html @@ -6144,6 +6251,7 @@ msgid "" " fix it as soon as possible. Please email us at {tech_support_email}' to " "report any problems or downtime." msgstr "" +"非常抱歉,该模块暂时无法使用,我们的教员正在努力尽修复问题。要报告您发现的任何问题或遇到网站停摆,请向{tech_support_email}发送邮件" #: lms/templates/courseware/courseware.html msgid "{course_number} Courseware" @@ -6163,13 +6271,13 @@ msgstr "开启计算器" #: lms/templates/courseware/courseware.html msgid "Calculator Input Field" -msgstr "" +msgstr "计算器输入项" #: lms/templates/courseware/courseware.html msgid "" "Use the arrow keys to navigate the tips or use the tab key to return to the " "calculator" -msgstr "" +msgstr "使用方向键在提示中导航或者使用tab键返回到计算器" #: lms/templates/courseware/courseware.html msgid "Hints" @@ -6177,27 +6285,27 @@ msgstr "提示" #: lms/templates/courseware/courseware.html msgid "Integers" -msgstr "" +msgstr "整数" #: lms/templates/courseware/courseware.html msgid "Decimals" -msgstr "" +msgstr "小数" #: lms/templates/courseware/courseware.html msgid "Scientific notation" -msgstr "" +msgstr "科学记数法" #: lms/templates/courseware/courseware.html msgid "Appending SI postfixes" -msgstr "" +msgstr "添加国际单位制后缀" #: lms/templates/courseware/courseware.html msgid "Supported SI postfixes" -msgstr "" +msgstr "支持的国际单位制后缀" #: lms/templates/courseware/courseware.html msgid "Operators" -msgstr "" +msgstr "操作" #: lms/templates/courseware/courseware.html msgid "parallel resistors function" @@ -6205,7 +6313,7 @@ msgstr "" #: lms/templates/courseware/courseware.html msgid "Functions" -msgstr "" +msgstr "功能" #: lms/templates/courseware/courseware.html msgid "Constants" @@ -6213,35 +6321,35 @@ msgstr "常量" #: lms/templates/courseware/courseware.html msgid "Euler's number" -msgstr "" +msgstr "欧拉数字" #: lms/templates/courseware/courseware.html msgid "ratio of a circle's circumference to it's diameter" -msgstr "" +msgstr "圆形的周长与直径的比值" #: lms/templates/courseware/courseware.html msgid "Boltzmann constant" -msgstr "" +msgstr "玻耳兹曼常量" #: lms/templates/courseware/courseware.html msgid "speed of light" -msgstr "" +msgstr "光速" #: lms/templates/courseware/courseware.html msgid "freezing point of water in degrees Kelvin" -msgstr "" +msgstr "绝对温度下水的冰点" #: lms/templates/courseware/courseware.html msgid "fundamental charge" -msgstr "" +msgstr "基础费用" #: lms/templates/courseware/courseware.html msgid "Calculate" -msgstr "" +msgstr "计算" #: lms/templates/courseware/courseware.html msgid "Calculator Output Field" -msgstr "" +msgstr "计算器输出项" #: lms/templates/courseware/error-message.html msgid "" @@ -6249,6 +6357,7 @@ msgid "" " fix it as soon as possible. Please email us at {link_to_support_email} to " "report any problems or downtime." msgstr "" +"非常抱歉,该模块暂时无法使用,我们的教员正在努力尽快修复问题。要报告您发现的任何问题或遇到网站停摆,请向{tech_support_email}发送邮件" #: lms/templates/courseware/grade_summary.html #: lms/templates/courseware/instructor_dashboard.html @@ -6266,15 +6375,15 @@ msgstr "成绩簿" #: lms/templates/courseware/gradebook.html msgid "Search students" -msgstr "" +msgstr "搜索学生" #: lms/templates/courseware/info.html msgid "{course_number} Course Info" -msgstr "" +msgstr "{course_number} 课程信息" #: lms/templates/courseware/info.html msgid "View Updates in Studio" -msgstr "" +msgstr "在职员界面查看更新" #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" @@ -6298,11 +6407,11 @@ msgstr "授课教师面板" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "View Course in Studio" -msgstr "" +msgstr "在职员界面查看课程" #: lms/templates/courseware/instructor_dashboard.html msgid "Try New Beta Dashboard" -msgstr "" +msgstr "尝试新控制面板" #: lms/templates/courseware/instructor_dashboard.html msgid "Psychometrics" @@ -6326,7 +6435,7 @@ msgstr "管理小组" #: lms/templates/courseware/instructor_dashboard.html msgid "Metrics" -msgstr "" +msgstr "度量" #: lms/templates/courseware/instructor_dashboard.html msgid "Grade Downloads" @@ -6340,6 +6449,8 @@ msgid "" "{max_enrollment} students. We are urgently working on fixing this issue. " "Thank you for your patience as we continue working to improve the platform!" msgstr "" +"注意: 在一些大课中这些按钮会因超时而出现问题,所以在 学生数超过{max_enrollment}的 " +"课程中我们临时禁止了这些属性。我们会尽快修复这个问题。请你耐心等待我们来改善这个平台!" #: lms/templates/courseware/instructor_dashboard.html msgid "Export grades to remote gradebook" @@ -6439,7 +6550,7 @@ msgstr "用户需要论坛管理员权限来完成管理任务。请联系主讲 #: lms/templates/courseware/instructor_dashboard.html msgid "Explanation of Roles:" -msgstr "" +msgstr "角色注释:" #: lms/templates/courseware/instructor_dashboard.html msgid "" @@ -6447,19 +6558,20 @@ msgid "" "and re-open threads, endorse responses, and see posts from all cohorts (if " "the course is cohorted). Moderators' posts are marked as 'staff'." msgstr "" +"论坛版主:可以编辑或删除任何帖子,去除灌水标记,关闭与重新打开帖子,签名反馈,查看群内所有帖子(如果该课程在群内)。版主的帖子被标记为“教员”。" #: lms/templates/courseware/instructor_dashboard.html msgid "" "Forum Admins: have moderator privileges, as well as the ability to edit the " "list of forum moderators (e.g. to appoint a new moderator). Admins' posts " "are marked as 'staff'." -msgstr "" +msgstr "论坛管理员:拥有版主特权,以及能够编辑论坛版主的列表(比如任命一个新的版主)。管理员的帖子被标记为“教员”。" #: lms/templates/courseware/instructor_dashboard.html msgid "" "Community TAs: have forum moderator privileges, and their posts are labelled" " 'Community TA'." -msgstr "" +msgstr "社区助教们:拥有论坛版主的特权,并且他们所有的发布都标记为“社区助教”。" #: lms/templates/courseware/instructor_dashboard.html msgid "Enrollment Data" @@ -6484,7 +6596,7 @@ msgstr "大批次注册" msgid "" "Enroll or un-enroll one or many students: enter emails, separated by new " "lines or commas;" -msgstr "" +msgstr "一个或多个学生注册或取消注册:输入电子邮件地址,用逗号或重启一行来分隔;" #: lms/templates/courseware/instructor_dashboard.html msgid "Notify students by email" @@ -6492,11 +6604,11 @@ msgstr "通过邮件通知学生" #: lms/templates/courseware/instructor_dashboard.html msgid "Auto-enroll students when they activate" -msgstr "" +msgstr "当激活时自动注册的学生" #: lms/templates/courseware/instructor_dashboard.html msgid "Problem urlname:" -msgstr "" +msgstr "问题的URL地址:" #. Translators: days_early_for_beta should not be translated #: lms/templates/courseware/instructor_dashboard.html @@ -6506,6 +6618,8 @@ msgid "" "as configured via the days_early_for_beta option in the course " "policy." msgstr "" +"输入要成为测试用户的学生的用户名或邮件地址,一行一个,或者以逗号分开。他们可以在课程设置里指定的days_early_for_beta" +" 看到课程的材料。" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html @@ -6522,14 +6636,14 @@ msgstr "我自己" #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Staff and instructors" -msgstr "" +msgstr "教员与主讲教师" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "All (students, staff and instructors)" -msgstr "" +msgstr "所有人(学生,教员和主讲教师)" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html @@ -6539,62 +6653,62 @@ msgstr "主题:" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "(Max 128 characters)" -msgstr "" +msgstr "(最大 128 个字符)" #: lms/templates/courseware/instructor_dashboard.html msgid "" "Please try not to email students more than once per week. Important things " "to consider before sending:" -msgstr "" +msgstr "请尽量不要一周之内给学生发送超过一封电子邮件。发送前需考虑的重要事项:" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "" "Have you read over the email to make sure it says everything you want to " "say?" -msgstr "" +msgstr "您是否通读过邮件以确保邮件已经包含您想说的全部内容?" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "" "Have you sent the email to yourself first to make sure you're happy with how" " it's displayed, and that embedded links and images work properly?" -msgstr "" +msgstr "您是否已经先把邮件发送给自己以确保您对其展示方式感到满意,并且所嵌入的链接和图片都正常显示?" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "CAUTION!" -msgstr "" +msgstr "注意!" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "" "Once the 'Send Email' button is clicked, your email will be queued for " "sending." -msgstr "" +msgstr "当“发送电子邮件”按钮被按下,你的电子邮件将会进入发送队列。" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "A queued email CANNOT be cancelled." -msgstr "" +msgstr "一个已经在队列中的电子邮件是不能够被取消的。" #: lms/templates/courseware/instructor_dashboard.html msgid "No Analytics are available at this time." -msgstr "" +msgstr "目前没有可用的分析数据" #: lms/templates/courseware/instructor_dashboard.html msgid "" "Students enrolled (historical count, includes those who have since " "unenrolled):" -msgstr "" +msgstr "选课学生(历史记录,包括退课的学生):" #: lms/templates/courseware/instructor_dashboard.html msgid "Students active in the last week:" -msgstr "" +msgstr "上周的活跃学生:" #: lms/templates/courseware/instructor_dashboard.html msgid "Student activity day by day" -msgstr "" +msgstr "学生的日常活动" #: lms/templates/courseware/instructor_dashboard.html msgid "Day" @@ -6606,47 +6720,47 @@ msgstr "学生" #: lms/templates/courseware/instructor_dashboard.html msgid "Score distribution for problems" -msgstr "" +msgstr "问答问题的成绩分布" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "Problem" -msgstr "" +msgstr "问题" #: lms/templates/courseware/instructor_dashboard.html msgid "Max" -msgstr "" +msgstr "最大" #: lms/templates/courseware/instructor_dashboard.html msgid "Points Earned (Num Students)" -msgstr "" +msgstr "得分(学生数目)" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "There is no data available to display at this time." -msgstr "" +msgstr "目前没有可用的数据" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "" "Loading the latest graphs for you; depending on your class size, this may " "take a few minutes." -msgstr "" +msgstr "正在为您加载最新统计图,因班级学员人数规模的差异,这个过程可能要花几分钟。" #: lms/templates/courseware/instructor_dashboard.html msgid "Count of Students that Opened a Subsection" -msgstr "" +msgstr "统计开辟了子栏目的学生人数" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade Distribution per Problem" -msgstr "" +msgstr "每个问题的成绩分布" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "There are no problems in this section." -msgstr "" +msgstr "这一章节没有问题" #: lms/templates/courseware/instructor_dashboard.html msgid "Students answering correctly" @@ -6660,7 +6774,7 @@ msgstr "学生数目" msgid "" "Student distribution per country, all courses, Sep-12 to Oct-17, 1 server " "(shown here as an example):" -msgstr "" +msgstr "每个国家的学生分布,所有课程,9月12日到10月17日,一台服务器(这里显示了一个样例):" #: lms/templates/courseware/instructor_dashboard.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html @@ -6668,7 +6782,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Pending Instructor Tasks" -msgstr "" +msgstr "等待主讲教师处理" #: lms/templates/courseware/instructor_dashboard.html msgid "Task Type" @@ -6705,7 +6819,7 @@ msgstr "未知" #: lms/templates/courseware/instructor_dashboard.html msgid "Course errors" -msgstr "" +msgstr "课程错误" #: lms/templates/courseware/mktg_coming_soon.html msgid "About {course_id}" @@ -6737,7 +6851,7 @@ msgstr "注册已经截止。" #: lms/templates/courseware/news.html msgid "News - MITx 6.002x" -msgstr "" +msgstr "新闻 - MITx 6.002x" #: lms/templates/courseware/news.html msgid "Updates to Discussion Posts You Follow" @@ -6745,39 +6859,39 @@ msgstr "您关注的讨论帖的更新情况" #: lms/templates/courseware/progress.html msgid "{course_number} Progress" -msgstr "" +msgstr "{course_number}课程进展" #: lms/templates/courseware/progress.html msgid "Course Progress" -msgstr "" +msgstr "课程进度" #: lms/templates/courseware/progress.html msgid "View Grading in studio" -msgstr "" +msgstr "在职员界面查看成绩" #: lms/templates/courseware/progress.html msgid "Course Progress for Student '{username}' ({email})" -msgstr "" +msgstr "学生 '{username}' ({email}) 的课程进度" #: lms/templates/courseware/progress.html msgid "Download your certificate" -msgstr "" +msgstr "下载您的证书" #: lms/templates/courseware/progress.html msgid "{earned:.3n} of {total:.3n} possible points" -msgstr "" +msgstr "{earned:.3n} 来自可能的总分 {total:.3n}" #: lms/templates/courseware/progress.html msgid "Problem Scores: " -msgstr "" +msgstr "问题成绩:" #: lms/templates/courseware/progress.html msgid "Practice Scores: " -msgstr "" +msgstr "实践得分:" #: lms/templates/courseware/progress.html msgid "No problem scores in this section" -msgstr "" +msgstr "本章节没有计分的问题" #: lms/templates/courseware/syllabus.html msgid "{course.display_number_with_default} Course Info" @@ -6801,7 +6915,7 @@ msgstr "您的最终成绩:" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Grade required for a {cert_name_short}:" -msgstr "" +msgstr "要为为{cert_name_short}做评定:" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "" @@ -6812,6 +6926,7 @@ msgid "" "please let us know by contacting {email}. If you would like a refund on your" " {cert_name_long}, please contact our billing address {billing_email}" msgstr "" +"由于你{cert_name_short}的身份与美国对伊朗,古巴,叙利亚和苏丹等国家的严格限制相关,你{cert_name_long}的身份认证有待进一步的确认。如果你认为我们的系统错误地将你与上述国家关联,请联系{email}让我们了解相关情况。如果你希望退款给{cert_name_long},请联系我们账务{billing_email}" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "" @@ -6821,10 +6936,11 @@ msgid "" "identified you as being connected with one of those countries, please let us" " know by contacting {email}." msgstr "" +"由于你{cert_name_short}的身份与美国对伊朗,古巴,叙利亚和苏丹等国家的严格限制相关,你{cert_name_long}的身份认证有待进一步的确认。如果你认为我们的系统错误地将你与上述国家关联,请联系{email}让我们了解相关情况。" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Your {cert_name_short} is Generating" -msgstr "" +msgstr "认证{cert_name_short}生成中" #: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html @@ -6834,7 +6950,7 @@ msgstr "点击此链接打开或下载PDF文件" #: lms/templates/dashboard/_dashboard_certificate_information.html #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your {cert_name_short} (PDF)" -msgstr "" +msgstr "下载认证{cert_name_short}(PDF)" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "" @@ -6842,16 +6958,18 @@ msgid "" "{cert_name_long} was generated, we could not grant you a verified " "{cert_name_short}. An honor code {cert_name_short} has been granted instead." msgstr "" +"由于你{cert_name_long}的身份认证时没有提供一组有效的照片,所以无法授予你{cert_name_short}验证的证书。作为替代只能授予一个诚信条例证书给你{cert_name_short}" +" 。" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "" "This link will open/download a PDF document of your verified " "{cert_name_long}." -msgstr "" +msgstr "此链接会打开或下载您验证过的PDF{cert_name_long}证书。" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Download Your ID Verified {cert_name_short} (PDF)" -msgstr "" +msgstr "下载您已经通过身份认证的 {cert_name_short} (PDF)证书" #: lms/templates/dashboard/_dashboard_certificate_information.html msgid "Complete our course feedback survey" @@ -6884,7 +7002,7 @@ msgstr "课程开始时间 - {start_date}" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Course has not yet started" -msgstr "" +msgstr "该课程尚未开始" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Course Starts - {start_date}" @@ -6892,15 +7010,15 @@ msgstr "课程开始时间 - {start_date}" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Document your accomplishment!" -msgstr "" +msgstr "记录你的成绩!" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Challenge Yourself!" -msgstr "" +msgstr "挑战自己!" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Take this course as an ID-verified student." -msgstr "" +msgstr "以认证学生身份参加此课程。" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" @@ -6909,6 +7027,8 @@ msgid "" "your achievement. {link_start}Learn more about the verified " "{cert_name_long}{link_end}." msgstr "" +"您仍然可以选修该课程,虽然该课程曾经是您的身份验证付费课程{cert_name_long} " +"。如果您计划完成整个课程,这是一种体现您成就感的极好方式。点击{a_start}了解更多关于验证证书{cert_name_long}的信息{a_end}。" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Upgrade to Verified Track" @@ -6925,7 +7045,7 @@ msgstr "查看课程" #. Translators: The course's name will be added to the end of this sentence. #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Are you sure you want to unregister from" -msgstr "" +msgstr "您确认要放弃修读" #. Translators: The course's name will be added to the end of this sentence. #: lms/templates/dashboard/_dashboard_course_listing.html @@ -6933,14 +7053,14 @@ msgstr "" msgid "" "Are you sure you want to unregister from the verified {cert_name_long} track" " of" -msgstr "" +msgstr "您确认要退该课吗?该课程已经通过了付费证书的验证,验证码为{cert_name_long} " #: lms/templates/dashboard/_dashboard_course_listing.html msgid "" "In order to request a refund for the amount you paid, you will need to send " "an email to {billing_email}. Be sure to include your email and the course " "name." -msgstr "" +msgstr "申请全额退款,请发送电子邮件到{billing_email}。请包含您的课程名称与电子邮件信息。" #: lms/templates/dashboard/_dashboard_course_listing.html msgid "Email Settings" @@ -6950,106 +7070,106 @@ msgstr "电子邮件设置" #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "You need to re-verify to continue" -msgstr "" +msgstr "再次确认并继续" #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "" "To continue in the ID Verified track in the following courses, you need to " "re-verify your identity:" -msgstr "" +msgstr "为了继续完成接下来课程的身份审核,您必须重新验证您的身份。" #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "{course_name}: Re-verify by {date}" -msgstr "" +msgstr "{course_name}: 重新审核于 {date}" #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Notification Actions" -msgstr "" +msgstr "通知方式" #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "" "To continue in the ID Verified track in {course_name}, you need to re-verify" " your identity by {date}." -msgstr "" +msgstr "为了继续完成{course_name}课程的身份审核,您必须在{date}前重新验证您的身份。" #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Your re-verification failed" -msgstr "" +msgstr "您的验证失败" #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "" "Your re-verification for {course_name} failed and you are no longer eligible" " for a Verified Certificate. If you think this is in error, please contact " "us at {email}." -msgstr "" +msgstr "您重新验证{course_name}课程失败,您不再享有该课程认证证书。如果您对此有质疑,请通过邮件{email}联系我们。" #: lms/templates/dashboard/_dashboard_prompt_midcourse_reverify.html msgid "Dismiss" -msgstr "" +msgstr "解散" #: lms/templates/dashboard/_dashboard_reverification_sidebar.html msgid "Re-verification now open for:" -msgstr "" +msgstr "现在开放重新验证:" #: lms/templates/dashboard/_dashboard_reverification_sidebar.html msgid "Re-verify now:" -msgstr "" +msgstr "重新验证中" #: lms/templates/dashboard/_dashboard_reverification_sidebar.html msgid "Pending:" -msgstr "" +msgstr "附加:" #: lms/templates/dashboard/_dashboard_reverification_sidebar.html msgid "Denied:" -msgstr "" +msgstr "拒绝" #: lms/templates/dashboard/_dashboard_reverification_sidebar.html msgid "Approved:" -msgstr "" +msgstr "通过" #: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html #: lms/templates/dashboard/_dashboard_status_verification.html msgid "ID-Verification Status" -msgstr "" +msgstr "身份验证状态" #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Reviewed and Verified" -msgstr "" +msgstr "检查与验证" #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Your verification status is good for one year after submission." -msgstr "" +msgstr "你的验证状态将在提交后有一年的有效期。" #: lms/templates/dashboard/_dashboard_status_verification.html msgid "" "Your verification photos have been submitted and will be reviewed shortly." -msgstr "" +msgstr "你的验证照片已经提交并将稍后进行审查。" #: lms/templates/dashboard/_dashboard_status_verification.html msgid "Re-verify Yourself" -msgstr "" +msgstr "自我重验证" #: lms/templates/dashboard/_dashboard_status_verification.html msgid "" "If you fail to pass a verification attempt before your course ends, you will" " not receive a verified certificate." -msgstr "" +msgstr "在你的课程结束前如果无法通过验证尝试,你将无法获得验证的证书。" #: lms/templates/debug/run_python_form.html msgid "Results:" -msgstr "" +msgstr "结果:" #: lms/templates/discussion/_blank_slate.html msgid "" "Sorry! We can't find anything matching your search. Please try another " "search." -msgstr "" +msgstr "抱歉,没有找不到您的查询内容。请尝试其他查询。" #: lms/templates/discussion/_blank_slate.html msgid "There are no posts here yet. Be the first one to post!" -msgstr "" +msgstr "现在还没有讨论帖。成为第一个发帖的人吧!" #: lms/templates/discussion/_discussion_course_navigation.html #: lms/templates/discussion/_discussion_module.html @@ -7058,11 +7178,11 @@ msgstr "新讨论帖" #: lms/templates/discussion/_discussion_module.html msgid "Show Discussion" -msgstr "" +msgstr "显示讨论" #: lms/templates/discussion/_discussion_module_studio.html msgid "To view live discussions, click Preview or View Live in Unit Settings." -msgstr "" +msgstr "要查看现场讨论,请在单元设置中点击“预览”或“现场查看”" #: lms/templates/discussion/_filter_dropdown.html msgid "Filter Topics" @@ -7070,7 +7190,7 @@ msgstr "过滤主题" #: lms/templates/discussion/_filter_dropdown.html msgid "filter topics" -msgstr "" +msgstr "过滤主题" #: lms/templates/discussion/_filter_dropdown.html #: lms/templates/discussion/_new_post.html @@ -7105,7 +7225,7 @@ msgstr "匿名发帖" #: lms/templates/discussion/mustache/_inline_discussion.mustache #: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache msgid "post anonymously to classmates" -msgstr "" +msgstr "向同学匿名发帖" #. Translators: This labels the selector for which group of students can view #. a @@ -7123,8 +7243,13 @@ msgstr "我的同伴" #: lms/templates/discussion/_inline_new_post.html #: lms/templates/discussion/_new_post.html msgid "new post title" -msgstr "" +msgstr "新文章标题" +#: lms/templates/discussion/_inline_new_post.html +#: lms/templates/discussion/_new_post.html +#: lms/templates/discussion/_underscore_templates.html +#: lms/templates/discussion/mustache/_inline_discussion.mustache +#: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache #: wiki/forms.py wiki/forms.py wiki/forms.py msgid "Title" msgstr "标题" @@ -7134,7 +7259,7 @@ msgstr "标题" #: lms/templates/discussion/mustache/_inline_discussion.mustache #: lms/templates/discussion/mustache/_inline_discussion_cohorted.mustache msgid "Enter your question or comment…" -msgstr "" +msgstr "请输入您的问题和评论" #: lms/templates/discussion/_inline_new_post.html #: lms/templates/discussion/_new_post.html @@ -7145,7 +7270,7 @@ msgstr "发新讨论帖" #: lms/templates/discussion/_new_post.html msgid "Create new post about:" -msgstr "" +msgstr "新贴的主题:" #: lms/templates/discussion/_new_post.html msgid "Filter List" @@ -7153,7 +7278,7 @@ msgstr "过滤列表" #: lms/templates/discussion/_new_post.html msgid "Filter discussion areas" -msgstr "" +msgstr "过滤讨论部分" #: lms/templates/discussion/_recent_active_posts.html msgid "Following" @@ -7169,7 +7294,7 @@ msgstr "隐藏" #: lms/templates/discussion/_thread_list_template.html msgid "Discussion Home" -msgstr "" +msgstr "课后讨论" #: lms/templates/discussion/_thread_list_template.html msgid "Discussion Topics" @@ -7181,7 +7306,7 @@ msgstr "讨论主题;当前选中的是:" #: lms/templates/discussion/_thread_list_template.html msgid "Search all discussions" -msgstr "" +msgstr "查找所有讨论" #: lms/templates/discussion/_thread_list_template.html msgid "Sort by:" @@ -7209,13 +7334,13 @@ msgstr "查看所有" #: lms/templates/discussion/_thread_list_template.html msgid "View as {name}" -msgstr "" +msgstr "以{name}查看" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache msgid "Add A Response" -msgstr "" +msgstr "添加回复" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache @@ -7235,7 +7360,7 @@ msgstr "回复:" #: lms/templates/discussion/mustache/_inline_thread_show.mustache #: lms/templates/discussion/mustache/_profile_thread.mustache msgid "anonymous" -msgstr "" +msgstr "匿名" #: lms/templates/discussion/_underscore_templates.html msgid "• This thread is closed." @@ -7243,18 +7368,18 @@ msgstr "• 这个帖子已经关闭。" #: lms/templates/discussion/_underscore_templates.html msgid "follow" -msgstr "" +msgstr "关注" #: lms/templates/discussion/_underscore_templates.html msgid "Follow this post" -msgstr "" +msgstr "跟踪这个帖子" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Report Misuse" -msgstr "" +msgstr "报告滥用" #: lms/templates/discussion/_underscore_templates.html msgid "Pin Thread" @@ -7263,19 +7388,19 @@ msgstr "置顶讨论帖" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/mustache/_inline_thread_show.mustache msgid "Pinned" -msgstr "" +msgstr "已处理" #: lms/templates/discussion/_underscore_templates.html msgid "(this post is about %(courseware_title_linked)s)" -msgstr "" +msgstr "(这是关于%(courseware_title_linked)s的消息)" #: lms/templates/discussion/_underscore_templates.html msgid "Editing post" -msgstr "" +msgstr "编辑讨论帖" #: lms/templates/discussion/_underscore_templates.html msgid "Edit post title" -msgstr "" +msgstr "编辑帖子标题" #: lms/templates/discussion/_underscore_templates.html msgid "Update post" @@ -7287,11 +7412,11 @@ msgstr "添加评论" #: lms/templates/discussion/_underscore_templates.html msgid "Add a comment..." -msgstr "" +msgstr "添加评论..." #: lms/templates/discussion/_underscore_templates.html msgid "endorse" -msgstr "" +msgstr "认可" #: lms/templates/discussion/_underscore_templates.html msgid "Editing response" @@ -7304,77 +7429,79 @@ msgstr "更新回复" #: lms/templates/discussion/_underscore_templates.html #: lms/templates/discussion/_underscore_templates.html msgid "Delete Comment" -msgstr "" +msgstr "删除注释" #: lms/templates/discussion/_underscore_templates.html msgid "-posted %(time_ago)s by" -msgstr "" +msgstr "-最近编辑 %(time_ago)s " #: lms/templates/discussion/_underscore_templates.html msgid "Editing comment" -msgstr "" +msgstr "编辑注释" #: lms/templates/discussion/_underscore_templates.html msgid "Update comment" -msgstr "" +msgstr "更新注释" #: lms/templates/discussion/_underscore_templates.html msgid "" "%(comments_count)s %(span_sr_open)scomments (%(unread_comments_count)s " "unread comments)%(span_close)s" msgstr "" +"%(comments_count)s %(span_sr_open)s评论 (%(unread_comments_count)s " +"未读评论)%(span_close)s" #: lms/templates/discussion/_underscore_templates.html msgid "%(comments_count)s %(span_sr_open)scomments %(span_close)s" -msgstr "" +msgstr "%(comments_count)s %(span_sr_open)s评论 %(span_close)s" #: lms/templates/discussion/_underscore_templates.html msgid "%(votes_up_count)s%(span_sr_open)s votes %(span_close)s" -msgstr "" +msgstr "%(votes_up_count)s%(span_sr_open)s 投票 %(span_close)s" #: lms/templates/discussion/_underscore_templates.html msgid "DISCUSSION HOME:" -msgstr "" +msgstr "讨论空间:" #: lms/templates/discussion/_underscore_templates.html msgid "HOW TO USE EDX DISCUSSIONS" -msgstr "" +msgstr "如何使用EDX讨论工具" #: lms/templates/discussion/_underscore_templates.html msgid "Find discussions" -msgstr "" +msgstr "搜索讨论" #: lms/templates/discussion/_underscore_templates.html msgid "Focus in on specific topics" -msgstr "" +msgstr "关注特殊话题" #: lms/templates/discussion/_underscore_templates.html msgid "Search for specific posts " -msgstr "" +msgstr "搜索特殊话题" #: lms/templates/discussion/_underscore_templates.html msgid "Sort by date, vote, or comments" -msgstr "" +msgstr "按照日期,投票或评论排序" #: lms/templates/discussion/_underscore_templates.html msgid "Engage with posts" -msgstr "" +msgstr "发布预订" #: lms/templates/discussion/_underscore_templates.html msgid "Upvote posts and good responses" -msgstr "" +msgstr "更新发布与良性反馈" #: lms/templates/discussion/_underscore_templates.html msgid "Report Forum Misuse" -msgstr "" +msgstr "举报恶意灌水" #: lms/templates/discussion/_underscore_templates.html msgid "Follow posts for updates" -msgstr "" +msgstr "关注发布更新" #: lms/templates/discussion/_underscore_templates.html msgid "Receive updates" -msgstr "" +msgstr "接收更新" #: lms/templates/discussion/_underscore_templates.html msgid "Toggle Notifications Setting" @@ -7384,21 +7511,21 @@ msgstr "" msgid "" "Check this box to receive an email digest once a day notifying you about " "new, unread activity from posts you are following." -msgstr "" +msgstr "勾选此选项,每天一次接收文摘邮件来提醒你关注的最新活动消息发布。" #: lms/templates/discussion/_user_profile.html msgid ", " -msgstr "" +msgstr "," #: lms/templates/discussion/_user_profile.html msgid "%s discussion started" msgid_plural "%s discussions started" -msgstr[0] "" +msgstr[0] "%s 已开始的讨论" #: lms/templates/discussion/_user_profile.html msgid "%s comment" msgid_plural "%s comments" -msgstr[0] "" +msgstr[0] "%s 评论" #: lms/templates/discussion/index.html #: lms/templates/discussion/user_profile.html @@ -7422,12 +7549,12 @@ msgstr "用户资料" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache msgid "Expand discussion" -msgstr "" +msgstr "展开论坛话题" #: lms/templates/discussion/mustache/_inline_thread.mustache #: lms/templates/discussion/mustache/_inline_thread_cohorted.mustache msgid "Collapse discussion" -msgstr "" +msgstr "折叠论坛话题" #: lms/templates/discussion/mustache/_inline_thread_show.mustache msgid "This thread has been pinned by course staff." @@ -7436,21 +7563,21 @@ msgstr "" #: lms/templates/discussion/mustache/_pagination.mustache #: lms/templates/discussion/mustache/_pagination.mustache msgid "…" -msgstr "" +msgstr "…" #: lms/templates/discussion/mustache/_profile_thread.mustache msgid "View discussion" -msgstr "" +msgstr "查看讨论" #: lms/templates/discussion/mustache/_user_profile.mustache msgid "Active Threads" -msgstr "" +msgstr "活动的帖子" #: lms/templates/emails/activation_email.txt msgid "" "Thank you for signing up for {platform_name}! To activate your account, " "please copy and paste this address into your web browser's address bar:" -msgstr "" +msgstr "感谢您注册 {platform_name}!要激活您的账户,请复制并粘贴下面的网址到您的浏览器的地址栏:" #: lms/templates/emails/activation_email.txt #: lms/templates/emails/email_change.txt @@ -7459,6 +7586,8 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the about section of the {platform_name} Courses web site." msgstr "" +"如果你没发出过该请求,你不需要做任何事情;你将不会收到其他任何电子邮件。请不要回复此电子邮件;如果你需要帮助,请访问 {platform_name} " +"课程网站。" #: lms/templates/emails/activation_email.txt #: lms/templates/emails/email_change.txt @@ -7467,47 +7596,49 @@ msgid "" " any more email from us. Please do not reply to this e-mail; if you require " "assistance, check the help section of the {platform_name} web site." msgstr "" +"如果你没发出过该请求,你不需要做任何事情;你将不会收到其他任何电子邮件。请不要回复此电子邮件;如果你需要帮助,请访问 {platform_name} " +"网站。" #: lms/templates/emails/activation_email_subject.txt msgid "Your account for {platform_name}" -msgstr "" +msgstr "你的 {platform_name} 账户" #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "Dear {full_name}" -msgstr "" +msgstr "亲爱的{full_name}" #: lms/templates/emails/add_beta_tester_email_message.txt msgid "" "You have been invited to be a beta tester for {course_name} at {site_name} " "by a member of the course staff." -msgstr "" +msgstr "您已被课程教员邀请作为 Beta 测试员加入 {site_name} 上的 {course_name}。" #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_enrolledmessage.txt msgid "To start accessing course materials, please visit {course_url}" -msgstr "" +msgstr "要开始获取课程资料,请访问 {course_url}" #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {course_about_url} to join the course and begin the beta test." -msgstr "" +msgstr "访问 {course_about_url} 以加入该课程并开始 Beta 测试。" #: lms/templates/emails/add_beta_tester_email_message.txt msgid "Visit {site_name} to enroll in the course and begin the beta test." -msgstr "" +msgstr "访问 {site_name} 以注册该课程并开始 Beta 测试。" #: lms/templates/emails/add_beta_tester_email_message.txt #: lms/templates/emails/enroll_email_allowedmessage.txt #: lms/templates/emails/remove_beta_tester_email_message.txt #: lms/templates/emails/unenroll_email_allowedmessage.txt msgid "This email was automatically sent from {site_name} to {email_address}" -msgstr "" +msgstr "该邮件是由 {site_name} 向 {email_address} 自动发出的" #: lms/templates/emails/add_beta_tester_email_subject.txt msgid "You have been invited to a beta test for {course_name}" -msgstr "" +msgstr "你已被邀请成为 {course_name} 的一名 Beta 测试员。" #: lms/templates/emails/confirm_email_change.txt msgid "" @@ -7515,6 +7646,8 @@ msgid "" "{platform_name} from {old_email} to {new_email}. If you did not make this " "request, please contact us at" msgstr "" +"这封邮件是为了确认你和 {platform_name} 之间的电子邮件关联由 {old_email} 变更为 " +"{new_email}。如果你并没有发出该请求,请通过下列地址联系我们:" #: lms/templates/emails/confirm_email_change.txt msgid "" @@ -7522,12 +7655,14 @@ msgid "" "{platform_name} from {old_email} to {new_email}. If you did not make this " "request, please contact us immediately. Contact information is listed at:" msgstr "" +"这封邮件是为了确认你和 {platform_name} 之间的电子邮件关联由 {old_email} 变更为 " +"{new_email}。如果你并没有发出该请求,请立即联系我们。联系信息已在以下页面中列出:" #: lms/templates/emails/confirm_email_change.txt msgid "" "We keep a log of old e-mails, so if this request was unintentional, we can " "investigate." -msgstr "" +msgstr "我们保存着旧电子邮件信息的日志,所以如果该请求并非是您有意发出的,我们可以对此进行调查。" #: lms/templates/emails/email_change.txt msgid "" @@ -7535,29 +7670,31 @@ msgid "" "{platform_name} account from {old_email} to {new_email}. If this is correct," " please confirm your new e-mail address by visiting:" msgstr "" +"我们收到了您需要将 {platform_name} 账户的电子邮件关联由 {old_email} 变更为 {new_email} " +"的请求。如果该请求无误,请访问如下网页确认您的新电子邮件地址:" #: lms/templates/emails/email_change_subject.txt msgid "Request to change {platform_name} account e-mail" -msgstr "" +msgstr "变更 {platform_name} 账户电子邮件的请求" #: lms/templates/emails/enroll_email_allowedmessage.txt msgid "Dear student," -msgstr "" +msgstr "亲爱的同学," #: lms/templates/emails/enroll_email_allowedmessage.txt msgid "" "You have been invited to join {course_name} at {site_name} by a member of " "the course staff." -msgstr "" +msgstr "您已被课程教员邀请加入 {site_name} 上的 {course_name}。" #: lms/templates/emails/enroll_email_allowedmessage.txt msgid "To access the course visit {course_url} and login." -msgstr "" +msgstr "要进入该课程,请访问 {course_url} 并登录。" #: lms/templates/emails/enroll_email_allowedmessage.txt msgid "" "To access the course visit {course_about_url} and register for the course." -msgstr "" +msgstr "要进入该课程,请访问 {course_about_url} 并注册该课程。" #: lms/templates/emails/enroll_email_allowedmessage.txt msgid "" @@ -7565,92 +7702,94 @@ msgid "" "the registration form making sure to use {email_address} in the E-mail " "field." msgstr "" +"要完成你的注册,请访问 {registration_url} 填写注册表格,并确保将 {email_address} 填写在 E-mail 域中。" #: lms/templates/emails/enroll_email_allowedmessage.txt msgid "" "Once you have registered and activated your account, you will see " "{course_name} listed on your dashboard." -msgstr "" +msgstr "一旦你完成注册并激活了您的账号,你将在课程面板中见到 {course_name}。" #: lms/templates/emails/enroll_email_allowedmessage.txt msgid "" "Once you have registered and activated your account, visit " "{course_about_url} to join the course." -msgstr "" +msgstr "一旦你完成注册并激活了你的账号,访问 {course_about_url} 以加入该课程。" #: lms/templates/emails/enroll_email_allowedmessage.txt msgid "You can then enroll in {course_name}." -msgstr "" +msgstr "然后您可以注册课程{course_name}。" #: lms/templates/emails/enroll_email_allowedsubject.txt msgid "You have been invited to register for {course_name}" -msgstr "" +msgstr "你已被邀请注册 {course_name}" #: lms/templates/emails/enroll_email_enrolledmessage.txt msgid "" "You have been enrolled in {course_name} at {site_name} by a member of the " "course staff. The course should now appear on your {site_name} dashboard." msgstr "" +"您已被课程教员加入到了 {site_name} 上的 {course_name} 中。该课程应会立即出现在你的 {site_name} 课程面板中。" #: lms/templates/emails/enroll_email_enrolledmessage.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "This email was automatically sent from {site_name} to {full_name}" -msgstr "" +msgstr "这封邮件是由 {site_name} 向 {full_name} 自动发出的" #: lms/templates/emails/enroll_email_enrolledsubject.txt msgid "You have been enrolled in {course_name}" -msgstr "" +msgstr "你已经参加了 {course_name}" #: lms/templates/emails/order_confirmation_email.txt msgid "Hi {name}" -msgstr "" +msgstr "你好 {name}" #: lms/templates/emails/order_confirmation_email.txt msgid "" "Your payment was successful. You will see the charge below on your next " "credit or debit card statement." -msgstr "" +msgstr "支付成功。您可以在您的下一个信用卡/借记卡报表中看到该支付记录。" #: lms/templates/emails/order_confirmation_email.txt msgid "" "The charge will show up on your statement under the company name " "{merchant_name}." -msgstr "" +msgstr "该项收费将在{merchant_name}公司您的报表中显示。" #: lms/templates/emails/order_confirmation_email.txt msgid "" "If you have billing questions, please read the FAQ ({faq_url}) or contact " "{billing_email}." -msgstr "" +msgstr "如果您对账单有疑问,请阅读FAQ({faq_url})给{billing_email}发邮件。" #: lms/templates/emails/order_confirmation_email.txt msgid "If you have billing questions, please contact {billing_email}." -msgstr "" +msgstr "如果您对账单有疑问,请给{billing_email}发邮件。" #: lms/templates/emails/order_confirmation_email.txt msgid "-The {platform_name} Team" -msgstr "" +msgstr "- {platform_name}平台团队" #: lms/templates/emails/order_confirmation_email.txt msgid "Your order number is: {order_number}" -msgstr "" +msgstr "您的订单编号为:{order_number}" #: lms/templates/emails/order_confirmation_email.txt msgid "The items in your order are:" -msgstr "" +msgstr "您的订单细目为:" #: lms/templates/emails/order_confirmation_email.txt msgid "Quantity - Description - Price" -msgstr "" +msgstr "数量 - 说明 - 价格" #: lms/templates/emails/order_confirmation_email.txt msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" -msgstr "" +msgstr "信用卡/借记卡总支付额为: {currency_symbol}{total_cost}" #: lms/templates/emails/order_confirmation_email.txt #: lms/templates/shoppingcart/receipt.html msgid "#:" -msgstr "" +msgstr "#:" #: lms/templates/emails/reject_name_change.txt msgid "" @@ -7658,6 +7797,8 @@ msgid "" "name from {old_name} to {new_name}. If you need further assistance, please " "e-mail the tech support at" msgstr "" +"很抱歉,我们的课程教员没有批准您将自己的名字由 {old_name} 变更为 {new_name} " +"的申请。如果您需要更多的协助,请通过电子邮件联系我们的技术支持,地址是" #: lms/templates/emails/reject_name_change.txt msgid "" @@ -7665,6 +7806,8 @@ msgid "" "name from {old_name} to {new_name}. If you need further assistance, please " "e-mail the course staff at ta@edx.org." msgstr "" +"很抱歉,我们的课程教员没有批准你将自己的名字由 {old_name} 变更为 {new_name} " +"的申请。如果你需要更多的协助,请通过电子邮件联系我们的工作人员,地址是 ta@edx.org。" #: lms/templates/emails/remove_beta_tester_email_message.txt msgid "" @@ -7672,25 +7815,27 @@ msgid "" " member of the course staff. The course will remain on your dashboard, but " "you will no longer be part of the beta testing group." msgstr "" +"您在位于 {site_name} 上的课程 {course_name} 的 Beta " +"测试员身份已被课程教员剔除。该课程将仍然显示在您的面板中,但您将不再是 Beta 测试组的一员。" #: lms/templates/emails/remove_beta_tester_email_message.txt #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "Your other courses have not been affected." -msgstr "" +msgstr "您参加的其他课程不会受到影响。" #: lms/templates/emails/remove_beta_tester_email_subject.txt msgid "You have been removed from a beta test for {course_name}" -msgstr "" +msgstr "你已经被移出了课程 {course_name} 的 Beta 测试" #: lms/templates/emails/unenroll_email_allowedmessage.txt msgid "Dear Student," -msgstr "" +msgstr "亲爱的同学," #: lms/templates/emails/unenroll_email_allowedmessage.txt msgid "" "You have been un-enrolled from course {course_name} by a member of the " "course staff. Please disregard the invitation previously sent." -msgstr "" +msgstr "您已被课程教员从 {course_name}课程剔除。请忽略之前向您发出的所有请求。" #: lms/templates/emails/unenroll_email_enrolledmessage.txt msgid "" @@ -7698,14 +7843,15 @@ msgid "" " course staff. The course will no longer appear on your {site_name} " "dashboard." msgstr "" +"您已被课程教员从 {site_name} 上的 {course_name}课程中剔除。该课程将不会出现在您的 {site_name} 面板中。" #: lms/templates/emails/unenroll_email_subject.txt msgid "You have been un-enrolled from {course_name}" -msgstr "" +msgstr "你已经被移出了课程 {course_name}" #: lms/templates/instructor/staff_grading.html msgid "{course_number} Staff Grading" -msgstr "" +msgstr "{course_number} 教员评分" #: lms/templates/instructor/staff_grading.html msgid "" @@ -7717,6 +7863,7 @@ msgid "" " grading, though with diminishing returns. You can see the current accuracy " "of AI grading in the problem view." msgstr "" +"为了训练机器学习模型,下面这些问题需要人工进行评分。每个问题需要被单独进行评分,我们已经给出了需要评分的学生提交作业的最少数目。您可以尽可能对更多的作业评分——这会有助于提高机器学习的准确率。准确率的提高幅度随着评分作业的数目增多而递减。在评分时,您可以看到当前机器学习模型的准确率。" #: lms/templates/instructor/staff_grading.html msgid "Problem List" @@ -7747,15 +7894,15 @@ msgstr "学生回复" #: lms/templates/instructor/staff_grading.html #: lms/templates/peer_grading/peer_grading_problem.html msgid "Written Feedback" -msgstr "" +msgstr "书面反馈意见" #: lms/templates/instructor/staff_grading.html msgid "Feedback for student (optional)" -msgstr "" +msgstr "给学生的反馈(可选)" #: lms/templates/instructor/staff_grading.html msgid "Flag as inappropriate content for later review" -msgstr "" +msgstr "被标记为不恰当的内容,需要再次审查" #: lms/templates/instructor/staff_grading.html msgid "Skip" @@ -7763,19 +7910,19 @@ msgstr "跳过" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "Score Distribution" -msgstr "" +msgstr "成绩分布" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "" "The chart below displays the score distribution for each standard problem in" " your class, specified by the problem's url name." -msgstr "" +msgstr "下图显示的是您的班级中每个问答的成绩分布,问答由其链接地址指定。" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "" "Scores are shown without weighting applied, so if your problem contains 2 " "questions, it will display as having a total of 2 points." -msgstr "" +msgstr "所显示的成绩尚未加权,所以,如果您的问答包含2个问题,系统显示的总分为2分。" #: lms/templates/instructor/instructor_dashboard_2/analytics.html msgid "Loading problem list..." @@ -7787,45 +7934,45 @@ msgstr "性别分布" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Enrollment Information" -msgstr "" +msgstr "注册信息" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Total number of enrollees (instructors, staff members, and students)" -msgstr "" +msgstr "总参与人数(主讲教师、教员及学生)" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Basic Course Information" -msgstr "" +msgstr "基本课程信息" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Name:" -msgstr "" +msgstr "课程名称:" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Course Display Name:" -msgstr "" +msgstr "课程显示名称:" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Has the course started?" -msgstr "" +msgstr "课程开始了吗?" #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Yes" -msgstr "" +msgstr "是的" #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "No" -msgstr "" +msgstr "尚未" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Has the course ended?" -msgstr "" +msgstr "课程结束了吗?" #: lms/templates/instructor/instructor_dashboard_2/course_info.html msgid "Grade Cutoffs:" -msgstr "" +msgstr "分数线:" #: lms/templates/instructor/instructor_dashboard_2/course_info.html #: lms/templates/instructor/instructor_dashboard_2/data_download.html @@ -7841,21 +7988,21 @@ msgstr "课程警告" msgid "" "Click to generate a CSV file of all students enrolled in this course, along " "with profile information such as email address and username:" -msgstr "" +msgstr "点击来生成当前所有选课学生的CVS(逗号分隔值的文本)信息,包括邮件地址及用户名的信息:" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Download profile information as a CSV" -msgstr "" +msgstr "以CSV格式下载个人资料信息" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" "For smaller courses, click to list profile information for enrolled students" " directly on this page:" -msgstr "" +msgstr "对于学员规模较小的课程,可以直接在该页面点击查看选课学生的信息:" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "List enrolled students' profile information" -msgstr "" +msgstr "列出就读学生个人资料信息" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -7864,14 +8011,15 @@ msgid "" "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 "" +msgstr "评分标准设置" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Click to download a CSV of anonymized student IDs:" -msgstr "" +msgstr "点击下载匿名学生的CVS(逗号分隔值的文本)编号清单:" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Get Student Anonymized IDs CSV" @@ -7879,35 +8027,35 @@ msgstr "获取学生匿名ID CSV文件" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Reports" -msgstr "" +msgstr "报告" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" "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 "" +msgstr "点击来生成当前所有选课学生的CVS(逗号分隔值的文本)成绩报告。报表生成后,下表会出现指向它的链接。" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" "For large courses, generating this report may take several hours. Please be " "patient and do not click the button multiple times. Clicking the button " "multiple times will significantly slow the grade generation process." -msgstr "" +msgstr "对于大的课程,生成报告可能会花费数小时。请耐心等待并不要多次点击。多次点击按钮会极大的减慢生成速度。" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" "The report is generated in the background, meaning it is OK to navigate away" " from this page while your report is generating." -msgstr "" +msgstr "生成报告将在后台执行,您可以在点击OK后离开本页面。" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Generate Grade Report" -msgstr "" +msgstr "生成得分报告" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "Reports Available for Download" -msgstr "" +msgstr "报告已可供下载" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -7917,6 +8065,8 @@ msgid "" "reports are not deleted, so you will always be able to access previously " "generated reports from this page." msgstr "" +"每次点击 " +"生成成绩报告都会重新生成下面所列的成绩报告。本页会保留不同时间所产生的每个报告的链接。系统不会删除成绩报告,因此您可在该页访问先前生成的报告。" #: lms/templates/instructor/instructor_dashboard_2/data_download.html msgid "" @@ -7924,7 +8074,7 @@ msgid "" "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 "" +msgstr "下面所列的作答分布报告由后台程序定期自动生成。报告是累计式的,后台处理程序启动后提交的作答将在后续的报告中体现。报告每天生成7次。" #. Translators: a table of URL links to report files appears after this #. sentence. @@ -7932,11 +8082,11 @@ msgstr "" msgid "" "Note: To keep student data secure, you cannot save or email these " "links for direct access. Copies of links expire within 5 minutes." -msgstr "" +msgstr "注意:为了确保学生数据的安全,您不能保存或邮寄这些链接以便将来直接访问,因为这些链接5分钟之后会失效。" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Individual due date extensions" -msgstr "" +msgstr "延长单个人的结束时间" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" @@ -7944,55 +8094,55 @@ msgid "" "to individual students. Please note that the latest date is always taken; " "you cannot use this tool to make an assignment due earlier for a particular " "student." -msgstr "" +msgstr "现在,您可以将一些特殊的单元小节单独授权给个别的学生,但请注意在最后的日期之前,另外你不能使用这个工具来给一个特别的学生提前布置任务。" #: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Choose the graded unit:" -msgstr "" +msgstr "请选择等级单元" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Specify the extension due date and time (in UTC; please specify MM/DD/YYYY " "HH:MM)" -msgstr "" +msgstr "请输入新增的截止日期与时间(UTC,请用MM/DD/YYYY HH:MM格式)" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Change due date for student" -msgstr "" +msgstr "修改学生的结束时间" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Viewing granted extensions" -msgstr "" +msgstr "查看已授权的扩展" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Here you can see what extensions have been granted on particular units or " "for a particular student." -msgstr "" +msgstr "这里您可以查看已经授权给特别学生或者特殊单元的扩展应用" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" "Choose a graded unit and click the button to obtain a list of all students " "who have extensions for the given unit." -msgstr "" +msgstr "请选择一个分级单元,单击获得拥有当前单元相关扩展的学生列表" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List all students with due date extensions" -msgstr "" +msgstr "列出所有拥有到期扩展应用的学生" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Specify a specific student to see all of that student's extensions." -msgstr "" +msgstr "确定一个能够查看所有学生扩展内容的特殊学生" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "List date extensions for student" -msgstr "" +msgstr "列出学生扩展期限" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Resetting extensions" -msgstr "" +msgstr "重新设置扩展内容" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "" @@ -8003,7 +8153,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/extensions.html msgid "Reset due date for student" -msgstr "" +msgstr "重置学生的结束时间" #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "Back to Standard Dashboard" @@ -8011,24 +8161,24 @@ msgstr "返回标准控制面板" #: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html msgid "section_display_name" -msgstr "" +msgstr "章节_显示_姓名" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Enter email addresses and/or usernames separated by new lines or commas." -msgstr "" +msgstr "输入电子邮箱地址 与/或 用户名,以逗号分割或重启一行。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "You will not get notification for emails that bounce, so please double-check" " spelling." -msgstr "" +msgstr "对该类问题您不会受到提示邮件,因此请仔细检查,确保拼写无误。" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Email Addresses/Usernames" -msgstr "" +msgstr "电子邮箱地址/用户名" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html @@ -8039,7 +8189,7 @@ msgstr "自动注册" msgid "" "If this option is checked, users who have not yet registered for " "{platform_name} will be automatically enrolled." -msgstr "" +msgstr "如果 没有勾选该选项,未在{platform_name}平台注册的用户不会自动成为课程的学员。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" @@ -8047,22 +8197,23 @@ msgid "" " for {platform_name} will not be enrolled, but will be allowed to enroll " "once they make an account." msgstr "" +"如果 没有勾选该选项,未在{platform_name}平台注册的用户不能选课。当然,一旦用户注册后,他/她随时可以选课。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Checking this box has no effect if 'Unenroll' is selected." -msgstr "" +msgstr "在“取消注册”的情况下,本项选择将不会生效。" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Notify users by email" -msgstr "" +msgstr "通过邮件通知用户" #: lms/templates/instructor/instructor_dashboard_2/membership.html #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users will receive an email " "notification." -msgstr "" +msgstr "如果 勾选该选项,用户将受到一封通知邮件。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Enroll" @@ -8074,44 +8225,44 @@ msgstr "未注册" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Batch Beta Tester Addition" -msgstr "" +msgstr "批量添加Beta测试员" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Note: Users must have an activated {platform_name} account before they can " "be enrolled as a beta tester." -msgstr "" +msgstr "注意:用户必须首先激活 {platform_name} 账户方可注册为beta测试人员。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "If this option is checked, users who have not enrolled in your " "course will be automatically enrolled." -msgstr "" +msgstr "如果该选项被 设置,未注册您课程的用户将被自动注册。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Checking this box has no effect if 'Remove beta testers' is selected." -msgstr "" +msgstr "如果“删除Beta测试员”被选中,本设置项不生效。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add beta testers" -msgstr "" +msgstr "添加beta测试人员" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Remove beta testers" -msgstr "" +msgstr "删除beta测试人员" #. Translators: an "Administration List" is a list, such as Course Staff, that #. users can be added to. #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Administration List Management" -msgstr "" +msgstr "管理员列表管理" #. Translators: an "Administrator Group" is a group, such as Course Staff, #. that #. users can be added to. #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Select an Administrator Group:" -msgstr "" +msgstr "选择管理员组" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Getting available lists..." @@ -8122,11 +8273,11 @@ msgid "" "Staff cannot modify staff or beta tester lists. To modify these lists, " "contact your instructor and ask them to add you as an instructor for staff " "and beta lists, or a discussion admin for discussion management." -msgstr "" +msgstr "教员无法修改教员列表或beta测试人员列表。要修改这些列表,请联系您的主讲教师并要求将您加入主讲教师、beta测试人员或论坛管理员。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Course Staff" -msgstr "" +msgstr "授课教师" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" @@ -8135,24 +8286,25 @@ msgid "" "course data. Course staff are not automatically given access to Studio and " "will not be able to edit your course." msgstr "" +"课程教员可以帮助您分担部分课程管理工作。教员可以为学生选课或从该课程剔除学生,可以修改自己判定的成绩,可以看到所有课程数据。但课程教员不会自动获取访问工作室的权限,所以无法编辑您的课程。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add Staff" -msgstr "" +msgstr "添加教员" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Instructors" -msgstr "" +msgstr "主讲教师" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" "Instructors are the core administration of your course. Instructors can add " "and remove course staff, as well as administer discussion access." -msgstr "" +msgstr "主讲教师是管理您课程的核心人员,主讲教师可以添加、删除课程教员,也可以管理论坛的访问权限。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add Instructor" -msgstr "" +msgstr "添加主讲教师" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Beta Testers" @@ -8166,11 +8318,11 @@ msgstr "Beta测试者可以在其余学生之前看到课程内容。他们可 #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add Beta Tester" -msgstr "" +msgstr "添加beta测试人员" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Discussion Admins" -msgstr "" +msgstr "论坛管理员" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" @@ -8178,14 +8330,15 @@ msgid "" " re-open threads, endorse responses, and see posts from all cohorts. They " "CAN add/delete other moderators and their posts are marked as 'staff'." msgstr "" +"论坛管理员能够编辑或删除任何帖子,清除灌水标记,关闭与重新打开帖子,签名反馈,查看群内所有帖子。他们能够增加/删除其他版主,并且他们的帖子都将被标记为“教员”发布。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add Discussion Admin" -msgstr "" +msgstr "添加论坛管理员" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Discussion Moderators" -msgstr "" +msgstr "版主" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" @@ -8194,6 +8347,7 @@ msgid "" "They CANNOT add/delete other moderators and their posts are marked as " "'staff'." msgstr "" +"论坛版主可以编辑或删除任何帖子,去除灌水标记,关闭与重新打开帖子,签名反馈,查看群内所有帖子。他们不能增加/删除其他版主,并且版主的帖子被标记为“教员”帖。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add Moderator" @@ -8201,7 +8355,7 @@ msgstr "添加版主" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Discussion Community TAs" -msgstr "" +msgstr "论坛社区助教" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "" @@ -8210,74 +8364,75 @@ msgid "" "misuse flags, close and re-open threads, endorse responses, and see posts " "from all cohorts. Their posts are marked 'Community TA'." msgstr "" +"社区助教们是论坛上对你最有帮助的成员。他们能够编辑或删除任何帖子,清除灌水标记,关闭与重新打开帖子,签名反馈,查看群内所有帖子。他们的帖子都被标记为“社区助教”。" #: lms/templates/instructor/instructor_dashboard_2/membership.html msgid "Add Community TA" -msgstr "" +msgstr "添加社区助教" #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Reload Graphs" -msgstr "" +msgstr "重新载入图片" #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Count of Students Opened a Subsection" -msgstr "" +msgstr "统计开辟了子栏目的学生人数" #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Download Student Opened as a CSV" -msgstr "" +msgstr "以CSV格式下载学生开放数据" #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Download Student Grades as a CSV" -msgstr "" +msgstr "以CSV格式下载学生成绩数据" #: lms/templates/instructor/instructor_dashboard_2/metrics.html #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "This is a partial list, to view all students download as a csv." -msgstr "" +msgstr "这是一个部分列表,查看所有以CSV格式下载的学生信息" #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Grade" -msgstr "" +msgstr "成绩" #: lms/templates/instructor/instructor_dashboard_2/metrics.html msgid "Percent" -msgstr "" +msgstr "百分比" #: lms/templates/instructor/instructor_dashboard_2/send_email.html #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Send Email" -msgstr "" +msgstr "发送电子邮件" #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Message:" -msgstr "" +msgstr "消息:" #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "" "Please try not to email students more than once per week. Before sending " "your email, consider:" -msgstr "" +msgstr "请尽量不要一周之内给学生发送超过一封电子邮件。发送前请考虑:" #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "" "Email actions run in the background. The status for any active tasks - " "including email tasks - appears in a table below." -msgstr "" +msgstr "电子邮件操作在后台执行。任何活动任务的状态 - 包括电子邮件任务 - 都在下表中列出。" #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Email Task History" -msgstr "" +msgstr "邮件任务历史" #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "" "To see the status for all bulk email tasks ever submitted for this course, " "click on this button:" -msgstr "" +msgstr "若要查看本课程所有已提交批量邮件任务的状态,点击此按钮:" #: lms/templates/instructor/instructor_dashboard_2/send_email.html msgid "Show Email Task History" -msgstr "" +msgstr "显示邮件任务历史" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Student-specific grade inspection" @@ -8311,6 +8466,7 @@ msgid "" "not. (For example, if the location is {location1}, then just provide the " "{urlname1}. If the location is {location2}, then provide {urlname2}.)" msgstr "" +"你可以使用\"urlname\"如果这是一个问题,否则使用\"modulename/urlname\"。(如当前地址是{location1},你可以仅提供{urlname1}。如果当前地址是{location2},那么请提供{urlname2}。)" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Next, select an action to perform for the given user and problem:" @@ -8318,7 +8474,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Reset Student Attempts" -msgstr "" +msgstr "重置学生的尝试次数" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Rescore Student Submission" @@ -8327,11 +8483,11 @@ msgstr "对学生的提交记录重新评分" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" "You may also delete the entire state of a student for the specified problem:" -msgstr "" +msgstr "您也可以删除有特定问题学生的全部状态" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Delete Student State for Problem" -msgstr "" +msgstr "删除关于这个问题的学生状态" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "" @@ -8339,10 +8495,11 @@ msgid "" " the 'Pending Instructor Tasks' table. To see status for all tasks submitted" " for this problem and student, click on this button:" msgstr "" +"后台正在重新评分,活跃任务的状态会出现在 '等待主讲教师处理' 列表中。如果您要查看关于这个问题及学生的所有已提交任务的状态,点击这个按钮。" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Show Background Task History for Student" -msgstr "" +msgstr "显示学生的历史任务记录" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Then select an action" @@ -8361,33 +8518,33 @@ msgid "" "The above actions run in the background, and status for active tasks will " "appear in a table on the Course Info tab. To see status for all tasks " "submitted for this problem, click on this button" -msgstr "" +msgstr "以上操作在后台运行,而活跃任务状态会出现在课程信息标签页的表格中。要查看关于这个问题所有提交的任务状态,点击这个按钮。" #: lms/templates/instructor/instructor_dashboard_2/student_admin.html msgid "Show Background Task History for Problem" -msgstr "" +msgstr "查看相关问题的历史评判标准" #: lms/templates/licenses/serial_numbers.html msgid "None Available" -msgstr "" +msgstr "没有可用的" #: lms/templates/modal/_modal-settings-language.html msgid "Change Preferred Language" -msgstr "" +msgstr "更改偏好的语言" #: lms/templates/modal/_modal-settings-language.html msgid "Please choose your preferred language" -msgstr "" +msgstr "请选择您偏好的语言" #: lms/templates/modal/_modal-settings-language.html msgid "Save Language Settings" -msgstr "" +msgstr "保存语言设置" #: lms/templates/modal/_modal-settings-language.html msgid "" "Don't see your preferred language? {link_start}Volunteer to become a " "translator!{link_end}" -msgstr "" +msgstr "看不到你语言?{link_start}欢迎志愿成为一个翻译人员!{link_end}" #. Translators: this text gives status on if the modal interface (a menu or #. piece of UI that takes the full focus of the screen) is open or not @@ -8401,7 +8558,7 @@ msgstr "{course_number} 所有通知" #: lms/templates/open_ended_problems/combined_notifications.html msgid "Open Ended Console" -msgstr "" +msgstr "开放式控制台" #: lms/templates/open_ended_problems/combined_notifications.html msgid "Here are items that could potentially need your attention." @@ -8413,50 +8570,50 @@ msgstr "当前没有需要注意的事项" #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "{course_number} Flagged Open Ended Problems" -msgstr "" +msgstr "{course_number} 标记的开放性问题" #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Flagged Open Ended Problems" -msgstr "" +msgstr "标记的开放性问题" #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "" "Here are a list of open ended problems for this course that have been " "flagged by students as potentially inappropriate." -msgstr "" +msgstr "以下是这门课程的开放性问题列表,学生认为这些问题可能不恰当。" #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "No flagged problems exist." -msgstr "" +msgstr "没有标记的题目。" #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Unflag" -msgstr "" +msgstr "取消标记" #: lms/templates/open_ended_problems/open_ended_flagged_problems.html msgid "Ban" -msgstr "" +msgstr "禁止" #: lms/templates/open_ended_problems/open_ended_problems.html msgid "{course_number} Open Ended Problems" -msgstr "" +msgstr "{course_number} 开放性问题" #: lms/templates/open_ended_problems/open_ended_problems.html msgid "Open Ended Problems" -msgstr "" +msgstr "开放性问题" #: lms/templates/open_ended_problems/open_ended_problems.html msgid "Here is a list of open ended problems for this course." -msgstr "" +msgstr "以下是这个课程的一些开放性问题。" #: lms/templates/open_ended_problems/open_ended_problems.html msgid "You have not attempted any open ended problems yet." -msgstr "" +msgstr "您还没有尝试解决任何开放性问题。" #: lms/templates/open_ended_problems/open_ended_problems.html #: lms/templates/peer_grading/peer_grading.html msgid "Problem Name" -msgstr "" +msgstr "问题名称" #: lms/templates/open_ended_problems/open_ended_problems.html msgid "Grader Type" @@ -8474,6 +8631,14 @@ msgid "" "{end_ul_tag}\n" "{end_p_tag}\n" msgstr "" +"\n" +"{p_tag}你目前没有互评要做。若要参与互评:\n" +"{ul_tag}\n" +"{li_tag}你需要提交一个互评问题的作业。{end_li_tag}\n" +"{li_tag}教师需要提供一些打分样本以帮助你更好的理解打分原则。{end_li_tag}\n" +"{li_tag}必须有人提交待打分的作业。{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" #: lms/templates/peer_grading/peer_grading.html #: lms/templates/peer_grading/peer_grading_closed.html @@ -8496,11 +8661,11 @@ msgstr "已评分" #: lms/templates/peer_grading/peer_grading.html msgid "Available" -msgstr "" +msgstr "可评价" #: lms/templates/peer_grading/peer_grading.html msgid "Required" -msgstr "" +msgstr "必要的" #: lms/templates/peer_grading/peer_grading.html msgid "No due date" @@ -8528,7 +8693,7 @@ msgstr "请给出一些书面反馈。" msgid "" "This submission has explicit, offensive, or (I suspect) plagiarized content." " " -msgstr "" +msgstr "这个意见中可能包含不被允许的内容(攻击性、不健康的等)" #: lms/templates/peer_grading/peer_grading_problem.html msgid "How did I do?" @@ -8564,13 +8729,13 @@ msgstr "您尚未完成学习如何对此问题进行评分。" msgid "" "You will now be shown a series of instructor-scored essays, and will be " "asked to score them yourself." -msgstr "" +msgstr "一系列由导师打分的文章将展示给您,您将被要求自行给它们打分。" #: lms/templates/peer_grading/peer_grading_problem.html msgid "" "Once you can score the essays similarly to an instructor, you will be ready " "to grade your peers." -msgstr "" +msgstr "一旦您对这些文章的判分尺度接近主讲教师的水准,您就可以给同学评分了。" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Start learning to grade" @@ -8578,7 +8743,7 @@ msgstr "开始学习如何进行评分" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Are you sure that you want to flag this submission?" -msgstr "" +msgstr "您确定要标记此次提交吗?" #: lms/templates/peer_grading/peer_grading_problem.html msgid "" @@ -8587,6 +8752,7 @@ msgid "" "submission is not addressed to the question or is incorrect, you should give" " it a score of zero and accompanying feedback instead of flagging it." msgstr "" +"你要举报一个意见。只有你发现内容中包括了不被允许的内容时才需要举报(攻击性的、不健康的),如果只是意见不符合问题或者包含错误,你只需要给出一个低的分数,甚至是0分。" #: lms/templates/peer_grading/peer_grading_problem.html msgid "Remove Flag" @@ -8650,19 +8816,19 @@ msgstr "我们已经给您的邮箱发送邮件,您应该能够很快收到, #: lms/templates/shoppingcart/download_report.html msgid "Download CSV Data" -msgstr "" +msgstr "下载CSV数据" #: lms/templates/shoppingcart/download_report.html msgid "These reports are delimited by start and end dates." -msgstr "" +msgstr "这些报告按开始和结束日期分隔。" #: lms/templates/shoppingcart/download_report.html msgid "Start Date: " -msgstr "" +msgstr "开始日期:" #: lms/templates/shoppingcart/download_report.html msgid "End Date: " -msgstr "" +msgstr "结束日期:" #: lms/templates/shoppingcart/download_report.html msgid "" @@ -8670,14 +8836,15 @@ msgid "" "generating a report with 'Start Letter' A and 'End Letter' C will generate " "reports for all universities starting with A, B, and C." msgstr "" +"这些报告是根据大学名字的字母划分的,例如,生成一份开始字母为'A',以'C'结尾的报告,这会为所有以'A','B','C'开始的大学生成报告。" #: lms/templates/shoppingcart/download_report.html msgid "Start Letter: " -msgstr "" +msgstr "开始字母:" #: lms/templates/shoppingcart/download_report.html msgid "End Letter: " -msgstr "" +msgstr "结尾字母:" #: lms/templates/shoppingcart/error.html msgid "Payment Error" @@ -8698,17 +8865,17 @@ msgstr "您选择的项目:" #: lms/templates/shoppingcart/list.html #: lms/templates/shoppingcart/receipt.html msgid "Unit Price" -msgstr "" +msgstr "单价" #: lms/templates/shoppingcart/list.html #: lms/templates/shoppingcart/receipt.html msgid "Price" -msgstr "" +msgstr "价格" #: lms/templates/shoppingcart/list.html #: lms/templates/shoppingcart/receipt.html msgid "Total Amount" -msgstr "" +msgstr "总数" #: lms/templates/shoppingcart/list.html msgid "You have selected no items for purchase." @@ -8716,17 +8883,17 @@ msgstr "您没有选择任何要购买的项目。" #: lms/templates/shoppingcart/receipt.html msgid "Register for [Course Name] | Receipt (Order" -msgstr "" +msgstr "登记到 [课程名称] | 收到(定" #: lms/templates/shoppingcart/receipt.html msgid "Thank you for your Purchase!" -msgstr "" +msgstr "感谢惠顾!" #: lms/templates/shoppingcart/receipt.html msgid "" "Please print this receipt page for your records. You should also have " "received a receipt in your email." -msgstr "" +msgstr "请打印本收据以为凭证。您还将通过电子邮件收到一份收据。" #: lms/templates/shoppingcart/receipt.html msgid " () Electronic Receipt" @@ -8742,11 +8909,11 @@ msgstr "日期:" #: lms/templates/shoppingcart/receipt.html msgid "Items ordered:" -msgstr "" +msgstr "订单项目:" #: lms/templates/shoppingcart/receipt.html msgid "Qty" -msgstr "" +msgstr "数量" #: lms/templates/shoppingcart/receipt.html #: lms/templates/shoppingcart/verified_cert_receipt.html @@ -8764,11 +8931,11 @@ msgstr "付款方:" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Receipt (Order" -msgstr "" +msgstr "收到(定" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "You are now registered for: " -msgstr "" +msgstr "你现在注册:" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Registered as: " @@ -8781,7 +8948,7 @@ msgstr "" #: lms/templates/verify_student/show_requirements.html #: lms/templates/verify_student/verified.html msgid "Your Progress" -msgstr "" +msgstr "你的进度" #: lms/templates/shoppingcart/verified_cert_receipt.html #: lms/templates/shoppingcart/verified_cert_receipt.html @@ -8791,25 +8958,25 @@ msgstr "" #: lms/templates/verify_student/show_requirements.html #: lms/templates/verify_student/verified.html msgid "Current Step: " -msgstr "" +msgstr "当前步骤" #: lms/templates/shoppingcart/verified_cert_receipt.html #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/show_requirements.html msgid "Intro" -msgstr "" +msgstr "简介" #: lms/templates/shoppingcart/verified_cert_receipt.html #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/show_requirements.html msgid "Take Photo" -msgstr "" +msgstr "拍照" #: lms/templates/shoppingcart/verified_cert_receipt.html #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/show_requirements.html msgid "Take ID Photo" -msgstr "" +msgstr "带身份照片" #: lms/templates/shoppingcart/verified_cert_receipt.html #: lms/templates/verify_student/photo_reverification.html @@ -8818,14 +8985,14 @@ msgstr "" #: lms/templates/verify_student/show_requirements.html #: lms/templates/verify_student/verified.html msgid "Review" -msgstr "" +msgstr "回顾" #: lms/templates/shoppingcart/verified_cert_receipt.html #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/show_requirements.html #: lms/templates/verify_student/verified.html msgid "Make Payment" -msgstr "" +msgstr "付款" #: lms/templates/shoppingcart/verified_cert_receipt.html #: lms/templates/verify_student/photo_reverification.html @@ -8834,37 +9001,37 @@ msgstr "" #: lms/templates/verify_student/show_requirements.html #: lms/templates/verify_student/verified.html msgid "Confirmation" -msgstr "" +msgstr "确认" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Congratulations! You are now verified on " -msgstr "" +msgstr "恭喜你!你现在已经验证通过" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "" "You are now registered as a verified student! Your registration details are " "below." -msgstr "" +msgstr "你现在已经注册成为验证过的学员!你的注册细节见下。" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "You are registered for:" -msgstr "" +msgstr "你注册到:" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "A list of courses you have just registered for as a verified student" -msgstr "" +msgstr "你作为验证学员注册到的课程列表" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Options" -msgstr "" +msgstr "选项" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Starts: {start_date}" -msgstr "" +msgstr "自: {start_date}" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Go to Course" -msgstr "" +msgstr "进入课程" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Go to your Dashboard" @@ -8872,7 +9039,7 @@ msgstr "" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Verified Status" -msgstr "" +msgstr "验证状态" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "" @@ -8880,46 +9047,46 @@ msgid "" "there is a problem with any of the items, we will contact you to resubmit. " "You can now register for any of the verified certificate courses this " "semester without having to re-verify." -msgstr "" +msgstr "我们已经收到你的身份证明材料来验证你的身份。如果存在问题,我们将联系你再次提交。如果你要注册其他证书课程,相同的材料不需要再次提交。" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "" "The professor will ask you to periodically submit a new photo to verify your" " work during the course (usually at exam times)." -msgstr "" +msgstr "教师会不定期的要求你提交新的照片以验证是你在进行课程学习(通常在进行考试测试时)。" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Payment Details" -msgstr "" +msgstr "支付说明" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "" "Please print this page for your records; it serves as your receipt. You will" " also receive an email with the same information." -msgstr "" +msgstr "请打印此页作为您自己的纪录,这是你的收据。您也会收到一个有相同信息的电子邮件。" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Order No." -msgstr "" +msgstr "订单号:" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Total" -msgstr "" +msgstr "总计" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "this" -msgstr "" +msgstr "这个" #: lms/templates/shoppingcart/verified_cert_receipt.html msgid "Billed To" -msgstr "" +msgstr "付给:" #: lms/templates/static_templates/404.html msgid "" "The page that you were looking for was not found. Go back to the " "{link_start}homepage{link_end} or let us know about any pages that may have " "been moved at {email}." -msgstr "" +msgstr "未能找到您查找的页面。返回到{link_start}主页{link_end}或发电子邮件至{email}告诉我们被移动的页面。" #: lms/templates/static_templates/about.html #: lms/templates/static_templates/contact.html @@ -8935,11 +9102,11 @@ msgstr "" msgid "" "This page left intentionally blank. It is not used by edx.org but is left " "here for possible use by installations of Open edX." -msgstr "" +msgstr "此页面特地留空。edx.org未使用此页面,但是可能留作Open edX安装时使用。" #: lms/templates/static_templates/embargo.html msgid "This Course Unavailable In Your Country" -msgstr "" +msgstr "您的国家不允许学习这门课程" #: lms/templates/static_templates/embargo.html msgid "" @@ -8950,51 +9117,52 @@ msgid "" "free to browse our catalogue to find other courses you may be interested in " "taking." msgstr "" +"我们的系统检测到访问edX课程的源IP地址来自美国经贸制裁的国家。非常不幸,此时edX必须遵守国家的出口控制法律,因此我们无法允许您访问某些特定的课程。这不是您的错,请放心浏览我们的课程目录以便寻找其它您可能感兴趣的课程。" #: lms/templates/static_templates/honor.html #: lms/templates/static_templates/honor.html msgid "Honor Code" -msgstr "" +msgstr "诚信条例" #: lms/templates/static_templates/media-kit.html #: lms/templates/static_templates/media-kit.html msgid "Media Kit" -msgstr "" +msgstr "多媒体工具箱" #: lms/templates/static_templates/press.html #: lms/templates/static_templates/press.html msgid "In the Press" -msgstr "" +msgstr "新闻" #: lms/templates/static_templates/server-down.html msgid "Currently the {platform_name} servers are down" -msgstr "" +msgstr "目前{platform_name} 平台的部分服务器停摆" #: lms/templates/static_templates/server-down.html #: lms/templates/static_templates/server-overloaded.html msgid "" "Our staff is currently working to get the site back up as soon as possible. " "Please email us at {tech_support_email} to report any problems or downtime." -msgstr "" +msgstr "我们的教员正在努力尽快恢复网站。要报告您发现的任何问题或遇到网站停摆,请向{tech_support_email}发送邮件" #: lms/templates/static_templates/server-error.html msgid "There has been a 500 error on the {platform_name} servers" -msgstr "" +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 "" +msgstr "请等待几秒钟后再刷新该页面。如果问题照旧,请向{email}发邮件。" #: lms/templates/static_templates/server-overloaded.html msgid "Currently the {platform_name} servers are overloaded" -msgstr "" +msgstr " 目前{platform_name}平台的服务器已经超负荷" #: lms/templates/university_profile/edge.html #: lms/templates/university_profile/edge.html msgid "edX edge" -msgstr "" +msgstr "edX edge" #: lms/templates/university_profile/edge.html msgid "Log in to your courses" @@ -9010,12 +9178,12 @@ msgstr "加入领先大学的免费在线课程。" #: lms/templates/verify_student/_modal_editname.html msgid "Edit Your Name" -msgstr "" +msgstr "编辑你的名字" #: lms/templates/verify_student/_modal_editname.html #: lms/templates/verify_student/face_upload.html msgid "The following error occurred while editing your name:" -msgstr "" +msgstr "在编辑你的名字时出现下面的错误:" #: lms/templates/verify_student/_modal_editname.html msgid "" @@ -9025,22 +9193,22 @@ msgstr "为了确保 {platform}证书的可信度,所有姓名变更都将被 #: lms/templates/verify_student/_modal_editname.html msgid "Change my name" -msgstr "" +msgstr "修改我的名字" #: lms/templates/verify_student/_reverification_support.html msgid "Why Do I Need to Re-Verify?" -msgstr "" +msgstr "我为什么需要复查?" #: lms/templates/verify_student/_reverification_support.html msgid "" "At key points in a course, the professor will ask you to re-verify your " "identity. We will send the new photo to be matched up with the photo of the " "original ID you submitted when you signed up for the course." -msgstr "" +msgstr "在课程的关键点上,教授将会要求重新验证你的身份。我们会发送最新的照片与你注册课程时提交的原始身份照片相匹配。" #: lms/templates/verify_student/_reverification_support.html msgid "Having Technical Trouble?" -msgstr "" +msgstr "有技术问题?" #: lms/templates/verify_student/_reverification_support.html msgid "" @@ -9049,18 +9217,20 @@ msgid "" "cam is plugged in, turned on, and allowed to function in your web browser " "(commonly adjustable in your browser settings)
" msgstr "" +"请确认你的浏览器已经被更新到{a_start}最新可用版本{a_end}. 另外,请确认 " +"摄像头已经连接且打开,并允许浏览器使用 (通常在你浏览器设置中进行调整)." #: lms/templates/verify_student/_reverification_support.html #: lms/templates/verify_student/_verification_support.html msgid "Have questions?" -msgstr "" +msgstr "有疑问?" #: lms/templates/verify_student/_reverification_support.html #: lms/templates/verify_student/_verification_support.html msgid "" "Please read {a_start}our FAQs to view common questions about our " "certificates{a_end}." -msgstr "" +msgstr "请阅读 {a_start}我们FAQs中关于认证的问题与评论{a_end}." #: lms/templates/verify_student/_verification_header.html msgid "You are upgrading your registration for" @@ -9068,44 +9238,44 @@ msgstr "" #: lms/templates/verify_student/_verification_header.html msgid "You are re-verifying for" -msgstr "" +msgstr "您正在重新审核" #: lms/templates/verify_student/_verification_header.html msgid "You are registering for" -msgstr "" +msgstr "你注册到" #: lms/templates/verify_student/_verification_header.html msgid "Upgrading to:" -msgstr "" +msgstr "升级成:" #: lms/templates/verify_student/_verification_header.html msgid "Re-verifying for:" -msgstr "" +msgstr "重审中" #: lms/templates/verify_student/_verification_header.html msgid "Registering as: " -msgstr "" +msgstr "注册为:" #: lms/templates/verify_student/_verification_support.html #: lms/templates/verify_student/_verification_support.html msgid "Change your mind?" -msgstr "" +msgstr "改变你的想法?" #: lms/templates/verify_student/_verification_support.html #: lms/templates/verify_student/photo_verification.html msgid "You can always continue to audit the course without verifying." -msgstr "" +msgstr "你可以一直旁听课程无须认证。" #: lms/templates/verify_student/_verification_support.html #: lms/templates/verify_student/photo_verification.html msgid "" "You can always {a_start} audit the course for free {a_end} without " "verifying." -msgstr "" +msgstr "你可以一直 {a_start}免费访问课程 {a_end} 而不进行认证。" #: lms/templates/verify_student/_verification_support.html msgid "Technical Requirements" -msgstr "" +msgstr "技术要求" #: lms/templates/verify_student/_verification_support.html msgid "" @@ -9114,33 +9284,35 @@ msgid "" "cam is plugged in, turned on, and allowed to function in your web browser " "(commonly adjustable in your browser settings).
" msgstr "" +"请确认你的浏览器已经被更新到{a_start}最新可用版本{a_end}. 另外,请确认 " +"摄像头已经连接且打开,并允许浏览器使用 (通常在你浏览器设置中进行调整)." #: lms/templates/verify_student/face_upload.html msgid "Edit Your Full Name" -msgstr "" +msgstr "编辑你的全名" #: lms/templates/verify_student/midcourse_photo_reverification.html msgid "Re-Verify" -msgstr "" +msgstr "重审" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "No Webcam Detected" -msgstr "" +msgstr "没有检测到摄像头" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "" "You don't seem to have a webcam connected. Double-check that your webcam is " "connected and working to continue." -msgstr "" +msgstr "没有检测到有效的摄像头。重复确认你的摄像头已经连接而且正在工作然后继续。" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "No Flash Detected" -msgstr "" +msgstr "没有Flash支持" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9148,28 +9320,28 @@ msgstr "" msgid "" "You don't seem to have Flash installed. {a_start} Get Flash {a_end} to " "continue your registration." -msgstr "" +msgstr "你没有安装Flash,请{a_start}获取Flash {a_end}以继续你的注册。" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "Error submitting your images" -msgstr "" +msgstr "提交你的图像时发生错误" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "Oops! Something went wrong. Please confirm your details and try again." -msgstr "" +msgstr "哎呀!有错误了!请确认你的信息然后再尝试。" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html msgid "Re-Take Your Photo" -msgstr "" +msgstr "重拍你的照片" #: lms/templates/verify_student/midcourse_photo_reverification.html msgid "" "Use your webcam to take a picture of your face so we can match it with your " "original verification." -msgstr "" +msgstr "使用您的摄像头拍摄一张您的面部照片,以便于我们与您初始验证时的照片相对照。" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9179,7 +9351,7 @@ msgstr "" msgid "" "Don't see your picture? Make sure to allow your browser to use your camera " "when it asks for permission." -msgstr "" +msgstr "没有看到你的照片?确认在获取授权时允许你的浏览器使用摄像头。" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9187,7 +9359,7 @@ msgstr "" #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/photo_verification.html msgid "Retake" -msgstr "" +msgstr "再次拍摄" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9195,7 +9367,7 @@ msgstr "" #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/photo_verification.html msgid "Take photo" -msgstr "" +msgstr "拍摄" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9203,7 +9375,7 @@ msgstr "" #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/photo_verification.html msgid "Looks good" -msgstr "" +msgstr "看起来很好" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9211,19 +9383,19 @@ msgstr "" #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/photo_verification.html msgid "Tips on taking a successful photo" -msgstr "" +msgstr "成功拍摄的小技巧" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Make sure your face is well-lit" -msgstr "" +msgstr "确认你的面部被照亮" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Be sure your entire face is inside the frame" -msgstr "" +msgstr "确认你的面部进入有效区域" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9237,13 +9409,13 @@ msgstr "" #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/photo_verification.html msgid "Once in position, use the camera button" -msgstr "" +msgstr "第一次到这里,请点击摄像按钮" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "to capture your picture" -msgstr "" +msgstr "获取你的图片" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9251,7 +9423,7 @@ msgstr "" #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/photo_verification.html msgid "Use the checkmark button" -msgstr "" +msgstr "使用对号按钮" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9259,7 +9431,7 @@ msgstr "" #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/photo_verification.html msgid "once you are happy with the photo" -msgstr "" +msgstr "一旦满意你的照片" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9267,13 +9439,13 @@ msgstr "" #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/photo_verification.html msgid "Common Questions" -msgstr "" +msgstr "提交问题" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Why do you need my photo?" -msgstr "" +msgstr "为什么需要我的照片?" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9281,7 +9453,7 @@ msgstr "" msgid "" "As part of the verification process, we need your photo to confirm that you " "are you." -msgstr "" +msgstr "作为认证程序的一部分,我们需要你的照片来确认你就是你。" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html @@ -9289,32 +9461,32 @@ msgstr "" #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/photo_verification.html msgid "What do you do with this picture?" -msgstr "" +msgstr "照片会用在什么地方?" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "We only use it to verify your identity. It is not displayed anywhere." -msgstr "" +msgstr "只用于验证你的身份信息,不会在其他地方显示。" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Check Your Name" -msgstr "" +msgstr "检查名字" #: lms/templates/verify_student/midcourse_photo_reverification.html msgid "" "Make sure your full name on your edX account ({full_name}) matches the ID " "you originally submitted. We will also use this as the name on your " "certificate." -msgstr "" +msgstr "确认你edX账户中的全面 ({full_name})匹配你原始提交的ID。我们也将把这个名字用在你的证书中。" #: lms/templates/verify_student/midcourse_photo_reverification.html #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Edit your name" -msgstr "" +msgstr "编辑你的名字" #: lms/templates/verify_student/midcourse_photo_reverification.html msgid "" @@ -9322,59 +9494,60 @@ msgid "" "finish your re-verification and return to your course. Note: You " "will not have another chance to re-verify." msgstr "" +"只要你验证你的照片合格,你的名字正确,你就能完成你的二次验证并且返回你的课程。注意: 你只有当前一次验证机会。" #: lms/templates/verify_student/midcourse_photo_reverification.html msgid "Yes! You can confirm my identity with this information." -msgstr "" +msgstr "是的!您可以通过这些信息确定我的身份。" #: lms/templates/verify_student/midcourse_photo_reverification.html msgid "Submit photos & re-verify" -msgstr "" +msgstr "提交照片与amp;重新验证" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/reverification_confirmation.html msgid "Re-Verification Submission Confirmation" -msgstr "" +msgstr "重新验证提交的确认" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/reverification_confirmation.html msgid "Your Credentials Have Been Updated" -msgstr "" +msgstr "你的凭据已被更新" #: lms/templates/verify_student/midcourse_reverification_confirmation.html msgid "" "We have received your re-verification details and submitted them for review." " Your dashboard will show the notification status once the review is " "complete." -msgstr "" +msgstr "我们已经接收到您的重新验证细节信息并且已经提交重新审核。一旦重审结束,你的控制面板将会收到状态提醒。" #: lms/templates/verify_student/midcourse_reverification_confirmation.html msgid "" "Please note: The professor may ask you to re-verify again at other key " "points in the course." -msgstr "" +msgstr "请注意:教授可能会在其他一些课程关键点上要求你再次验证。" #: lms/templates/verify_student/midcourse_reverification_confirmation.html msgid "Complete your other re-verifications" -msgstr "" +msgstr "请完成您的其他二次验证。" #: lms/templates/verify_student/midcourse_reverification_confirmation.html #: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Return to where you left off" -msgstr "" +msgstr "返回之前页面" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Reverification Status" -msgstr "" +msgstr "重新验证状态" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "You are in the ID Verified track" -msgstr "" +msgstr "你正在身份验证进程中" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "You currently need to re-verify for the following courses:" -msgstr "" +msgstr "你现在需要重现注册下面的这些课程:" #: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html @@ -9382,31 +9555,31 @@ msgstr "" #: lms/templates/verify_student/midcourse_reverify_dash.html #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Re-verify by {date}" -msgstr "" +msgstr "注册于{date}" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "You currently need to re-verify for the following course:" -msgstr "" +msgstr "您现在需要重新注册下面的这些课程:" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "You have no re-verifications at present." -msgstr "" +msgstr "您当前没有任何需要验证信息。" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "The status of your submitted re-verifications:" -msgstr "" +msgstr "您已提交的重新验证状态:" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Failed" -msgstr "" +msgstr "不行,这个跪了" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Don't want to re-verify right now?" -msgstr "" +msgstr "现在不想重新验证?" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "Why do I need to re-verify?" -msgstr "" +msgstr "我为什么需要复查?" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "" @@ -9417,10 +9590,11 @@ msgid "" "to re-verify multiple times, once for every important point in each course " "you are taking as a verified student." msgstr "" +"在课程的关键点上,教授将会要求重新验证你的身份,通过上传一张你新的脸部照片。我们会发送最新的照片与你注册课程时提交的原始身份照片相匹配。如果你正在上好几门课,你可能需要重新注册多次,每次分别针对每个你作为一名验证完毕的学生而正在修习的重要的课程点" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "What will I need to re-verify?" -msgstr "" +msgstr "我需要什么材料来通过复查?" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "" @@ -9429,17 +9603,19 @@ msgid "" "your webcam
. The process is quick and you will be brought back to where " "you left off so you can keep on learning." msgstr "" +"由于你刚刚确认当前的学习者依然是此前注册的学习则者。你需要重新做一次认证 " +"使用摄像头拍摄并提交你的脸部照片。处理过程非常迅速,随后你就可以回到继续学习的进程中。" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "" "If you changed your name during the semester and it no longer matches the " "original ID you submitted, you will need to re-edit your name to match as " "well." -msgstr "" +msgstr "如果你在学期中变更你的名字导致其与你原始提交的ID不匹配,你需要重新编辑你的名字以确保他们是匹配的。" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "What if I have trouble with my re-verification?" -msgstr "" +msgstr "我重新认证的过程可能遇到什么麻烦?" #: lms/templates/verify_student/midcourse_reverify_dash.html msgid "" @@ -9447,38 +9623,39 @@ msgid "" " be able to correct a failed verification. If you think there was " "an error in the review, please contact us at {email}" msgstr "" +"由于重新认证的开放时间很短,你可能无法修正失败失败。如果你认为审核可能存在问题,请通过{email}联系我们" #: lms/templates/verify_student/photo_reverification.html msgid "Re-Verification" -msgstr "" +msgstr "重新验证" #: lms/templates/verify_student/photo_reverification.html msgid "Please Resubmit Your Verification Information" -msgstr "" +msgstr "请重新提交你的认证信息" #: lms/templates/verify_student/photo_reverification.html msgid "" "There was an error with your previous verification. In order proceed in the " "verified certificate of achievement track of your current courses, please " "complete the following steps." -msgstr "" +msgstr "您此前的身份验证存在错误。为了体现您的学习成就,只要符合要求,我们可以颁发身份验证确凿的结业证书,请完成以下步骤。" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/reverification_confirmation.html msgid "Re-Take Photo" -msgstr "" +msgstr "重新拍照" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/reverification_confirmation.html msgid "Re-Take ID Photo" -msgstr "" +msgstr "重拍身份照片" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "" "Use your webcam to take a picture of your face so we can match it with the " "picture on your ID." -msgstr "" +msgstr "使用你的摄像头拍摄一个你面部照片来匹配你的ID。" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html @@ -9487,64 +9664,64 @@ msgstr "" #: lms/templates/verify_student/photo_reverification.html msgid "Go to Step 2: Re-Take ID Photo" -msgstr "" +msgstr "转到步骤2:拍摄ID照片" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Show Us Your ID" -msgstr "" +msgstr "显示你的ID:" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "" "Use your webcam to take a picture of your ID so we can match it with your " "photo and the name on your account." -msgstr "" +msgstr "使用摄像头拍摄一张关于你ID的照片,我们将以此在你的账户中匹配照片、名字等。" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Make sure your ID is well-lit" -msgstr "" +msgstr "确认你的ID被照亮" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "" "Acceptable IDs include drivers licenses, passports, or other goverment-" "issued IDs that include your name and photo" -msgstr "" +msgstr "可接受的IDs证书包括驾照、护照或者其他由政府组织下发的包含了名字与照片的身份材料(例如身份证)。" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Check that there isn't any glare" -msgstr "" +msgstr "检查没有任何炫光" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Ensure that you can see your photo and read your name" -msgstr "" +msgstr "确保你可以看到你的照片读出你的名字" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "" "Try to keep your fingers at the edge to avoid covering important information" -msgstr "" +msgstr "尽量让你的手指在边缘,以防止遮挡重要信息" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "to capture your ID" -msgstr "" +msgstr "获取你的ID" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Why do you need a photo of my ID?" -msgstr "" +msgstr "为什么你需要我的ID照片?" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "" "We need to match your ID with your photo and name to confirm that you are " "you." -msgstr "" +msgstr "我们需要验证你的身份信息,包括你的头像、名字等以证明你就是你。" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html @@ -9552,144 +9729,144 @@ msgid "" "We encrypt it and send it to our secure authorization service for review. We" " use the highest levels of security and do not save the photo or information" " anywhere once the match has been completed." -msgstr "" +msgstr "我们通过安全加密来传输这些信息。我们使用了最高安全级别的技术来保存这些照片和信息,并且只用作身份验证。" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Once you verify your ID photo looks good, you can move on to step 3." -msgstr "" +msgstr "一旦你认可了你的ID照片效果,就转到第3步。" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Go to Step 3: Review Your Info" -msgstr "" +msgstr "转到步骤3:复查你的信息" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Verify Your Submission" -msgstr "" +msgstr "验证你的提交" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "" "Make sure we can verify your identity with the photos and information below." -msgstr "" +msgstr "确认我们通过这些照片和信息能够验证你的身份" #: lms/templates/verify_student/photo_reverification.html msgid "Review the Photos You've Re-Taken" -msgstr "" +msgstr "复查你重拍的照片" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "" "Please review the photos and verify that they meet the requirements listed " "below." -msgstr "" +msgstr "请复查照片并且符合下面必需要求" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/photo_verification.html msgid "The photo above needs to meet the following requirements:" -msgstr "" +msgstr "这些照片符合以下需求:" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Be well lit" -msgstr "" +msgstr "足够明亮" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Show your whole face" -msgstr "" +msgstr "清晰显示你整个脸部" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/photo_verification.html msgid "The photo on your ID must match the photo of your face" -msgstr "" +msgstr "照片中的面部与你身份材料中的面部能够匹配" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Be readable (not too far away, no glare)" -msgstr "" +msgstr "可读(不大也不小)" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "The name on your ID must match the name on your account below" -msgstr "" +msgstr "ID材料中的名字匹配你账户" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Photos don't meet the requirements?" -msgstr "" +msgstr "照片不匹配要求?" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Retake Your Photos" -msgstr "" +msgstr "再次拍摄照片" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "" "Make sure your full name on your edX account ({full_name}) matches your ID. " "We will also use this as the name on your certificate." -msgstr "" +msgstr "确认你edX账户中的名字 ({full_name})匹配你的ID材料。我们也将把这个名字用在你的证书中。" #: lms/templates/verify_student/photo_reverification.html msgid "" "Once you verify your details match the requirements, you can move onto to " "confirm your re-verification submisssion." -msgstr "" +msgstr "一旦你确认你的细节符合要求,你可以继续确认你的重新验证提交过程。" #: lms/templates/verify_student/photo_reverification.html #: lms/templates/verify_student/photo_verification.html msgid "Yes! My details all match." -msgstr "" +msgstr "确定!完全符合。" #: lms/templates/verify_student/photo_verification.html msgid "Upgrade Your Registration for {} | Verification" -msgstr "" +msgstr "更新您的注册到 {} | 认证" #: lms/templates/verify_student/photo_verification.html #: lms/templates/verify_student/verified.html msgid "Register for {} | Verification" -msgstr "" +msgstr "注册到 {} | 认证" #: lms/templates/verify_student/photo_verification.html msgid "" "You don't seem to have a webcam connected. Double-check that your webcam is " "connected and working to continue registering, or select to {a_start} audit " "the course for free {a_end} without verifying." -msgstr "" +msgstr "没有检测到有效摄像头。重复确认你的摄像头已经连接而且正在工作,或者选择 {a_start} 免费观看课程 {a_end}而 不认证." #: lms/templates/verify_student/photo_verification.html msgid "Error processing your order" -msgstr "" +msgstr "处理你的订单时出现错误" #: lms/templates/verify_student/photo_verification.html msgid "" "Oops! Something went wrong. Please confirm your details again and click the " "button to move on to payment. If you are still having trouble, please try " "again later." -msgstr "" +msgstr "哎呀!发生错误了!请确认你的信息并再次点击按钮进行支付。如果仍有问题,请稍后再试。" #: lms/templates/verify_student/photo_verification.html msgid "Take Your Photo" -msgstr "" +msgstr "对你拍照" #: lms/templates/verify_student/photo_verification.html msgid "What if my camera isn't working?" -msgstr "" +msgstr "为什么我的摄像头不工作?" #: lms/templates/verify_student/photo_verification.html msgid "Go to Step 2: Take ID Photo" -msgstr "" +msgstr "转到步骤2:拍摄ID照片" #: lms/templates/verify_student/photo_verification.html msgid "Review the Photos You've Taken" -msgstr "" +msgstr "复查这些我们将采用的照片" #: lms/templates/verify_student/photo_verification.html msgid "Check Your Contribution Level" @@ -9703,13 +9880,13 @@ msgstr "" msgid "" "Once you verify your details match the requirements, you can move on to step" " 4, payment on our secure server." -msgstr "" +msgstr "一旦你验证你的细节符合要求,请转到步骤4,在我们的安全服务中完成支付。" #: lms/templates/verify_student/prompt_midcourse_reverify.html msgid "" "To continue in the ID Verified track in {course}, you need to re-verify your" " identity by {date}. Go to URL." -msgstr "" +msgstr "要在{course}课程继续身份认证的学习,你需要在{date}之前重新认证你的身份。访问URL。" #: lms/templates/verify_student/reverification_confirmation.html msgid "" @@ -9717,96 +9894,96 @@ msgid "" "your identity shortly. You should receive an update to your veriication " "status within 1-2 days. In the meantime, you still have access to all of " "your course content." -msgstr "" +msgstr "我们收到了你重新提交的信息,并将稍后进行审查以核实你的身份。你将会在1-2日内收到验证状态的更新。期间你仍可以访问课程的全部内容。" #: lms/templates/verify_student/reverification_confirmation.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Return to Your Dashboard" -msgstr "" +msgstr "回到你的主页面" #: lms/templates/verify_student/reverification_window_expired.html #: lms/templates/verify_student/reverification_window_expired.html msgid "Re-Verification Failed" -msgstr "" +msgstr "重新验证失败" #: lms/templates/verify_student/reverification_window_expired.html msgid "" "Your re-verification was submitted after the re-verification deadline, and " "you can no longer be re-verified." -msgstr "" +msgstr "您的重新验证在二次验证截止时间之后被提交,您不能被再次验证。" #: lms/templates/verify_student/reverification_window_expired.html msgid "Please contact support if you believe this message to be in error." -msgstr "" +msgstr "如果您相信当前消息存在错误,请联系技术支持。" #: lms/templates/verify_student/show_requirements.html msgid "Upgrade Your Registration for {}" -msgstr "" +msgstr "更新您的登记 {}" #: lms/templates/verify_student/show_requirements.html msgid "Register for {}" -msgstr "" +msgstr "注册到{}" #: lms/templates/verify_student/show_requirements.html msgid "You need to activate your edX account before proceeding" -msgstr "" +msgstr "你需要激活你的edX账户。" #: lms/templates/verify_student/show_requirements.html msgid "" "Please check your email for further instructions on activating your new " "account." -msgstr "" +msgstr "请检查你的电子邮件,为确保能激活您的新帐户。" #: lms/templates/verify_student/show_requirements.html msgid "What You Will Need to Upgrade" -msgstr "" +msgstr "你的升级所需" #: lms/templates/verify_student/show_requirements.html msgid "" "There are three things you will need to upgrade to being an ID verified " "student:" -msgstr "" +msgstr "要升级成为注册的ID认证学员,需要处理好三件事:" #: lms/templates/verify_student/show_requirements.html msgid "What You Will Need to Register" -msgstr "" +msgstr "为什么我需要注册" #: lms/templates/verify_student/show_requirements.html msgid "" "There are three things you will need to register as an ID verified student:" -msgstr "" +msgstr "要成为注册的身份认证学员,需要处理好三件事:" #: lms/templates/verify_student/show_requirements.html msgid "Activate Your Account" -msgstr "" +msgstr "激活你的账户" #: lms/templates/verify_student/show_requirements.html msgid "Check your email" -msgstr "" +msgstr "检查你的email" #: lms/templates/verify_student/show_requirements.html msgid "" "you need an active edX account before registering - check your email for " "instructions" -msgstr "" +msgstr "在课程登记前,你需要激活你的edX账户——按说明书检查你的email" #: lms/templates/verify_student/show_requirements.html msgid "Identification" -msgstr "" +msgstr "身份信息" #: lms/templates/verify_student/show_requirements.html msgid "A photo identification document" -msgstr "" +msgstr "一张身份信息照片文档" #: lms/templates/verify_student/show_requirements.html msgid "" "a drivers license, passport, or other goverment or school-issued ID with " "your name and picture on it" -msgstr "" +msgstr "驾驶证、护照或者其他政府或学校颁发的包含你名字和照片的身份材料" #: lms/templates/verify_student/show_requirements.html msgid "Webcam" -msgstr "" +msgstr "摄像头" #: lms/templates/verify_student/show_requirements.html msgid "A webcam and a modern browser" @@ -9817,77 +9994,81 @@ msgid "" "{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " "{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}" msgstr "" +"{ff_a_start}Firefox{a_end}, {chrome_a_start}Chrome{a_end}, " +"{safari_a_start}Safari{a_end}, {ie_a_start}IE9+{a_end}等" #: lms/templates/verify_student/show_requirements.html msgid "" "Please make sure your browser is updated to the most recent version possible" -msgstr "" +msgstr "请确认你的浏览器已经升级到最新可用版本" #: lms/templates/verify_student/show_requirements.html msgid "Credit or Debit Card" -msgstr "" +msgstr "信用卡或者借记卡" #: lms/templates/verify_student/show_requirements.html msgid "A major credit or debit card" -msgstr "" +msgstr "一个主要的信用卡或者借记卡" #: lms/templates/verify_student/show_requirements.html msgid "" "Visa, Master Card, American Express, Discover, Diners Club, JCB with " "Discover logo" msgstr "" +"Visa卡, Master卡, American Express(美国运通), Discover, Diners Club, " +"包括Discover标志的JCB等" #: lms/templates/verify_student/show_requirements.html msgid "" "Missing something? You can always continue to audit this course instead." -msgstr "" +msgstr "不满足这些条件? 你仍可一直旁听此课程。" #: lms/templates/verify_student/show_requirements.html msgid "" "Missing something? You can always {a_start}audit this course instead{a_end}" -msgstr "" +msgstr "不满足这些条件? 你仍可一直 {a_start}旁听此课程 {a_end}" #: lms/templates/verify_student/show_requirements.html msgid "Go to Step 1: Take my Photo" -msgstr "" +msgstr "转到步骤1:拍摄照片" #: lms/templates/verify_student/verified.html msgid "ID Verification" -msgstr "" +msgstr "身份验证" #: lms/templates/verify_student/verified.html msgid "You've Been Verified Previously" -msgstr "" +msgstr "在通过验证之前" #: lms/templates/verify_student/verified.html msgid "" "We've already verified your identity (through the photos of you and your ID " "you provided earlier). You can proceed to make your secure payment and " "complete registration." -msgstr "" +msgstr "我已经验证你的身份(通过你的照片以及你提供的其他身份材料)。你可以进行安全支付以完成注册。" #: lms/templates/verify_student/verified.html msgid "You have decided to pay $ " -msgstr "" +msgstr "你已经决定支付$" #: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}(active){span_end}" -msgstr "" +msgstr "{span_start}(激活){span_end}" #: lms/templates/wiki/includes/article_menu.html msgid "Changes" -msgstr "" +msgstr "变更" #: lms/templates/wiki/includes/article_menu.html msgid "{span_start}active{span_end}" -msgstr "" +msgstr "{span_start}激活{span_end}" #: lms/templates/wiki/includes/breadcrumbs.html msgid "Add article" -msgstr "" +msgstr "添加文章" #: cms/templates/404.html msgid "The page that you were looking for was not found." diff --git a/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo b/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo index f70eb863c0..5d4b489522 100644 Binary files a/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo and b/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/zh_CN/LC_MESSAGES/djangojs.po b/conf/locale/zh_CN/LC_MESSAGES/djangojs.po index ef060198cd..3179675976 100644 --- a/conf/locale/zh_CN/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_CN/LC_MESSAGES/djangojs.po @@ -10,6 +10,7 @@ # felicitychou , 2014 # focusheart , 2014 # focusheart , 2014 +# freakylemon , 2014 # hanwentao , 2013 # harry75369 , 2014 # hohomi , 2014 @@ -58,9 +59,9 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" -"PO-Revision-Date: 2014-04-24 13:20+0000\n" -"Last-Translator: sarina \n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" +"PO-Revision-Date: 2014-05-05 05:21+0000\n" +"Last-Translator: pku9104038 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/edx-platform/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -540,7 +541,7 @@ msgstr "您确定要删除这个帖子?" #: common/static/coffee/src/discussion/views/discussion_user_profile_view.js msgid "We had some trouble loading the page you requested. Please try again." -msgstr "" +msgstr "加载您的页面时出了一些问题,请重试。" #: common/static/coffee/src/discussion/views/response_comment_show_view.js msgid "anonymous" @@ -1601,7 +1602,7 @@ msgstr "文件格式不支持。请上传一个后缀名为tar.gz #: cms/static/js/views/metadata.js msgid "Upload File" -msgstr "" +msgstr "上传文件" #: cms/static/js/views/overview.js msgid "Collapse All Sections" diff --git a/conf/locale/zh_TW/LC_MESSAGES/django.mo b/conf/locale/zh_TW/LC_MESSAGES/django.mo index 9b97ca72be..692fe387c4 100644 Binary files a/conf/locale/zh_TW/LC_MESSAGES/django.mo and b/conf/locale/zh_TW/LC_MESSAGES/django.mo differ diff --git a/conf/locale/zh_TW/LC_MESSAGES/django.po b/conf/locale/zh_TW/LC_MESSAGES/django.po index 2cb9add281..f5043979a5 100644 --- a/conf/locale/zh_TW/LC_MESSAGES/django.po +++ b/conf/locale/zh_TW/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ # tosti , 2013 # JoeyChiou , 2013 # JoeyChiou , 2013 -# okalright , 2013 +# okalright , 2013-2014 # bhsfmiao , 2014 # okalright , 2013-2014 # tosti , 2013 @@ -16,6 +16,7 @@ # Yu-Ren Chen , 2013-2014 # Yu-Ren Chen , 2013 # Yu-Ren Chen , 2013 +# qwer20108 , 2014 # christtabris , 2014 # #-#-#-#-# django-studio.po (edx-platform) #-#-#-#-# # edX translation file. @@ -46,6 +47,8 @@ # tosti , 2013 # TSHIH , 2013 # Yu-Ren Chen , 2013-2014 +# Oscar Wei , 2014 +# qwer20108 , 2014 # #-#-#-#-# mako-studio.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2014 edX @@ -60,6 +63,7 @@ # tosti , 2013 # TSHIH , 2013 # Yu-Ren Chen , 2014 +# qwer20108 , 2014 # #-#-#-#-# messages.po (edx-platform) #-#-#-#-# # edX translation file # Copyright (C) 2013 edX @@ -83,7 +87,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:11-0400\n" +"POT-Creation-Date: 2014-05-02 17:10-0400\n" "PO-Revision-Date: 2014-04-10 20:10+0000\n" "Last-Translator: Yu-Ren Chen \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/edx-platform/language/zh_TW/)\n" @@ -204,9 +208,8 @@ msgid "Course id is invalid" msgstr "課程編號無效" #: common/djangoapps/student/views.py -#: lms/templates/courseware/course_about.html msgid "Course is full" -msgstr "" +msgstr "課程已滿" #: common/djangoapps/student/views.py msgid "You are not enrolled in this course" @@ -851,7 +854,7 @@ msgid "unanswered" msgstr "" #: common/lib/capa/capa/inputtypes.py -msgid "queued" +msgid "processing" msgstr "" #: common/lib/capa/capa/inputtypes.py @@ -1139,9 +1142,17 @@ msgstr "課程" msgid "Course Info" msgstr "課程資訊" +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Progress" is the name of the student's course progress page +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/peer_grading/peer_grading.html +#, fuzzy msgid "Progress" -msgstr "進度" +msgstr "" +"#-#-#-#-# django-partial.po (edx-platform) #-#-#-#-#\n" +"課程進度\n" +"#-#-#-#-# mako.po (edx-platform) #-#-#-#-#\n" +"進度" #. Translators: "Wiki" is the name of the course's wiki page #: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/course_wiki/views.py @@ -1154,13 +1165,17 @@ msgstr "Wiki" #. the discussion forums #: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py msgid "Discussion" -msgstr "" +msgstr "討論" -#: cms/templates/textbooks.html cms/templates/textbooks.html -#: cms/templates/widgets/header.html +#: common/lib/xmodule/xmodule/tabs.py cms/templates/textbooks.html +#: cms/templates/textbooks.html cms/templates/widgets/header.html msgid "Textbooks" msgstr "教材" +#. #-#-#-#-# django-partial.po (edx-platform) #-#-#-#-# +#. Translators: "Staff grading" appears on a tab that allows +#. staff to view open-ended problems that require staff grading +#: common/lib/xmodule/xmodule/tabs.py #: lms/templates/instructor/staff_grading.html msgid "Staff grading" msgstr "員工評分" @@ -1169,9 +1184,12 @@ msgstr "員工評分" #. students to view open-ended problems that require grading #: common/lib/xmodule/xmodule/tabs.py msgid "Peer grading" -msgstr "" +msgstr "同儕評量" -#: lms/templates/courseware/syllabus.html +#. #-#-#-#-# 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 msgid "Syllabus" msgstr "教學大綱" @@ -1181,7 +1199,7 @@ msgstr "教學大綱" #. their course #: common/lib/xmodule/xmodule/tabs.py msgid "Instructor" -msgstr "教師" +msgstr "教師控制面板" #. Translators: "Self" is used to denote an openended response that is self- #. graded @@ -1406,6 +1424,16 @@ msgstr "" msgid "A YouTube URL or a link to a file hosted anywhere on the web." msgstr "一個YouTube網址或是位於網路上的檔案連結。" +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + #: common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/mjtheme/layout.html msgid "Navigation" msgstr "導航" @@ -2312,7 +2340,7 @@ msgstr "進度:距今{attempted}的{action}{succeeded}" #. {student} is a student identifier. #: lms/djangoapps/instructor_task/views.py msgid "Unable to find submission to be {action} for student '{student}'" -msgstr "" +msgstr "找不到提交為{action}的學生'{student}'" #. Translators: {action} is a past-tense verb that is localized separately. #. {student} is a student identifier. @@ -3948,7 +3976,7 @@ msgstr "" #: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html #: lms/templates/static_templates/tos.html msgid "Terms of Service" -msgstr "" +msgstr "服務條款" #: cms/templates/widgets/footer.html lms/templates/footer.html #: lms/templates/static_templates/privacy.html @@ -4522,7 +4550,7 @@ msgstr "" #: lms/templates/footer.html msgid "© 2014 {platform_name}, some rights reserved." -msgstr "" +msgstr "© 2014 {platform_name}, 保留部分權利。" #: lms/templates/footer.html msgid "Terms of Service and Honor Code" @@ -4853,10 +4881,24 @@ msgstr "" msgid "Sign in with {provider_name}" msgstr "" +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS #: lms/templates/lti.html msgid "External resource" msgstr "外部資源" +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + #: lms/templates/lti.html msgid "View resource in a new window" msgstr "在新視窗檢視資源" @@ -4866,6 +4908,10 @@ msgid "" "Please provide launch_url. Click \"Edit\", and fill in the required fields." msgstr "" +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + #: lms/templates/lti_form.html msgid "Press to Launch" msgstr "" @@ -5681,10 +5727,6 @@ msgstr "下載影片" msgid "Download transcript" msgstr "" -#: lms/templates/video.html lms/templates/video.html -msgid "{file_format}" -msgstr "" - #: lms/templates/video.html msgid "Download Handout" msgstr "" @@ -6134,7 +6176,7 @@ msgstr "在Studio中檢視更新" #: lms/templates/courseware/info.html lms/templates/courseware/info.html msgid "Course Updates & News" -msgstr "課程更新&新聞" +msgstr " 公佈欄" #: lms/templates/courseware/info.html msgid "Handout Navigation" @@ -8377,7 +8419,7 @@ msgstr "已評分" #: lms/templates/peer_grading/peer_grading.html msgid "Available" -msgstr "可用的" +msgstr "可評分的" #: lms/templates/peer_grading/peer_grading.html msgid "Required" @@ -9864,7 +9906,7 @@ msgstr "聯繫edX技術支援團隊" #: cms/templates/asset_index.html cms/templates/asset_index.html #: cms/templates/widgets/header.html msgid "Files & Uploads" -msgstr "檔案及上傳" +msgstr " 檔案上傳 " #: cms/templates/asset_index.html msgid "Uploading…" @@ -9982,7 +10024,7 @@ msgstr "任何您在這檢查表做出的更改將會自動儲存,並且立刻 #: cms/templates/component.html cms/templates/studio_xblock_wrapper.html #: cms/templates/studio_xblock_wrapper.html msgid "Duplicate" -msgstr "" +msgstr "重複" #: cms/templates/component.html msgid "Duplicate this component" @@ -10040,25 +10082,25 @@ msgstr "" #: cms/templates/course_info.html cms/templates/course_info.html msgid "Course Updates" -msgstr "課程更新" +msgstr "公佈欄" #: cms/templates/course_info.html msgid "New Update" -msgstr "新增更新" +msgstr "新增公告" #: cms/templates/course_info.html msgid "" "Use course updates to notify students of important dates or exams, highlight" " particular discussions in the forums, announce schedule changes, and " "respond to student questions. You add or edit updates in HTML." -msgstr "使用課程更新以提醒學生重要日期或考試、強調論壇中特定的討論內容、公告時間表的改變和回答學生問題。以HTML新增或編輯更新。" +msgstr "使用公佈欄以提醒學生重要日期或考試、強調論壇中特定的討論內容、公告時間表的改變和回答學生問題。以HTML新增或編輯公告。" #. Translators: Pages refer to the tabs that appear in the top navigation of #. each course. #: cms/templates/edit-tabs.html cms/templates/edit-tabs.html #: cms/templates/export.html cms/templates/widgets/header.html msgid "Pages" -msgstr "靜態頁面" +msgstr "自訂頁面" #: cms/templates/edit-tabs.html msgid "New Page" @@ -10075,7 +10117,7 @@ msgid "" "Note: Pages are publicly visible. If users know the URL of a page, they can " "view the page even if they are not registered for or logged in to your " "course." -msgstr "注意:靜態介面是公開可見的,如果使用者知道靜態頁面的URL,就算使用者並未註冊或是登入您的課程,依然可以看見其內容。" +msgstr "注意:自訂頁面是公開可見的,如果使用者知道自訂頁面的URL,就算使用者並未註冊或是登入您的課程,依然可以看見其內容。" #: cms/templates/edit-tabs.html msgid "Show this page" @@ -10099,18 +10141,18 @@ msgstr "新增頁面" #: cms/templates/edit-tabs.html msgid "What are pages?" -msgstr "什麼是靜態頁面?" +msgstr "什麼是\"自訂頁面\"?" #: cms/templates/edit-tabs.html msgid "" "Pages are listed horizontally at the top of your course. Default pages " "(Courseware, Course info, Discussion, Wiki, and Progress) are followed by " "textbooks and custom pages that you create." -msgstr "靜態頁面會水平列在課程上方。預設頁面(課程、課程訊息、討論區、Wiki和進度)會接在教材和自訂的靜態頁面之前。" +msgstr "自訂頁面會水平列在課程上方。預設頁面(課程、課程訊息、討論區、Wiki和進度)會接在教材和自訂的自訂頁面之前。" #: cms/templates/edit-tabs.html msgid "Custom pages" -msgstr "自訂靜態頁面" +msgstr "自訂頁面" #: cms/templates/edit-tabs.html msgid "" @@ -10995,11 +11037,11 @@ msgstr "需要幫助?" msgid "" "If you are new to Studio and having trouble getting started, there are a few" " things that may be of help:" -msgstr "如果您對Studio不瞭解,同時開始使用時遇到困難,那麼這些東西可能對您有所幫助。" +msgstr "如果您對Studio不瞭解,或使用時遇到困難,您可以參考以下連結。" #: cms/templates/index.html msgid "Get started by reading Studio's Documentation" -msgstr "從閱讀Studio的說明文件開始" +msgstr "閱讀 Studio 說明文件" #: cms/templates/index.html msgid "Request help with Studio" @@ -11199,7 +11241,7 @@ msgstr "每門課程必須有一名管理員。如果您是管理員並希望轉 #: cms/templates/overview.html cms/templates/overview.html msgid "Course Outline" -msgstr "課程大綱" +msgstr "課程內容" #: cms/templates/overview.html cms/templates/overview.html #: cms/templates/overview.html @@ -11393,7 +11435,7 @@ msgstr "時程與細節設置" #: cms/templates/settings.html msgid "Schedule & Details" -msgstr "時程表與細節" +msgstr " 時程表與課程介紹" #: cms/templates/settings.html msgid "Basic Information" diff --git a/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo b/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo index e86133b2d4..9f715f4eba 100644 Binary files a/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo and b/conf/locale/zh_TW/LC_MESSAGES/djangojs.mo differ diff --git a/conf/locale/zh_TW/LC_MESSAGES/djangojs.po b/conf/locale/zh_TW/LC_MESSAGES/djangojs.po index 67eae10f66..9c49809f38 100644 --- a/conf/locale/zh_TW/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_TW/LC_MESSAGES/djangojs.po @@ -13,6 +13,7 @@ # okalright , 2013 # Yu-Ren Chen , 2013-2014 # Yu-Ren Chen , 2013 +# Oscar Wei , 2014 # christtabris , 2014 # #-#-#-#-# djangojs-studio.po (edx-platform) #-#-#-#-# # edX translation file. @@ -32,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-platform\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2014-04-27 11:10-0400\n" +"POT-Creation-Date: 2014-05-02 17:09-0400\n" "PO-Revision-Date: 2014-04-24 13:20+0000\n" "Last-Translator: sarina \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/edx-platform/language/zh_TW/)\n" diff --git a/docs/en_us/ORA2/source/PeerAssessment.rst b/docs/en_us/ORA2/source/PeerAssessment.rst index 55e5e345fb..c4222fd15b 100644 --- a/docs/en_us/ORA2/source/PeerAssessment.rst +++ b/docs/en_us/ORA2/source/PeerAssessment.rst @@ -57,8 +57,7 @@ In your problem, you'll also specify the **assessment type or types**. You can s :alt: Image of peer assessment with assessment steps and status labeled :width: 600 - -.. note:: In this initial release, the type and order of assessments cannot be changed. Students must complete peer assessments followed by a self assessment. +You can set the assignment to include a peer assessment only, a self assessment only, or a peer assessment followed by a self assessment. For more information, see :ref:`PA Specify Name and Assessment Types`. @@ -236,7 +235,7 @@ Step 1. Create the Component Step 2. Specify the Problem Name and Assessment Types ======================================================== -To specify problem data such as the name and assessment types, you'll work with the XML at the top of the problem. +To specify the name and assessment types for the problem, you'll work with the XML at the top of the problem. Locate the following XML near the top of the component editor: @@ -252,17 +251,26 @@ Locate the following XML near the top of the component editor: This code specifies four elements: * **The title of the assignment**. In this example, because there is no text between the ```` tags, the assignment does not have a specified title. -* **The type and order of the assessments**. This information is in the **name** attribute in the two ``<assessment>`` tags. The peer assessment runs, and then the student performs a self assessment. (Note that in this initial release, students must complete a peer assessment followed by a self assessment. The assessment types and order cannot be changed.) +* **The type and order of the assessments**. This information is in the **name** attribute in the two ``<assessment>`` tags. Assessments run in the order in which they're listed. In this example, the peer assessment runs, and then the student performs a self assessment. * **The number of responses that each student must assess** (for peer assessments). This information is in the **must_grade** attribute in the ``<assessment>`` tag for the peer assessment. In this example, each student must grade five peer responses before he receives the scores that his peers have given him. * **The number of peer assessments each response must receive** (for peer assessments). This information is in the **must_be_graded_by** attribute in the ``<assessment>`` tag for the peer assessment. In this example, each response must receive assessments from three students before it can return to the student who submitted it. -To specify your problem data, follow these steps. +To specify the name and assessment types, follow these steps. #. Between the ``<title>`` tags, add a name for the problem. -#. In the ``<assessment>`` tag that contains "**peer-assessment**", replace the values for **must_grade** and **must_be_graded_by** with the numbers that you want. +#. Specify the type of assessments you want students to complete. + + - If you want students to complete a peer assessment only, delete the ``<assessment name="self-assessment"/>`` tag. + + - If you want students to complete a self assessment only, delete the ``<assessment name="peer-assessment" must_grade="5" must_be_graded_by="3""/>`` tag. + + - If you want students to complete a peer assessment and then a self assessment, leave the default tags. + +#. If your students will complete a peer assessment, replace the values for **must_grade** and **must_be_graded_by** in the ``<assessment name="peer-assessment">`` tag with the numbers that you want. + + .. note:: The value for **must_grade** must be greater than or equal to the value for **must_be_graded_by**. -.. note:: The value for **must_grade** must be greater than or equal to the value for **must_be_graded_by**. .. _PA Add Due Dates: @@ -270,7 +278,7 @@ To specify your problem data, follow these steps. Step 3. Add Start and Due Dates (optional) ========================================== -.. note:: Setting start and due dates is optional. If you don't specify dates, the deadline for all student responses and assessments is the due date that you set for the subsection that contains the peer assessment. If you do specify dates, those dates take precedence over the subsection due date. +Setting start and due dates is optional. If you don't specify dates, the deadline for all student responses and assessments is the due date that you set for the subsection that contains the peer assessment. If you do specify dates, those dates take precedence over the subsection due date. To specify due dates and times, you'll add code that includes the date and time inside the XML tags for the problem and for each specific assessment. The date and time must be formatted as ``YYYY-MM-DDTHH:MM:SS``. diff --git a/docs/en_us/course_authors/source/Format Cheat Sheet.rstnouse b/docs/en_us/course_authors/source/Format Cheat Sheet.rstnouse index f0874c9895..791ba0e8a7 100644 --- a/docs/en_us/course_authors/source/Format Cheat Sheet.rstnouse +++ b/docs/en_us/course_authors/source/Format Cheat Sheet.rstnouse @@ -52,7 +52,7 @@ Table Formatting With a header row .. list-table:: - :widths: 10 80 + :widths: 15 15 70 :header-rows: 1 * - First Name @@ -70,7 +70,7 @@ With a header row With a bolded first column .. list-table:: - :widths: 10 80 + :widths: 15 15 70 :stub-columns: 1 * - First Name @@ -101,6 +101,12 @@ To make the cross reference in text: see :ref:`Set Grade Brackets<Set-Grade-Brackets>` +To cross-reference a topic, but use your own text instead of the topic title, use the :ref: directive, but enter your own text followed by the topic anchor in angle brackets: + + If you want to add a graded tool or exercise, add the tool as a :ref:`custom JavaScript problem<Custom JavaScript>` or an :ref:`LTI component<LTI Component>`. + + (In this sentence, the text appears as "custom JavaScript problem" and "LTI component", and the linked-to topic titles are "Custom JavaScript Problem" and "LTI Component".) + External page reference see `Create a Problem <http://site.Create_Problem.html>`_ diff --git a/docs/en_us/course_authors/source/Images/Discussion_blackout_formatted.png b/docs/en_us/course_authors/source/Images/Discussion_blackout_formatted.png new file mode 100644 index 0000000000..00de52b645 Binary files /dev/null and b/docs/en_us/course_authors/source/Images/Discussion_blackout_formatted.png differ diff --git a/docs/en_us/course_authors/source/Images/Discussion_blackout_unformatted.png b/docs/en_us/course_authors/source/Images/Discussion_blackout_unformatted.png new file mode 100644 index 0000000000..ed5080f8d4 Binary files /dev/null and b/docs/en_us/course_authors/source/Images/Discussion_blackout_unformatted.png differ diff --git a/docs/en_us/course_authors/source/Images/IFrame_1.png b/docs/en_us/course_authors/source/Images/IFrame_1.png new file mode 100644 index 0000000000..514f9bacef Binary files /dev/null and b/docs/en_us/course_authors/source/Images/IFrame_1.png differ diff --git a/docs/en_us/course_authors/source/Images/IFrame_2.png b/docs/en_us/course_authors/source/Images/IFrame_2.png new file mode 100644 index 0000000000..f7c0a4c0d5 Binary files /dev/null and b/docs/en_us/course_authors/source/Images/IFrame_2.png differ diff --git a/docs/en_us/course_authors/source/Images/IFrame_3.png b/docs/en_us/course_authors/source/Images/IFrame_3.png new file mode 100644 index 0000000000..9f7f4e6b2b Binary files /dev/null and b/docs/en_us/course_authors/source/Images/IFrame_3.png differ diff --git a/docs/en_us/course_authors/source/Images/IFrame_4.png b/docs/en_us/course_authors/source/Images/IFrame_4.png new file mode 100644 index 0000000000..f6f709807c Binary files /dev/null and b/docs/en_us/course_authors/source/Images/IFrame_4.png differ diff --git a/docs/en_us/course_authors/source/Images/VitalSource.png b/docs/en_us/course_authors/source/Images/VitalSource.png new file mode 100644 index 0000000000..ed304d06ce Binary files /dev/null and b/docs/en_us/course_authors/source/Images/VitalSource.png differ diff --git a/docs/en_us/course_authors/source/Images/VitalSource_LMS.png b/docs/en_us/course_authors/source/Images/VitalSource_LMS.png new file mode 100644 index 0000000000..694fc78108 Binary files /dev/null and b/docs/en_us/course_authors/source/Images/VitalSource_LMS.png differ diff --git a/docs/en_us/course_authors/source/Images/score_histogram_callouts.png b/docs/en_us/course_authors/source/Images/score_histogram_callouts.png new file mode 100644 index 0000000000..97c4cb816a Binary files /dev/null and b/docs/en_us/course_authors/source/Images/score_histogram_callouts.png differ diff --git a/docs/en_us/course_authors/source/change_log.rst b/docs/en_us/course_authors/source/change_log.rst index 88e6040a25..78bba9a78a 100644 --- a/docs/en_us/course_authors/source/change_log.rst +++ b/docs/en_us/course_authors/source/change_log.rst @@ -2,6 +2,35 @@ Change Log ############ +*********** +May, 2014 +*********** + +.. list-table:: + :widths: 10 70 + :header-rows: 1 + + * - Date + - Change + * - 05/09/14 + - Updated :ref:`Assigning_discussion_roles` with a note about course staff requiring + explicit granting of discussion administration roles. + * - + - Added :ref:`VitalSource` topic. + * - 05/08/14 + - Added warnings to :ref:`Add a File` about file size. + * - 05/07/14 + - Updated the :ref:`Discussions` chapter to include a topic on closing + discussions. + * - 05/06/14 + - Expanded the :ref:`Grades` chapter to include a topic on interpreting the score histograms for problems. + * - + - Updated :ref:`LTI Component` to reflect changes to the Studio UI. + * - 05/02/14 + - Updated :ref:`Drag and Drop` information. + * - + - Updated :ref:`IFrame` documentation. + ************ April, 2014 ************ diff --git a/docs/en_us/course_authors/source/creating_content/course_files.rst b/docs/en_us/course_authors/source/creating_content/course_files.rst index 6e000333f1..a3acdd3198 100644 --- a/docs/en_us/course_authors/source/creating_content/course_files.rst +++ b/docs/en_us/course_authors/source/creating_content/course_files.rst @@ -30,12 +30,17 @@ You can add files that you want students to access in the course. After you add a file, you must link to it from a component, a course update, or in the course handouts. A file is only visible to students if you create a link to it. -.. note:: Because the file name becomes part of the URL, students can see the - name of the file when they open it. Avoid using file names such as - AnswerKey.pdf. +Because the file name becomes part of the URL, students can see the name of the +file when they open it. Avoid using file names such as AnswerKey.pdf. + +.. warning:: + For PDF and image files, edX recommends that you use standard compression tools to reduce the file size before adding them to your course. + + If you have files that are larger than 50 MB after compression and need them for your course, contact your edX Program Manager. + + Furthermore, do not add video or audio files, or large data sets that are to be used by students. You should use YouTube or another hosting service to host multimedia files for your course. For storing large data sets for student use, contact your edX Program Manager. -.. warning:: If you upload a file with the same name as an existing course file, - the original file is overwritten without warning. + To add files: @@ -44,6 +49,11 @@ To add files: #. In the **Upload New File** dialog box, click **Choose File**. #. In the **Open** dialog box, select one more files that you want to upload, then click **Open**. + + .. note:: + If you upload a file with the same name as an existing course file + the original file is overwritten without warning. + #. To add more file, click **Load Another File** and repeat the previous step. #. To close the dialog box, click the **x** in the top right corner. diff --git a/docs/en_us/course_authors/source/exercises_tools/checkbox.rst b/docs/en_us/course_authors/source/exercises_tools/checkbox.rst index c96b48de6e..f83f7cbaae 100644 --- a/docs/en_us/course_authors/source/exercises_tools/checkbox.rst +++ b/docs/en_us/course_authors/source/exercises_tools/checkbox.rst @@ -71,7 +71,6 @@ To create this problem in the Advanced Editor, click the **Advanced** tab in the .. code-block:: xml <problem> - <startouttext/> <p>Learning about the benefits of preventative healthcare can be particularly difficult. Check all of the reasons below why this may be the case.</p> <choiceresponse> @@ -81,6 +80,7 @@ To create this problem in the Advanced Editor, click the **Advanced** tab in the <choice correct="true"><text>If others are immunized, fewer people will fall sick regardless of a particular individual's choice to get immunized or not.</text></choice> <choice correct="true"><text>Trust in healthcare professionals and government officials is fragile.</text></choice> </checkboxgroup> + </choiceresponse> <solution> <div class="detailed-solution"> @@ -88,7 +88,6 @@ To create this problem in the Advanced Editor, click the **Advanced** tab in the <p>People who are not immunized against a disease may still not fall sick from the disease. If someone is trying to learn whether or not preventative measures against the disease have any impact, he or she may see these people and conclude, since they have remained healthy despite not being immunized, that immunizations have no effect. Consequently, he or she would tend to believe that immunization (or other preventative measures) have fewer benefits than they actually do.</p> </div> </solution> - </choiceresponse> </problem> .. _Checkbox Problem XML: @@ -104,7 +103,6 @@ Template .. code-block:: xml <problem> - <startouttext/> <p>Question text</p> <choiceresponse> @@ -113,6 +111,7 @@ Template <choice correct="false"><text>Answer option 1 (incorrect)</text></choice> <choice correct="true"><text>Answer option 2 (correct)</text></choice> </checkboxgroup> + </choiceresponse> <solution> <div class="detailed-solution"> @@ -121,7 +120,6 @@ Template </div> </solution> - </choiceresponse> </problem> ====== @@ -182,4 +180,4 @@ Designates an answer option. Children - (none) \ No newline at end of file + (none) diff --git a/docs/en_us/course_authors/source/exercises_tools/create_exercises_and_tools.rst b/docs/en_us/course_authors/source/exercises_tools/create_exercises_and_tools.rst index 0378c715b5..860f316fd2 100644 --- a/docs/en_us/course_authors/source/exercises_tools/create_exercises_and_tools.rst +++ b/docs/en_us/course_authors/source/exercises_tools/create_exercises_and_tools.rst @@ -46,6 +46,11 @@ General Exercises and Tools :alt: Google Hangout - :ref:`Google Instant Hangout` - You can add the ability for students to participate in instant hangouts directly from your course. With instant hangouts, students can interact through live video and voice, share screens and watch videos together, and collaborate on documents. + * - .. image:: /Images/IFrame_1.png + :width: 100 + :alt: Example IFrame tool + - :ref:`IFrame` + - IFrames allow you to integrate ungraded exercises and tools from any Internet site into an HTML component in your course. * - .. image:: /Images/LTIExample.png :width: 100 :alt: Example LTI component @@ -86,6 +91,11 @@ General Exercises and Tools :alt: Example write-your-own-grader problem - :ref:`Write Your Own Grader` - In custom Python-evaluated input (also called "write-your-own-grader") problems, the grader uses a Python script that you create and embed in the problem to evaluates a student's response or provide hints. These problems can be any type. + * - .. image:: /Images/VitalSource.png + :width: 100 + :alt: VitalSource e-book with highlighted note + - :ref:`VitalSource` + - The VitalSource Online Bookshelf e-reader allows students to read, browse, and search content (including figures and notes), as well as work with multiple highlighters and copy notes into external documents. ******************************** Image-Based Exercises and Tools diff --git a/docs/en_us/course_authors/source/exercises_tools/drag_and_drop.rst b/docs/en_us/course_authors/source/exercises_tools/drag_and_drop.rst index 23e2ba8561..a36732ded0 100644 --- a/docs/en_us/course_authors/source/exercises_tools/drag_and_drop.rst +++ b/docs/en_us/course_authors/source/exercises_tools/drag_and_drop.rst @@ -13,6 +13,39 @@ In drag and drop problems, students respond to a question by dragging text or ob Create a Drag and Drop Problem ********************************* +To create a simple drag and drop problem in which students drag labels onto an image, you'll upload the image that you want students to drag labels onto, and then create a Problem component. + +#. On the **Files & Uploads** page, upload your image file. For more information about uploading files, see :ref:`Add Files to a Course`. +#. In the unit where you want to create the problem, click **Problem** under **Add New Component**, and then click the **Advanced** tab. +#. Click **Drag and Drop**. +#. In the component that appears, click **Edit**. +#. In the component editor, replace the example text with the text of your problem. +#. In the ``<drag_and_drop_input>`` tag, replace **https://studio.edx.org/c4x/edX/DemoX/asset/L9_buckets.png** with the URL of your image file on the **Files & Uploads** page (for example, **/static/Image.png**). +#. For at least one ``<draggable>`` tag, replace the text of the **label** attribute with the text of the label you want students to drag. For example, if you want students to drag the word "Iceland" onto your image, the new tag would resemble the following: + + ``<draggable id="1" label="Iceland"/>`` + +8. Repeat the previous step for all the labels that you want to use. Make sure that the **id** attribute is different for each ``<draggable>`` tag. +#. Determine the coordinates and radius of the correct area on the image. +#. Under ``correct_answer = {``, add an entry for each label, using the following format. These values are in pixels: + + ``'id': [[x coordinate, y coordinate], radius]`` + + For example, if your image is 600 pixels wide and 400 pixels high, and you want your students to drag the Iceland label to an area in the upper-left part of the image and drag a Sweden label near the lower-right part of your image, the code would resemble the following (where 2 is the ID for the Sweden label): + + .. code-block:: xml + + correct-answer = { + '1': [[50, 50], 75] + '2': [[550, 350], 75]} + + .. note:: Make sure the code contains the closing curly brace (**}**). +#. Click **Save**. + +========================================== +Sample Drag and Drop Problem Code +========================================== + To create the drag and drop problem that appears in the image above, you'll download two files from edX, upload these files to to the **Files & Uploads** page, and then add the code for the problem to a Problem component. #. Download the following files from edX: @@ -50,7 +83,14 @@ To create the drag and drop problem that appears in the image above, you'll down <target id="0" h="53" w="66" y="55.100006103515625" x="131.5"/> <target id="1" h="113" w="55" y="140.10000610351562" x="181.5"/> </drag_and_drop_input> - <answer type="loncapa/python"> correct_answer = [ {'draggables': ['2'], 'targets': ['0' ], 'rule':'unordered_equal' }, {'draggables': ['none'], 'targets': ['1' ], 'rule':'unordered_equal' }] if draganddrop.grade(submission[0], correct_answer): correct = ['correct'] else: correct = ['incorrect'] </answer> + <answer type="loncapa/python"> + correct_answer = [ {'draggables': ['2'], 'targets': ['0' ], 'rule':'unordered_equal' }, + {'draggables': ['none'], 'targets': ['1' ], 'rule':'unordered_equal' }] + if draganddrop.grade(submission[0], correct_answer): + correct = ['correct'] + else: + correct = ['incorrect'] + </answer> </customresponse> <solution> <img src="/static/AllopurinolAnswer.gif"/> @@ -64,33 +104,68 @@ To create the drag and drop problem that appears in the image above, you'll down Drag and Drop Problem XML ********************************* -======== -Template -======== +================================ +Template for Simple Problem +================================ .. code-block:: xml <problem> - <p>Problem text</p> - <customresponse> - <drag_and_drop_input no_labels="false" one_per_target="true" target_outline="true" img="/static/TARGET_IMAGE.gif"> - <draggable can_reuse="true" label="NAME 1" id="1"/> - <draggable can_reuse="true" label="NAME 2" id="2"/> - <target id="0" h="HEIGHT (in pixels)" w="WIDTH (in pixels)" y="Y-COORDINATE" x="X-COORDINATE"/> - <target id="1" h="HEIGHT (in pixels)" w="WIDTH (in pixels)" y="Y-COORDINATE" x="X-COORDINATE"/> - </drag_and_drop_input> - <answer type="loncapa/python"> correct_answer = [ {'draggables': ['2'], 'targets': ['0' ], 'rule':'unordered_equal' }, {'draggables': ['none'], 'targets': ['1' ], 'rule':'unordered_equal' }] if draganddrop.grade(submission[0], correct_answer): correct = ['correct'] else: correct = ['incorrect'] </answer> - </customresponse> - <solution> - <img src="/static/ANSWER_IMAGE.gif"/> - </solution> + <p>PROBLEM TEXT</p> + <customresponse> + <drag_and_drop_input img="/static/TARGET_IMAGE.png"> + <draggable id="1" label="LABEL 1"/> + <draggable id="2" label="LABEL 2"/> + </drag_and_drop_input> + <answer type="loncapa/python"> + correct_answer = { + '1': [[x, y], radius], + '2': [[x, y], radius]} + if draganddrop.grade(submission[0], correct_answer): + correct = ['correct'] + else: + correct = ['incorrect'] + </answer> + </customresponse> + + +================================ +Template for Advanced Problem +================================ + +.. code-block:: xml + + <problem> + <customresponse> + <text> + <p>PROBLEM TEXT</p> + </text> + <drag_and_drop_input img="/static/TARGET_IMAGE.png" target_outline="true" one_per_target="true" no_labels="true" label_bg_color="rgb(222, 139, 238)"> + <draggable id="1" label="LABEL 1" /> + <draggable id="2" label="LABEL 2" /> + <target id="A" x="NUMBER" Y="NUMBER" w="X+WIDTH" h="Y+HEIGHT"/> + <target id="B" x="NUMBER" Y="NUMBER" w="X+WIDTH" h="Y+HEIGHT"/> + </drag_and_drop_input> + <answer type="loncapa/python"> + correct_answer = [{ + 'draggables': ['1', '2'], + 'targets': ['A', 'B' ], + 'rule':'anyof' + }] + if draganddrop.grade(submission[0], correct_answer): + correct = ['correct'] + else: + correct = ['incorrect'] + </answer> + </customresponse> </problem> ======== Tags ======== -* ``<drag_and_drop_input/>``: Indicates the problem is a drag and drop problem. +* ``<customresponse>``: Indicates that the problem is a custom response problem. +* ``<drag_and_drop_input/>``: Indicates the custom response problem is a drag and drop problem. * ``<draggable/>``: Specifies a single object that a student will drag onto the base image. * ``<target>``: Specifies the location on the base image where a draggable must be dropped. diff --git a/docs/en_us/course_authors/source/exercises_tools/iframe.rst b/docs/en_us/course_authors/source/exercises_tools/iframe.rst new file mode 100644 index 0000000000..40f054153e --- /dev/null +++ b/docs/en_us/course_authors/source/exercises_tools/iframe.rst @@ -0,0 +1,95 @@ +.. _IFrame: + +################## +IFrame Tool +################## + +An IFrame allows you to integrate ungraded exercises and tools from any Internet site into the body of your course. The IFrame appears inside an HTML component, and the exercise or tool appears inside the IFrame. IFrames can include your own tools or third-party tools. + +.. image:: /Images/IFrame_1.png + :alt: IFrame tool showing a Euler line exercise + :width: 500 + +IFrames are well-suited for tools that demonstrate a concept but that won't be graded or store student data. If you want to add a graded tool or exercise, add the tool as a :ref:`custom JavaScript problem<Custom JavaScript>` or an :ref:`LTI component<LTI Component>`. + +For more information about IFrames, see the `IFrame specification <http://www.w3.org/wiki/HTML/Elements/iframe>`_. + +**************************** +Create an IFrame Tool +**************************** + +To add an exercise or tool in an IFrame, you'll create an IFrame HTML component and add the URL of the page that contains the exercise or tool to the component. You can also add text and images both before and after the IFrame. + +.. note:: The URL of the page that contains the exercise or tool must start with ``https`` instead of ``http``. If the URL starts with ``http``, you have to work with the owner of that page to find out if an ``https`` version is available. Some websites do not allow their content to be embedded in IFrames. + +#. Under **Add New Component**, click **html**, and then click **IFrame**. + +#. In the new component that appears, click **Edit**. + +#. In the toolbar in the component editor, click **HTML**. + +#. In the HTML source code editor, locate the following HTML (line 7). This HTML includes the ``<iframe>`` element: + + .. code-block:: html + + <p><iframe src="https://studio.edx.org/c4x/edX/DemoX/asset/eulerLineDemo.html" width="402" height="402" marginwidth="0" marginheight="0" frameborder="0" scrolling="no">You need an iFrame capable browser to view this.</iframe></p> + +5. Replace the default URL in the **src** attribute (**https://studio.edx.org/c4x/edX/DemoX/asset/eulerLineDemo.html**) with the URL of the page that contains the exercise or tool. **This URL must start with https**. Make sure you don't delete the quotation marks that surround the URL. + +#. Change the attributes in the IFrame element to specify any other settings that you want. For more information about these settings, see :ref:`IFrame Settings`. You can also change the text between the opening and closing ``<iframe>`` tags. A student only sees this text if the student uses a browser that does not support IFrames. + +7. Click **OK** to close the HTML source code editor and return to the Visual editor. + +#. In the Visual editor, replace the default text with your own text. + +#. Click **Save**. + +.. _IFrame Settings: + +====================== +IFrame Settings +====================== + +To specify settings for your IFrame, you'll add, remove, or change the attributes inside the opening ``<iframe>`` tag. The ``<iframe>`` tag **must** contain a **src** attribute that specifies the URL of the web page you want. Other attributes are optional. + +You can add these attributes in any order you want. + +.. list-table:: + :widths: 20 80 + :header-rows: 1 + + * - Attribute + - Description + * - **src** (required) + - Specifies the URL of the page that contains the exercise or tool. + * - **width** and **height** (optional) + - Specify the width and height of the IFrame, in pixels or as a percentage. To specify the value in pixels, enter numerals. To specify a percentage, enter numerals followed by a percent sign. + + If you don't specify the width and height, the IFrame uses the dimensions that the linked page has set. These dimensions vary by website. If you change the width and height of the IFrame, the content from the linked page may be resized, or only part of the content may appear. + + * - **marginwidth** and **marginheight** (optional) + - Specify the size of the space between the edges of the IFrame and your exercise or tool, in pixels. + * - **frameborder** (optional) + - Specifies whether a border appears around your IFrame. If the value is 0, no border appears. If the value is any positive number, a border appears. + * - **scrolling** (optional) + - Specifies whether a scrollbar appears to help users see all of the IFrame's content if your IFrame is smaller than the exercise or tool it contains. For example, if the content in your IFrame is very tall, you can set the IFrame's height to a smaller number and add a vertical scroll bar for users, as in the first image below. + +For example, compare how the different settings in each of the ``<iframe>`` elements below affect the IFrame. + +.. code-block:: html + + <p><iframe src="https://studio.edx.org/c4x/edX/DemoX/asset/eulerLineDemo.html" width="442" height="200" marginwidth="20" marginheight="20" frameborder="1" scrolling="yes">You need an iFrame capable browser to view this.</iframe></p> + +.. image:: /Images/IFrame_3.png + :alt: IFrame with only top half showing and vertical scroll bar on the side + :width: 500 + +.. code-block:: html + + <p><iframe src="https://studio.edx.org/c4x/edX/DemoX/asset/eulerLineDemo.html" width="550" height="250" marginwidth="30" marginheight="60" frameborder="1" scrolling="no">You need an iFrame capable browser to view this.</iframe></p> + +.. image:: /Images/IFrame_4.png + :alt: + :width: 500 + +For more information about IFrame attributes, see the `IFrame specification <http://www.w3.org/wiki/HTML/Elements/iframe>`_. diff --git a/docs/en_us/course_authors/source/exercises_tools/index.rst b/docs/en_us/course_authors/source/exercises_tools/index.rst index 9f9b1a835f..71c1361cb0 100644 --- a/docs/en_us/course_authors/source/exercises_tools/index.rst +++ b/docs/en_us/course_authors/source/exercises_tools/index.rst @@ -20,6 +20,7 @@ Creating Exercises and Tools full_screen_image gene_explorer google_hangouts + iframe image_mapped_input lti_component math_expression_input @@ -34,6 +35,7 @@ Creating Exercises and Tools problem_in_latex protein_builder text_input + vitalsource word_cloud custom_python zooming_image diff --git a/docs/en_us/course_authors/source/exercises_tools/lti_component.rst b/docs/en_us/course_authors/source/exercises_tools/lti_component.rst index cd4bc4161f..b71cad5769 100644 --- a/docs/en_us/course_authors/source/exercises_tools/lti_component.rst +++ b/docs/en_us/course_authors/source/exercises_tools/lti_component.rst @@ -13,17 +13,18 @@ based on the `IMS Global Learning Tools Interoperability <http://www.imsglobal.org/LTI/v1p1p1/ltiIMGv1p1p1.html>`_ version 1.1.1 specifications. -You can use an LTI component in two ways. +You can use an LTI component in several ways. -- You can add external LTI content that is displayed only, such as +- You can add external LTI content that is displayed only, such as textbook content that doesn’t require a student response. -- You can add external LTI content that requires a student response. An +- You can add external LTI content that requires a student response. An external provider will grade student responses. +- You can use the component as a placeholder for syncing with an external grading system. For example, the following LTI component incorporates a Cerego tool that students interact with. .. image:: /Images/LTIExample.png - :alt: Cerebro LTI component example + :alt: Cerego LTI component example Before you create an LTI component from an external LTI provider in a unit, you need the following information. @@ -67,23 +68,20 @@ Step 1. Add LTI to the Advanced Modules Policy Key ====================================================== #. On the **Settings** menu, click **Advanced Settings**. -#. On the **Advanced Settings** page, locate the **Manual Policy - Definition** section, and then locate the **advanced_modules** - policy key (this key is at the top of the list). - .. image:: /Images/AdvancedModulesEmpty.png - :alt: Image of the advanced_modules key in the Advanced Settings page +#. On the **Advanced Settings** page, locate the **advanced_modules** policy key (this key is at the top of the list). #. Under **Policy Value**, place your cursor between the brackets, and - then enter **“lti”**. Make sure to include the quotation marks, but + then enter ``“lti”``. Make sure to include the quotation marks, but not the period. .. image:: /Images/LTIPolicyKey.png - :alt: Image of the advanced_modules key in the Advanced Settings page, with the LTI value added + :width: 500 + :alt: Image of the advanced_modules key in the Advanced Settings page, with the LTI value added **Note** If the **Policy Value** field already contains text, place your cursor directly after the closing quotation mark for the final item, and - then enter a comma followed by **“lti”** (make sure that you include the + then enter a comma followed by ``“lti”`` (make sure that you include the quotation marks). #. At the bottom of the page, click **Save Changes**. @@ -138,59 +136,52 @@ Step 3. Add the LTI Component to a Unit #. In the unit where you want to create the problem, click **Advanced** under **Add New Component**, and then click **LTI**. #. In the component that appears, click **Edit**. -#. In the component editor, set the options that you want. See the table - below for a description of each option. +#. In the component editor, specify the settings that you want. See :ref:`LTI Component Settings` for a description of each setting. #. Click **Save**. - .. list-table:: - :widths: 10 80 - :header-rows: 1 +.. _LTI Component settings: - * - `Setting` - - Description - * - `Display Name` - - Specifies the name of the problem. This name appears above the problem and in - the course ribbon at the top of the page in the courseware. - * - `custom_parameters` - - Enables you to add one or more custom parameters. For example, if you've added an - e-book, a custom parameter may include the page that your e-book should open to. - You could also use a custom parameter to set the background color of the LTI component. +********************** +LTI Component Settings +********************** - Every custom parameter has a key and a value. You must add the key and value in the following format. +.. list-table:: + :widths: 10 80 + :header-rows: 1 - :: + * - Setting + - Description + * - Custom Parameters + - Enables you to add one or more custom parameters. For example, if you've added an e-book, you can set a custom parameter that opens the e-book to a specific page. You could also use a custom parameter to set the background color of the LTI component. - key=value + Every custom parameter has a key and a value. You must add the key and value in the following format. - For example, a custom parameter may resemble the following. + :: - :: + key=value - bgcolor=red + For example, a custom parameter may resemble the following. - page=144 + :: - To add a custom parameter, click **Add**. - * - `graded` - - Indicates whether the grade for the problem counts towards student's total grade. By - default, this value is set to **False**. - * - `has_score` - - Specifies whether the problem has a numerical score. By default, this value - is set to **False**. - * - `launch_url` - - Lists the URL that Studio sends to the external LTI provider so that the provider - can send back students' grades. This setting is only used if **graded** is set to - **True**. - * - `lti_id` - - Specifies the LTI ID for the external LTI provider. This value must be the same - LTI ID that you entered on the **Advanced Settings** page. - * - `open_in_a_new_page` - - Indicates whether the problem opens in a new page. If you set this value to **True**, - the student clicks a link that opens the LTI content in a new window. If you set - this value to **False**, the LTI content opens in an IFrame in the current page. - * - `weight` - - Specifies the number of points possible for the problem. By default, if an - external LTI provider grades the problem, the problem is worth 1 point, and - a student’s score can be any value between 0 and 1. + bgcolor=red - For more information about problem weights and computing point scores, see :ref:`Problem Weight`. \ No newline at end of file + page=144 + + To add a custom parameter, click **Add**. + * - Display Name + - Specifies the name of the problem. This name appears above the problem and in the course ribbon at the top of the page in the courseware. Analytics reports may also use the display name to identify this component. + * - Hide External Tool + - Indicates whether you want to launch an external tool or to use this component as a placeholder for syncing with an external grading system. If you set the value to **True**, Studio hides the **Launch** button and any IFrames for this component. By default, this value is set to **False**. + * - LTI ID + - Specifies the LTI ID for the external LTI provider. This value must be the same LTI ID that you entered on the **Advanced Settings** page. + * - LTI URL + - Specifies the URL of the external tool that this component launches. This setting is applicable when **Hide External Tool** is set to False. + * - Open in New Page + - Indicates whether the problem opens in a new page. If you set this value to **True**, the student clicks a link that opens the LTI content in a new window. If you set this value to **False**, the LTI content opens in an IFrame in the current page. This setting is applicable when **Hide External Tool** is set to False. + * - Scored + - Indicates whether the LTI component receives a numerical score from the external LTI system. By default, this value is set to **False**. + * - Weight + - Specifies the number of points possible for the problem. By default, if an external LTI provider grades the problem, the problem is worth 1 point, and a student’s score can be any value between 0 and 1. This setting is applicable when **Scored** is set to **True**. + + For more information about problem weights and computing point scores, see :ref:`Problem Weight`. diff --git a/docs/en_us/course_authors/source/exercises_tools/vitalsource.rst b/docs/en_us/course_authors/source/exercises_tools/vitalsource.rst new file mode 100644 index 0000000000..95539c5f6b --- /dev/null +++ b/docs/en_us/course_authors/source/exercises_tools/vitalsource.rst @@ -0,0 +1,130 @@ +.. _VitalSource: + +######################### +VitalSource E-Reader Tool +######################### + +The VitalSource Online Bookshelf e-reader tool provides your students with easy access to electronic books. Students can not only read text, but also quickly browse and search content (including figures and notes), create and manage notes and multiple highlighters, and copy notes into external documents. + +.. image:: /Images/VitalSource.png + :width: 500 + :alt: VitalSource e-book with highlighted note + +For more information about VitalSource and its features, visit the `VitalSource support page <https://support.vitalsource.com/hc/en-us>`_. + +************************** +Add a VitalSource E-Reader +************************** + +Adding a VitalSource e-reader has several steps: + +#. :ref:`Obtain the value for the lti_passports policy key and the code for your e-book from VitalSource<VS Obtain VS Info>`. + +#. :ref:`Modify the course's advanced settings to allow you to create a VitalSource Learning Tools Interoperability (LTI) component<VS Modify Advanced Settings>`. + +#. :ref:`Add the VitalSource e-reader to a unit<VS Add VS EReader>`. + +.. _VS Obtain VS Info: + +=========================================== +Step 1. Obtain Information from VitalSource +=========================================== + +When a course team works with VitalSource, the team selects a member publishing point person (MPPP) to work with VitalSource and with the e-book's publisher. + +To obtain the **lti_passports** policy key value: + +#. The MPPP asks VitalSource for the **lti_passports** policy key value. + +#. VitalSource sends the **lti_passports** policy key value to the MPPP. + +To obtain the code for the e-book: + +#. The MPPP asks the publisher of the e-book to send the e-book files to VitalSource. + +#. The publisher works with VitalSource to make sure the e-book meets the VitalSource Online Bookshelf specifications. + +#. VitalSource uploads the e-book to the Online Bookshelf and creates a specific code for the e-book. + +#. VitalSource sends the e-book's code to the MPPP. + +.. _VS Modify Advanced Settings: + +============================================= +Step 2. Modify the Course's Advanced Settings +============================================= + +In this step, you'll add values to the **advanced_modules** and **lti_passports** policy keys on the **Advanced Settings** page. + +#. In Studio, click the **Settings** menu, and then click **Advanced Settings**. + +#. On the **Advanced Settings** page, locate the **advanced_modules** policy key. + +#. Under **Policy Value**, place your cursor between the brackets, and then enter ``“lti”``. Make sure to include the quotation marks, but not the period. + + .. image:: /Images/LTIPolicyKey.png + :alt: Image of the advanced_modules key in the Advanced Settings page, with the LTI value added + + **Note** If the **Policy Value** field already contains text, place your cursor directly after the closing quotation mark for the final item, and then enter a comma followed by ``“lti”`` (make sure that you include the quotation marks). For example, the text in the **Policy Value** field may resemble the following: + + ``["value_1","lti"]`` + +4. Scroll down to the **lti_passports** policy key. + +#. Under **Policy Value**, place your cursor between the brackets, and then enter the value for the **lti_passports** policy key that you obtained from your VitalSource account manager. + +#. At the bottom of the page, click **Save Changes**. + +The page refreshes automatically. At the top of the page, you see a notification that your changes have been saved. + +.. _VS Add VS EReader: + +============================================== +Step 3. Add the VitalSource E-Reader to a Unit +============================================== + +To add the VitalSource e-reader to a unit, you'll create an LTI component, and then configure several settings in the component. + +#. In the unit where you want to create the problem, click **Advanced** under **Add New Component**, and then click **LTI**. + +#. In the component that appears, click **Edit**. + +#. In the **Display Name** field, type the name of your e-book. This name appears at the top of the component and in the course ribbon at the top of the page in the courseware. + +#. Next to **Custom Parameters**, click **Add**. + +#. In the field that appears, enter the following (where ``VitalSourceCode`` is the code for the e-book that you received from VitalSource): + + ``vbid=VitalSourceCode`` + + If you want to test an e-book in your course, but you don't yet have the code for the e-book, you can enter ``vbid=L-999-70103`` to create a link to *Pride and Prejudice*. + +#. If you want your e-book to open to a specific page, click **Add** next to **Custom Parameters** again, and then add the following (where ``35`` is the page of the e-book): + + ``book_location=page/35`` + +#. In the **Launch URL** field, enter the following (make sure to use ``https`` instead of ``http``): + + ``https://bc.vitalsource.com/books/book`` + +8. In the **LTI ID** field, enter the following: + + ``vital_source`` + +9. Click **Save**. + +************************** +Information for Students +************************** + +Each institution's VitalSource account manager will train the MPPP on the Online Bookshelf e-reader and provide supporting documentation as part of the onboarding process. However, to improve the learner experience, we recommend that you provide the following explanation of the e-reader to your students: + +Using a digital textbook in the Online Bookshelf e-reader has several benefits: Simple, user-friendly navigation; easy, intuitive access; and instant access to content. Below is a list of the Bookshelf e-reader features that you will use most often during the course: + +* Browse content, figures, and notes and filter search results. +* Create and manage multiple highlighters. +* Create and manage notes. +* Copy and paste notes into external documents. + +For more information about how to use these features, visit the `VitalSource Bookshelf Support site <https://support.vitalsource.com>`_. + diff --git a/docs/en_us/course_authors/source/releasing_course/set_content_releasedates.rst b/docs/en_us/course_authors/source/releasing_course/set_content_releasedates.rst index 4207719cf9..cd75e66073 100644 --- a/docs/en_us/course_authors/source/releasing_course/set_content_releasedates.rst +++ b/docs/en_us/course_authors/source/releasing_course/set_content_releasedates.rst @@ -144,8 +144,10 @@ Modifying Public Units To make revisions to a unit that has been published, you create and edit a draft of that unit. -.. warning:: There are additional implications to modifying the public unit that has graded problem - components students may have already completed. See :ref:`Modifying a Released Problem` for more information. +.. Warning:: + There are additional implications to modifying a public unit that has graded + problem components students may have already completed. See :ref:`Modifying a + Released Problem` for more information. To create a draft, go to the unit's page, and then click **edit a draft** in the right pane. diff --git a/docs/en_us/course_authors/source/running_course/course_grades.rst b/docs/en_us/course_authors/source/running_course/course_grades.rst index b07ab1aa04..ce0a3b62d9 100644 --- a/docs/en_us/course_authors/source/running_course/course_grades.rst +++ b/docs/en_us/course_authors/source/running_course/course_grades.rst @@ -362,7 +362,6 @@ Download the Student Answer Distribution Report An automated process runs periodically on the edX servers to update the CSV file of student answer data. A link to the most recently updated version of the CSV file is available on the Instructor Dashboard. To download the most recent file of student answer data: ->>>>>>> DOC-115 adds topics to make data interpretation easier #. View the live version of your course. @@ -452,9 +451,9 @@ You can adjust your course content based on common student mistakes. While most View a Histogram of Scores for a Single Problem =================================================== -You can view a chart of the score distribution for a specified problem. +You can view a chart of the score distribution for a specified problem. -.. note:: In order to view the score distribution for a problem, you need its unique identifier. See :ref:`find_URL`. +.. note:: To view the score distribution for a problem, you need its unique identifier. You can display a histogram for problems that have the ``/problem/`` prefix in the unique identifier. See :ref:`find_URL`. To display the distribution of scores for a problem: @@ -466,9 +465,43 @@ To display the distribution of scores for a problem: #. In the Score Distribution section, select a problem by using its unique identifier. - A histogram of scores for that problem displays. + The **Analytics** page updates to display a histogram of scores for that + problem. .. image:: ../Images/score_histogram.png - :alt: Graph of the numbers of students who got different scores for a selected problem + :alt: Graph of the number of students who received different scores for a + selected problem .. **Question**: (sent to Olga 31 Jan 14) this is a tough UI to use: how do they correlate the codes in this drop-down with actual constructed problems? the copy-and-paste UI on the Student Admin page actually works a little better imo. LMS-2522 + +=================================================== +Interpret a Score Histogram +=================================================== + +The histogram of scores for a selected problem provides the following +information. + + .. image:: ../Images/score_histogram_callouts.png + :alt: Histogram with indicators for the number of students scored value and + the x-axis numbers that indicate plotted scores + +* The x-axis indicates the number of points that students can receive for the + problem, unweighted. Although decimal values are marked on the x-axis, each + score is a whole number. The whole number value at the left of a plotted bar + is the score that applies to it. + +* The y-axis indicates the number of students who have answered and checked the + problem. + +* Above the graph, a number of **students scored** displays. This number + indicates the total number of database records that exist for the problem: it + includes not only students who have answered and checked the problem to + receive a score, but also students who have opened the problem but not yet + completed it. + +* An automated process runs approximately weekly on the edX servers to update + score histograms. This process runs less frequently than the process that + updates the student answer distribution report: at certain times during a + course the number of students shown in a score histogram can be quite + different than the **Count** for the same problem in a student answer + distribution report. diff --git a/docs/en_us/course_authors/source/running_course/discussions.rst b/docs/en_us/course_authors/source/running_course/discussions.rst index 67bb9e8685..4dd8af6193 100644 --- a/docs/en_us/course_authors/source/running_course/discussions.rst +++ b/docs/en_us/course_authors/source/running_course/discussions.rst @@ -16,16 +16,18 @@ For options you can use to run and moderate discussions, see the following topic * :ref:`Moderating_discussions` +* :ref:`Close_discussions` + .. _Organizing_discussions: ************************************************* -Set up discussions for your course +Set Up Discussions for Your Course ************************************************* Discussions in an edX course include both the specific topics that you add to course units as discussion components, and broader forums on course-wide areas of interest, such as Feedback, Troubleshooting, or Technical Help, that you can add as discussion categories. ============================================ -Add units with a discussion component +Add Units With a Discussion Component ============================================ Typically, all units are added during the design and creation of your course in Studio. To add a component to a unit, follow the instructions in :ref:`Working with Discussion Components`. @@ -33,7 +35,7 @@ Typically, all units are added during the design and creation of your course in This type of discussion is subject to the release date of the section that contains it. Students cannot contribute to these discussions until that date. ===================================== -Create discussion categories +Create Discussion Categories ===================================== All courses include a page named **Discussion**. When you create a course, a discussion category named General is available for you to include by default. You can add more discussion categories to guide how students share and find information during your course. Categories might include Feedback, Troubleshooting, or Technical Help. Discussions in these categories can begin as soon as your course is available. @@ -44,7 +46,7 @@ To create a discussion category: #. Select **Settings** > **Advanced Settings**. -#. Scroll down to the Policy Key labeled **discussion_topics**. By default, its Policy Value is: +#. Scroll down to the **Policy Key** for **discussion_topics**. By default, its **Policy Value** is: .. image:: ../Images/Discussion_Add_initial.png :alt: Policy value of {"General": {"id": "i4x-test_doc-SB101-course-2014_Jan"}} @@ -73,7 +75,7 @@ When students click the **Discussion** page for your course, the drop-down list .. _Assigning_discussion_roles: ========================================== -Assign discussion administration roles +Assign Discussion Administration Roles ========================================== You can designate a team of people to help you run course discussions. Different options for working with discussion posts are available to discussion administrators with these roles: @@ -84,7 +86,11 @@ You can designate a team of people to help you run course discussions. Different * Discussion admins have the same options for working with discussions as moderators. Admins can also assign these discussion management roles to more people while your course is running, or remove a role from a user whenever necessary. Responses and comments made by admins are marked as "Staff". -**Note**: Discussion responses and comments made by course staff and instructors are also marked as "Staff". +.. note:: + Course staff and instructors that you set up in Studio are not automatically + granted discussion administration roles. You must explicitly grant discussion + administration roles to course staff and instructors if they intend to + administer course discussions. Before you can assign roles to your discussion administrators, you need their email addresses or usernames. @@ -116,7 +122,7 @@ Run a discussion On an ongoing basis, discussion administrators run the course discussions by making contributions and guiding student posts into threads. Techniques that you can use throughout your course to make discussions successful follow. ======================== -Seed a discussion +Seed a Discussion ======================== Before you contribute to a discussion, you can decide whether you want to be identified as a staff member or community TA, or to appear like other students' work. Depending on the subject and your purpose, one or the other might be more appropriate to spark discussion and inform students. @@ -127,10 +133,10 @@ You can also post anonymously. Regardless of your role, you can choose to make a * To post as a student, you must set up an alternate account with a different email address, go to the course URL and register, and then join the discussion. When you post as a student, your responses and comments do not have a banner or other distinguishing features: they appear the same as any other student post. -**Note**: Posts by discussion administrators do not include a colored "Staff" or "Community TA" banner. The colored banner appears only when discussion administrators respond to existing posts or make a comment. +.. note:: Posts by discussion administrators do not include a colored "Staff" or "Community TA" banner. The colored banner appears only when discussion administrators respond to existing posts or make a comment. ========================================== -Use conventions in discussion subjects +Use Conventions in Discussion Subjects ========================================== To identify certain types of posts and make them easier for your students to find, you can define a set of standard tags to include at the beginning of the subject. Examples follow. @@ -145,7 +151,7 @@ To identify certain types of posts and make them easier for your students to fin ====================================== -Minimize thread proliferation +Minimize Thread Proliferation ====================================== To encourage longer, threaded discussions rather than many similar, separate posts, discussion administrators can use these techniques. However, be aware that long threads (with more than a 200 responses and comments) can be difficult to read and slow to display, and can therefore result in an unsatisfactory experience in the discussion. @@ -172,7 +178,7 @@ To encourage longer, threaded discussions rather than many similar, separate pos .. _Moderating_discussions: *********************** -Moderate discussions +Moderate Discussions *********************** Discussion administrators monitor discussions and keep them productive. They can also collect inforrmation, such as areas of particular confusion or interest, and relay it to the course staff. @@ -182,7 +188,7 @@ Developing and sustaining a positive discussion culture requires that sufficient For information on setting up moderators for your course, see :ref:`Assigning_discussion_roles`. ======================================== -Provide guidelines for students +Provide Guidelines for Students ======================================== You can develop a set of best practices for discussion participation and make them available to students as a course handout file or on a defined page in your course. These guidelines can define your expectations and optionally introduce features of edX discussions. @@ -190,7 +196,7 @@ You can develop a set of best practices for discussion participation and make th .. For a template that you can use to develop your own guidelines, see :ref:`Discussion Forum Guidelines`. ======================================== -Develop a positive forum culture +Develop a Positive Discussion Culture ======================================== Monitors can cultivate qualities in their own discussion interactions to make their influence positive and their time productive. @@ -214,7 +220,7 @@ Monitors can cultivate qualities in their own discussion interactions to make th For a template that you can use to develop guidelines for your course moderators, see :ref:`Guidance for Discussion Moderators`. ================== -Edit posts +Edit Posts ================== Posts and responses can be edited by discussion moderators, community TAs, and admins. Posts that include spoilers or solutions, or that contain inappropriate or off-topic material, should be edited quickly to remove text, images, or links. @@ -228,7 +234,7 @@ Posts and responses can be edited by discussion moderators, community TAs, and a #. Communicate the reason for your change. For example, "Posting a solution violates the honor code." ================== -Delete posts +Delete Posts ================== Posts and responses can be deleted by discussion moderators, community TAs, and admins. Posts that include spam or abusive language may need to be deleted, rather than edited. @@ -244,7 +250,7 @@ Posts and responses can be deleted by discussion moderators, community TAs, and **Important**: If a post is threatening or indicates serious harmful intent, contact campus security at your institution. Report the incident before taking any other action. ================================== -Respond to reports of misuse +Respond to Reports of Misuse ================================== Students can use the **Report Misuse** flag to indicate posts that they find inappropriate. Moderators, community TAs, and admins can check for posts that have been flagged in this way and edit or delete them as needed. @@ -258,9 +264,97 @@ Students can use the **Report Misuse** flag to indicate posts that they find ina #. Edit or delete the post. Alternatively, leave the post unchanged and click **Misuse Reported** or the flag to remove the notification. =============== -Block users +Block Users =============== -For students who continue to misuse the course discussions, you can unenroll the student from the course. See :ref:`unenroll_student`. If the enrollment period for the course is over, the student cannot re-enroll. +For a student who continues to misuse the course discussions, you can unenroll the student from the course. See :ref:`unenroll_student`. If the enrollment period for the course is over, the student cannot re-enroll. +.. _Close_discussions: +****************************** +Close Discussions to New Posts +****************************** + +You can close the discussions for your course so that students cannot add posts. +Course discussions can be closed temporarily, such as during an exam period, or +permanently, such as when a course ends. + +When you close the discussions for a course, all of the discussion components in +course units, and all of the discussion categories on the **Discussion** page, +are affected. + +* Existing discussion contributions remain available for review. + +* Students cannot add posts, respond to posts, or comment on responses. However, + students can continue to vote on existing posts, report posts for misuse, and + follow posts. + +* Course Staff, Instructors, Discussion Admins, Discussion Moderators, + and Discussion Community TAs are not affected when you close the discussions + for a course. Users with these roles can continue to add to discussions. + +.. note:: To assure that your students understand why they cannot add to discussions, you can add the dates that discussions are closed to the **Course Info** page and post them to a General discussion. + +===================================== +Start-End Date Format Specification +===================================== + +To close course discussions, you supply a start date and time and an end date +and time in Studio. You enter the values in this format: + +``["YYYY-MM-DDTHH:MM", "YYYY-MM-DDTHH:MM"]`` + +where: + +* The dates and times that you enter are in the Universal Coordinated (UTC) time + zone, not in your local time zone. +* You enter an actual letter **T** between the numeric date and time values. +* The first date and time indicate when you want course discussions to close. +* The second date and time indicate when you want course discussions to reopen. + If you do not want the discussions to reopen, enter a date that is far in the + future. +* Quotation marks enclose each date-time value. +* A comma and a space separate the start date-time from the end date-time. +* Square brackets enclose the start-end value pair. +* You can supply more than one complete start and end value pair. A comma and a + space separate each pair. + +For example, to close course discussions temporarily for a final exam period in +July, and then permanently on 9 August 2014, you enter: + +``["2014-07-22T08:00", "2014-07-25T18:00"], ["2014-08-09T00:00", "2099-08-09T00:00"]`` + +You enter these values between an additional pair of square brackets which are +supplied for you in Studio. + +============================================ +Define When Discussions Are Closed to Posts +============================================ + +To define when discussions are closed to new posts, and when they reopen: + +#. Open your course in Studio. + +#. Select **Settings** > **Advanced Settings**. + +#. Scroll down to the **Policy Key** for **discussion_blackouts**. + +#. In the **Policy Value** field, place your cursor between the supplied square + brackets. Use the required date format specification to enter the start and + end dates for each time period during which you want discussions to be + closed to new posts. + + When you enter the dates and times from the example above, the **Policy + Value** field looks like this: + + .. image:: ../Images/Discussion_blackout_unformatted.png + :alt: Policy value of [["2014-07-22T08:00", "2014-07-25T18:00"], + ["2014-08-09T00:00", "2099-08-09T00:00"]] + +5. Click **Save Changes**. + + Studio reformats your entry to add line feeds and indentation, like this: + + .. image:: ../Images/Discussion_blackout_formatted.png + :alt: Same policy value but with a line feed after each bracket and comma, + and an indent before each date \ No newline at end of file diff --git a/docs/en_us/data/README b/docs/en_us/data/README deleted file mode 100644 index ad940ee8f1..0000000000 --- a/docs/en_us/data/README +++ /dev/null @@ -1,3 +0,0 @@ -This directory contains some high level documentation for the code. - -WARNING: much of this is out-of-date. It still may be helpful, though. diff --git a/docs/en_us/data/source/conf.py b/docs/en_us/data/source/conf.py index f94142da74..18e89e3ac8 100644 --- a/docs/en_us/data/source/conf.py +++ b/docs/en_us/data/source/conf.py @@ -35,7 +35,7 @@ master_doc = 'index' # so a file named "default.css" will overwrite the builtin "default.css". #html_static_path.append('source/_static') -project = u'edX Data Documentation' +project = u'edX Research Guide' copyright = u'2014, edX' # The short X.Y version. diff --git a/docs/en_us/data/source/course_data_formats/conditional_module/conditional_module.rst b/docs/en_us/data/source/course_data_formats/conditional_module/conditional_module.rst deleted file mode 100644 index b5ec2063a8..0000000000 --- a/docs/en_us/data/source/course_data_formats/conditional_module/conditional_module.rst +++ /dev/null @@ -1,80 +0,0 @@ -********************************************** -Xml format of conditional module [xmodule] -********************************************** - -.. module:: conditional_module - -Format description -================== - -The main tag of Conditional module input is: - -.. code-block:: xml - - <conditional> ... </conditional> - -``conditional`` can include any number of any xmodule tags (``html``, ``video``, ``poll``, etc.) or ``show`` tags. - -conditional tag ---------------- - -The main container for a single instance of Conditional module. The following attributes can -be specified for this tag:: - - sources - location id of required modules, separated by ';' - [message | ""] - message for case, where one or more are not passed. Here you can use variable {link}, which generate link to required module. - - [submitted] - map to `is_submitted` module method. - (pressing RESET button makes this function to return False.) - - [correct] - map to `is_correct` module method - [attempted] - map to `is_attempted` module method - [poll_answer] - map to `poll_answer` module attribute - [voted] - map to `voted` module attribute - -show tag --------- - -Symlink to some set of xmodules. The following attributes can -be specified for this tag:: - - sources - location id of modules, separated by ';' - -Example -======= - -Examples of conditional depends on poll -------------------------------------------- - -.. code-block:: xml - - <conditional sources="i4x://MITx/0.000x/poll_question/first_real_poll_seq_with_reset" poll_answer="man" - message="{link} must be answered for this to become visible."> - <html> - <h2>You see this, cause your vote value for "First question" was "man"</h2> - </html> - </conditional> - -Examples of conditional depends on poll (use <show> tag) --------------------------------------------------------- - -.. code-block:: xml - - <conditional sources="i4x://MITx/0.000x/poll_question/first_real_poll_seq_with_reset" poll_answer="man" - message="{link} must be answered for this to become visible."> - <html> - <show sources="i4x://MITx/0.000x/problem/test_1; i4x://MITx/0.000x/Video/Avi_resources; i4x://MITx/0.000x/problem/test_1"/> - </html> - </conditional> - -Examples of conditional depends on problem -------------------------------------------- - -.. code-block:: xml - - <conditional sources="i4x://MITx/0.000x/problem/Conditional:lec27_Q1" attempted="True"> - <html display_name="HTML for attempted problem">You see this, cause "lec27_Q1" is attempted.</html> - </conditional> - <conditional sources="i4x://MITx/0.000x/problem/Conditional:lec27_Q1" attempted="False"> - <html display_name="HTML for not attempted problem">You see this, cause "lec27_Q1" is not attempted.</html> - </conditional> diff --git a/docs/en_us/data/source/course_data_formats/custom_response.rst b/docs/en_us/data/source/course_data_formats/custom_response.rst deleted file mode 100644 index b59e671f41..0000000000 --- a/docs/en_us/data/source/course_data_formats/custom_response.rst +++ /dev/null @@ -1,142 +0,0 @@ -#################################### -CustomResponse XML and Python Script -#################################### - -This document explains how to write a CustomResponse problem. CustomResponse -problems execute Python script to check student answers and provide hints. - -There are two general ways to create a CustomResponse problem: - - -***************** -Answer tag format -***************** -One format puts the Python code in an ``<answer>`` tag: - -.. code-block:: xml - - <problem> - <p>What is the sum of 2 and 3?</p> - - <customresponse expect="5"> - <textline math="1" /> - </customresponse> - - <answer> - # Python script goes here - </answer> - </problem> - - -The Python script interacts with these variables in the global context: - * ``answers``: An ordered list of answers the student provided. - For example, if the student answered ``6``, then ``answers[0]`` would - equal ``6``. - * ``expect``: The value of the ``expect`` attribute of ``<customresponse>`` - (if provided). - * ``correct``: An ordered list of strings indicating whether the - student answered the question correctly. Valid values are - ``"correct"``, ``"incorrect"``, and ``"unknown"``. You can set these - values in the script. - * ``messages``: An ordered list of message strings that will be displayed - beneath each input. You can use this to provide hints to users. - For example ``messages[0] = "The capital of California is Sacramento"`` - would display that message beneath the first input of the response. - * ``overall_message``: A string that will be displayed beneath the - entire problem. You can use this to provide a hint that applies - to the entire problem rather than a particular input. - -Example of a checking script: - -.. code-block:: python - - if answers[0] == expect: - correct[0] = 'correct' - overall_message = 'Good job!' - else: - correct[0] = 'incorrect' - messages[0] = 'This answer is incorrect' - overall_message = 'Please try again' - -**Important**: Python is picky about indentation. Within the ``<answer>`` tag, -you must begin your script with no indentation. - -***************** -Script tag format -***************** -The other way to create a CustomResponse is to put a "checking function" -in a ``<script>`` tag, then use the ``cfn`` attribute of the -``<customresponse>`` tag: - -.. code-block:: xml - - <problem> - <p>What is the sum of 2 and 3?</p> - - <customresponse cfn="check_func" expect="5"> - <textline math="1" /> - </customresponse> - - <script type="loncapa/python"> - def check_func(expect, ans): - # Python script goes here - </script> - </problem> - - -**Important**: Python is picky about indentation. Within the ``<script>`` tag, -the ``def check_func(expect, ans):`` line must have no indentation. - -The check function accepts two arguments: - * ``expect`` is the value of the ``expect`` attribute of ``<customresponse>`` - (if provided) - * ``answer`` is either: - - * The value of the answer the student provided, if there is only one input. - * An ordered list of answers the student provided, if there - are multiple inputs. - -There are several ways that the check function can indicate whether the student -succeeded. The check function can return any of the following: - - * ``True``: Indicates that the student answered correctly for all inputs. - * ``False``: Indicates that the student answered incorrectly. - All inputs will be marked incorrect. - * A dictionary of the form: ``{ 'ok': True, 'msg': 'Message' }`` - If the dictionary's value for ``ok`` is set to ``True``, all inputs are - marked correct; if it is set to ``False``, all inputs are marked incorrect. - The ``msg`` is displayed beneath all inputs, and it may contain - XHTML markup. - * A dictionary of the form - -.. code-block:: xml - - - { 'overall_message': 'Overall message', - 'input_list': [ - { 'ok': True, 'msg': 'Feedback for input 1'}, - { 'ok': False, 'msg': 'Feedback for input 2'}, - ... ] } - -The last form is useful for responses that contain multiple inputs. -It allows you to provide feedback for each input individually, -as well as a message that applies to the entire response. - -Example of a checking function: - -.. code-block:: python - - def check_func(expect, answer_given): - check1 = (int(answer_given[0]) == 1) - check2 = (int(answer_given[1]) == 2) - check3 = (int(answer_given[2]) == 3) - return {'overall_message': 'Overall message', - 'input_list': [ - { 'ok': check1, 'msg': 'Feedback 1'}, - { 'ok': check2, 'msg': 'Feedback 2'}, - { 'ok': check3, 'msg': 'Feedback 3'} ] } - -The function checks that the user entered ``1`` for the first input, -``2`` for the second input, and ``3`` for the third input. -It provides feedback messages for each individual input, as well -as a message displayed beneath the entire problem. diff --git a/docs/en_us/data/source/course_data_formats/formula_equation_input.rst b/docs/en_us/data/source/course_data_formats/formula_equation_input.rst deleted file mode 100644 index 8f91e8d2ce..0000000000 --- a/docs/en_us/data/source/course_data_formats/formula_equation_input.rst +++ /dev/null @@ -1,47 +0,0 @@ -Formula Equation Input -###################### - - Tag: ``<formulaequationinput />`` - -The formula equation input is a math input type used with Numerical and Formula -responses only. It is not to be used with Symoblic Response. It is comparable -to a ``<textline math="1"/>`` but with a different means to display the math. -It lets the platform validate the student's input as she types. - -This is achieved by periodically sending the typed expression and requesting -its preview from the LMS. It parses the expression (using the same parser as -the parser it uses to eventually evaluate the response for grading), and sends -back an OK'd copy. - -The basic appearance is that of a textbox with a preview box below it. The -student types in math (see note below for syntax), and a typeset preview -appears below it. Even complicated math expressions may be entered in. - -For more information about the syntax, look in the course author's -documentation, under Appendix E, the section about Numerical Responses. - -Format -****** - -The XML is rather simple, it is a ``<formulaequationinput />`` tag with an -optional ``size`` attribute, which defines the size (i.e. the width) of the -input box displayed to students for typing their math expression. Unlike -``<textline />``, there is no ``math`` attribute and adding such will have no -effect. - -To see an example of the input type in context: - -.. code-block:: xml - - <problem> - <p>What base is the decimal numeral system in?</p> - <numericalresponse answer="10"> - <formulaequationinput /> - </numericalresponse> - - <p>Write an expression for the product of R_1, R_2, and the inverse of R_3.</p> - <formularesponse type="ci" samples="R_1,R_2,R_3@1,2,3:3,4,5#10" answer="R_1*R_2/R_3"> - <responseparam type="tolerance" default="0.00001"/> - <formulaequationinput size="40" /> - </formularesponse> - </problem> diff --git a/docs/en_us/data/source/course_data_formats/poll_module/poll_module.rst b/docs/en_us/data/source/course_data_formats/poll_module/poll_module.rst deleted file mode 100644 index 9b16758877..0000000000 --- a/docs/en_us/data/source/course_data_formats/poll_module/poll_module.rst +++ /dev/null @@ -1,67 +0,0 @@ -********************************************** -Xml format of poll module [xmodule] -********************************************** - -.. module:: poll_module - -Format description -================== - -The main tag of Poll module input is: - -.. code-block:: xml - - <poll_question> ... </poll_question> - -``poll_question`` can include any number of the following tags: -any xml and ``answer`` tag. All inner xml, except for ``answer`` tags, we call "question". - -poll_question tag ------------------ - -Xmodule for creating poll functionality - voting system. The following attributes can -be specified for this tag:: - - name - Name of xmodule. - [display_name| AUTOGENERATE] - Display name of xmodule. When this attribute is not defined - display name autogenerate with some hash. - [reset | False] - Can reset/revote many time (value = True/False) - - -answer tag ----------- - -Define one of the possible answer for poll module. The following attributes can -be specified for this tag:: - - id - unique identifier (using to identify the different answers) - -Inner text - Display text for answer choice. - -Example -======= - -Examples of poll ----------------- - -.. code-block:: xml - - <poll_question name="second_question" display_name="Second question"> - <h3>Age</h3> - <p>How old are you?</p> - <answer id="less18">< 18</answer> - <answer id="10_25">from 10 to 25</answer> - <answer id="more25">> 25</answer> - </poll_question> - -Examples of poll with unable reset functionality ------------------------------------------------- - -.. code-block:: xml - - <poll_question name="first_question_with_reset" display_name="First question with reset" - reset="True"> - <h3>Your gender</h3> - <p>You are man or woman?</p> - <answer id="man">Man</answer> - <answer id="woman">Woman</answer> - </poll_question> \ No newline at end of file diff --git a/docs/en_us/data/source/course_data_formats/word_cloud/word_cloud.png b/docs/en_us/data/source/course_data_formats/word_cloud/word_cloud.png deleted file mode 100644 index 07b7292b5e..0000000000 Binary files a/docs/en_us/data/source/course_data_formats/word_cloud/word_cloud.png and /dev/null differ diff --git a/docs/en_us/data/source/course_data_formats/word_cloud/word_cloud.rst b/docs/en_us/data/source/course_data_formats/word_cloud/word_cloud.rst deleted file mode 100644 index 5c3d31e149..0000000000 --- a/docs/en_us/data/source/course_data_formats/word_cloud/word_cloud.rst +++ /dev/null @@ -1,59 +0,0 @@ -********************************************** -Xml format of "Word Cloud" module [xmodule] -********************************************** - -.. module:: word_cloud - -Format description -================== - -The main tag of Word Cloud module input is: - -.. code-block:: xml - - <word_cloud /> - -The following attributes can be specified for this tag:: - - [display_name| AUTOGENERATE] – Display name of xmodule. When this attribute is not defined - display name autogenerate with some hash. - [num_inputs| 5] – Number of inputs. - [num_top_words| 250] – Number of max words, which will be displayed. - [display_student_percents| True] – Display usage percents for each word on the same line together with words. - -.. note:: - - Percent is shown always when mouse over the word in cloud. - -.. note:: - - Possible answer for boolean type attributes: - True – "True", "true", "T", "t", "1" - False – "False", "false", "F", "f", "0" - -.. note:: - - If you want to use the same word cloud (the same storage of words), you must use the same display_name value. - - -Code Example -============ - -Examples of word_cloud without all attributes (all attributes get by default) ------------------------------------------------------------------------------ - -.. code-block:: xml - - <word_cloud /> - -Examples of poll with all attributes ------------------------------------- - -.. code-block:: xml - - <word_cloud display_name="cloud" num_inputs="10" num_top_words="100" /> - -Screenshots -=========== - -.. image:: word_cloud.png - :width: 50% diff --git a/docs/en_us/data/source/index.rst b/docs/en_us/data/source/index.rst index 8c5b1a2ac4..a24b84e884 100644 --- a/docs/en_us/data/source/index.rst +++ b/docs/en_us/data/source/index.rst @@ -1,54 +1,13 @@ -.. - Public facing docs for non-developers go here. Please do not add any Python - dependencies for code introspection here (we may temporarily host it some - place where those dependencies are cumbersome to build). +###################### +edX Research Guide +###################### -edX Data Documentation -====================== -The following documents are targeted at those who are working with various data formats consumed and produced by the edX platform -- primarily course authors and those who are conducting research on data in our system. - -* If you are a course author working with course XML, see :ref:`Course Data Formats`. - -* If you are a researcher working with data, see :ref:`Internal Data Formats`. - -Developer-oriented discussion of architecture and strictly internal APIs will be documented elsewhere. - -.. _Course Data Formats: - -Course Data Formats -------------------- -These are data formats written by people to specify course structure and content. Some of this is abstracted away if you are using the Studio authoring user interface. - -.. toctree:: - :maxdepth: 2 - - course_data_formats/course_xml.rst - course_data_formats/grading.rst - -Specific Problem Types -^^^^^^^^^^^^^^^^^^^^^^ -.. toctree:: - :maxdepth: 1 - - course_data_formats/drag_and_drop/drag_and_drop_input.rst - course_data_formats/graphical_slider_tool/graphical_slider_tool.rst - course_data_formats/poll_module/poll_module.rst - course_data_formats/lti_module/lti.rst - course_data_formats/conditional_module/conditional_module.rst - course_data_formats/word_cloud/word_cloud.rst - course_data_formats/custom_response.rst - course_data_formats/symbolic_response.rst - course_data_formats/formula_equation_input.rst - -.. _Internal Data Formats: - -Internal Data Formats ---------------------- -These documents describe how we store course structure, student state/progress, and events internally. Useful for developers or researchers who interact with our raw data exports. +This document is intended for researchers and data czars at edX partner institutions who use the edX data exports to gain insight into their courses and students. .. toctree:: :maxdepth: 2 + read_me.rst internal_data_formats/change_log.rst internal_data_formats/data_czar.rst internal_data_formats/sql_schema.rst @@ -56,8 +15,23 @@ These documents describe how we store course structure, student state/progress, internal_data_formats/wiki_data.rst internal_data_formats/tracking_logs.rst -Indices and tables -================== -* :ref:`search` +******************** +Course Data Formats +******************** + +The `Building and Running an edX Course <http://edx.readthedocs.org/projects/ca/en/latest/>`_ guide provides complete information on how to construct a course. + +The following sections of this document do not specifically pertain to researchers, but rather provide supplemental information on XML formats used to build an edX course. Over time, this information is being migrated to *Building and Running an edX Course*, as shown in the :ref:`Change Log`. + +.. toctree:: + :maxdepth: 2 + + course_data_formats/course_xml.rst + course_data_formats/grading.rst + course_data_formats/drag_and_drop/drag_and_drop_input.rst + course_data_formats/graphical_slider_tool/graphical_slider_tool.rst + course_data_formats/symbolic_response.rst + + diff --git a/docs/en_us/data/source/internal_data_formats/change_log.rst b/docs/en_us/data/source/internal_data_formats/change_log.rst index f2cd5a6dea..f6feb7635f 100644 --- a/docs/en_us/data/source/internal_data_formats/change_log.rst +++ b/docs/en_us/data/source/internal_data_formats/change_log.rst @@ -1,3 +1,4 @@ +.. _Change Log: ********** Change Log @@ -5,29 +6,42 @@ Change Log .. list-table:: - :widths: 15 75 + :widths: 10 70 :header-rows: 1 * - Date - Change - * - 25 Apr 14 + * - 05/0614 + - Added enrollment event types to the :ref:`Tracking Logs` chapter. + * - 05/05/14 + - Removed information on the Poll module. `Polls <http://edx.readthedocs.org/projects/ca/en/latest/exercises_tools/poll.html>`_ are now covered in the *Building and Running an edX Course* guide. + * - + - Removed information on the Word Cloud tool. The `Word Cloud tool <http://edx.readthedocs.org/projects/ca/en/latest/exercises_tools/word_cloud.html>`_ is now covered in the *Building and Running an edX Course* guide. + * - + - Removed information on CustomResponse XML and Python Script. See `Write-Your-Own-Grader Problem <http://edx.readthedocs.org/projects/ca/en/latest/exercises_tools/custom_python.html>`_ in the *Building and Running an edX Course* guide. + * - + - Removed information on Formula Equation Input. See `Create a Math Expression Input Problem <http://edx.readthedocs.org/projects/ca/en/latest/exercises_tools/math_expression_input.html>`_ in the *Building and Running an edX Course* guide. + * - 04/29/14 + - Corrected misstatement on how :ref:`Discussion Forums Data` is sent in + data packages. + * - 04/25/14 - Added new event types to the :ref:`Tracking Logs` chapter for interactions with PDF files. - * - 31 Mar 2014 + * - 03/31/14 - Added new fields for the server ``problem_check`` event type to the :ref:`Tracking Logs` chapter. * - - Reformatted the :ref:`Tracking Logs` chapter to improve readability. - * - 28 Mar 2014 + * - 03/28/14 - Added the :ref:'Data_Czar' chapter. - * - 24 Mar 2014 + * - 03/24/14 - Added the ``user_api_usercoursetag`` table to the :ref:`Student_Info` chapter and the ``assigned_user_to_partition`` and ``child_render`` event types to the :ref:`Tracking Logs` chapter. - * - 19 Mar 2014 + * - 03/19/14 - Provided alternative formatting for the examples in the :ref:`Discussion Forums Data` chapter. - * - 13 Mar 2014 + * - 03/13/14 - Updated the :ref:`Student_Info` chapter. - * - 24 Feb 14 + * - 02/24/14 - Added descriptions of new fields to the :ref:`Wiki_Data` chapter. - * - 21 Feb 2014 + * - 02/21/14 - Added descriptions of new fields to the :ref:`Discussion Forums Data` chapter. - * - 14 Feb 2014 + * - 02/14/14 - Added the ``seek_video`` and ``speed_change_video`` event types to the :ref:`Tracking Logs` chapter. diff --git a/docs/en_us/data/source/internal_data_formats/data_czar.rst b/docs/en_us/data/source/internal_data_formats/data_czar.rst index feb3eb5ad5..a36600d3e5 100644 --- a/docs/en_us/data/source/internal_data_formats/data_czar.rst +++ b/docs/en_us/data/source/internal_data_formats/data_czar.rst @@ -94,10 +94,10 @@ to set up a public/private key pair for GNU Privacy Guard (GNUPG). * When a data package is available, the data czar downloads it from S3 and decrypts it using the private key. -For detailed information on this procedure, see the *How Do I get my Research -Data Package?* article on the Open edX Analytics wiki_. +For detailed information on this procedure, see the `How Do I Get My Research +Data Package?`_ article on the Open edX Analytics wiki. -.. _wiki: https://edx-wiki.atlassian.net/wiki/pages/viewpage.action?pageId=36044863 +.. _How Do I Get My Research Data Package?: https://edx-wiki.atlassian.net/wiki/pages/viewpage.action?pageId=36044863 .. _Resources_Information: @@ -110,11 +110,11 @@ list_ called course-data. .. _list: http://groups.google.com/a/edx.org/forum/#!forum/course-data -EdX also hosts an **Open edX Analytics** wiki_ that is available to the +EdX also hosts an `Open edX Analytics wiki`_ that is available to the public. The wiki provides links to the engineering roadmap, information about operational issues, and release notes describing past releases. -.. _wiki: http://edx-wiki.atlassian.net/wiki/display/OA/Open+edX+Analytics+Home +.. _Open edX Analytics wiki: http://edx-wiki.atlassian.net/wiki/display/OA/Open+edX+Analytics+Home .. _Skills_Experience_Contributors: diff --git a/docs/en_us/data/source/internal_data_formats/discussion_data.rst b/docs/en_us/data/source/internal_data_formats/discussion_data.rst index 173cdaafe9..eea84076f6 100644 --- a/docs/en_us/data/source/internal_data_formats/discussion_data.rst +++ b/docs/en_us/data/source/internal_data_formats/discussion_data.rst @@ -22,12 +22,16 @@ A sample of the field/value pairs that are in the mongo file, and descriptions o Samples ********* -Two sample rows, or JSON documents, from a .mongo file of discussion data follow. The JSON documents are minified before they are added to the log file, so they appear in compact format. +Two sample rows, or JSON documents, from a ``.mongo`` file of discussion data +follow. ---------------------------------------- CommentThread Document Example ---------------------------------------- +The JSON documents that include discussion data are delivered in a compact, +machine-readable format that can be difficult to read at a glance. + .. code-block:: json { "_id" : { "$oid" : "50f1dd4ae05f6d2600000001" }, "_type" : "CommentThread", "anonymous" : @@ -42,7 +46,8 @@ CommentThread Document Example 1358134453862 }, "votes" : { "count" : 1, "down" : [], "down_count" : 0, "point" : 1, "up" : [ "48" ], "up_count" : 1 } } -If you use a JSON formatter to "pretty print" this document, a version that is more readable is produced. +If you use a JSON formatter to "pretty print" this document, a version that is +more readable is produced. .. code-block:: json diff --git a/docs/en_us/data/source/internal_data_formats/tracking_logs.rst b/docs/en_us/data/source/internal_data_formats/tracking_logs.rst index d371e6ada4..9549b05b15 100644 --- a/docs/en_us/data/source/internal_data_formats/tracking_logs.rst +++ b/docs/en_us/data/source/internal_data_formats/tracking_logs.rst @@ -19,7 +19,9 @@ The sections in this chapter describe: Sample Event ************************* -A sample event from an edX.log file follows. The JSON documents that include the event data are included in the log file as raw data, so they appear in this compact format. +A sample event from an edX.log file follows. The JSON documents that include +event data are delivered in a compact, machine-readable format that can be +difficult to read at a glance. .. code-block:: json @@ -137,49 +139,128 @@ If you use a JSON formatter to "pretty print" this event, a version that is more Common Fields ******************** -This section contains a table of the JSON fields that are common to the schema definitions of all events. +This section describes the JSON fields that are common to the schema definitions of all events. -+---------------------------+-------------------------------------------------------------+-------------+------------------------------------+ -| Field | Details | Type | Values/Format/Member Fields | -+===========================+=============================================================+=============+====================================+ -| ``agent`` | Browser agent string of the user who triggered the event. | string | | -+---------------------------+-------------------------------------------------------------+-------------+------------------------------------+ -| ``context`` | For all event types, identifies the course that generated | string/JSON | Contains these common member | -| | the event, the organization that lists the course, and the | | fields: | -| | individual who is performing the action. | | ``course_id`` | -| | | | ``org_id`` | -| | ``course_user_tags`` contains a dictionary with the key(s) | | ``user_id`` | -| | and value(s) from the ``user_api_usercoursetag`` table | | ``course_user_tags`` | -| | for the user. See :ref:`user_api_usercoursetag`. | | | -| | | | These fields are blank if values | -| | Also contains member fields that apply to specific event | | cannot be determined. | -| | types only: see the description for each event type. | | | -| | | | | -| | **History**: Added 23 Oct 2013; ``user_id`` added | | | -| | 6 Nov 2013. Other event fields may duplicate this data. | | | -| | ``course_user_tags`` added 12 Mar 2014. | | | -+---------------------------+-------------------------------------------------------------+-------------+------------------------------------+ -| ``event`` | Specifics of the triggered event. | string/JSON | | -+---------------------------+-------------------------------------------------------------+-------------+------------------------------------+ -| ``event_source`` | Specifies whether the triggered event originated in the | string | 'browser', 'server', 'task' | -| | browser or on the server. | | | -+---------------------------+-------------------------------------------------------------+-------------+------------------------------------+ -| ``event_type`` | The type of event triggered. Values depend on | string | For descriptions of member fields, | -| | ``event_source``. | | see the event type descriptions | -| | | | that follow. | -+---------------------------+-------------------------------------------------------------+-------------+------------------------------------+ -| ``ip`` | IP address of the user who triggered the event. | string | | -+---------------------------+-------------------------------------------------------------+-------------+------------------------------------+ -| ``page`` | Page user was visiting when the event was fired. | string | '$URL' | -+---------------------------+-------------------------------------------------------------+-------------+------------------------------------+ -| ``session`` | This key identifies the user's session. May be undefined. | string | 32 digits | -+---------------------------+-------------------------------------------------------------+-------------+------------------------------------+ -| ``time`` | Gives the UTC time at which the event was fired. | string | 'YYYY-MM-DDThh:mm:ss.xxxxxx' | -+---------------------------+-------------------------------------------------------------+-------------+------------------------------------+ -| ``username`` | The username of the user who caused the event to fire. This | string | | -| | string is empty for anonymous events (i.e., user not logged | | | -| | in). | | | -+---------------------------+-------------------------------------------------------------+-------------+------------------------------------+ +===================== +``agent`` Field +===================== + +**Type:** string + +**Details:** Browser agent string of the user who triggered the event. + +.. _context: + +=================== +``context`` Field +=================== + +**Type:** string/JSON + +**Details:** For all event types, this dict type field includes member fields +that identify the course that generated the event, the organization that lists +the course, and the individual who is performing the action. +``course_user_tags`` contains a dictionary with the key(s) and value(s) from the +``user_api_usercoursetag`` table for the user. See +:ref:`user_api_usercoursetag`. + +**Values/Format/Member Fields:** Contains these common member fields: + +* ``course_id`` +* ``org_id`` +* ``user_id`` +* ``course_user_tags`` + +These fields are blank if values cannot be determined. Also contains member +fields that apply to specific event types only: see the description for each +event type. + +**History**: Added 23 Oct 2013; ``user_id`` added 6 Nov 2013. Other event fields +may duplicate this data. ``course_user_tags`` added 12 Mar 2014. + +=================== +``event`` Field +=================== + +**Type:** string/JSON + +**Details:** For all event types, this dict type field includes member fields +that identify specifics of the triggered event. Different member fields are +supplied for different types of events: see the description for each event type. + +======================== +``event_source`` Field +======================== + +**Type:** string + +**Details:** Specifies whether the triggered event originated in the browser or +on the server. + +**Values/Format/Member Fields:** 'browser', 'server', or 'task' + +===================== +``event_type`` Field +===================== + +**Type:** string + +**Details:** The type of event triggered. Values depend on ``event_source``. + +=================== +``host`` Field +=================== + +**Type:** string + +**Details:** The site visited by the user, for example, courses.edx.org. + +=================== +``ip`` Field +=================== + +**Type:** string + +**Details:** IP address of the user who triggered the event. + +=================== +``page`` Field +=================== + +**Type:** string + +**Details:** Page user was visiting when the event was fired. + +**Values/Format/Member Fields:** '$URL' + +=================== +``session`` Field +=================== + +**Type:** string + +**Details:** This key identifies the user's session. May be undefined. + +**Values/Format/Member Fields:** 32 digits + +=================== +``time`` Field +=================== + +**Type:** string + +**Details:** Gives the UTC time at which the event was fired. + +**Values/Format/Member Fields:** 'YYYY-MM-DDThh:mm:ss.xxxxxx' + +=================== +``username`` Field +=================== + +**Type:** The username of the user who caused the event to fire. This string is +empty for anonymous events, such as when the user is not logged in. + +**Details:** string .. _Student_Event_Types: @@ -187,7 +268,9 @@ This section contains a table of the JSON fields that are common to the schema d Student Event Types **************************************** -The Student Event Type table lists the event types that are logged for interactions with the LMS outside the Instructor Dashboard. +This section lists the event types that are logged for interactions with the LMS outside the Instructor Dashboard. + +* :ref:`enrollment` * :ref:`navigational` @@ -201,7 +284,114 @@ The Student Event Type table lists the event types that are logged for interacti * :ref:`AB_Event_Types` -The descriptions that follow include what each event type represents, which component it originates from, and what ``event`` fields it contains. The ``event_source`` field from the "Common Fields" table above distinguishes between events that originate in the browser (in javascript) and events that originate on the server (during the processing of a request). +The descriptions that follow include what each event type represents, which +component it originates from, and what member fields the ``event`` and +``context`` dict fields contain. The value in the ``event_source`` field (see +the :ref:`common` section above) distinguishes between events that originate in +the browser (in JavaScript) and events that originate on the server (during the +processing of a request). + +.. _enrollment: + +========================= +Enrollment Event Types +========================= + +These event types are fired by the server in response to course enrollment +activities completed by a student. + +* ``edx.course.enrollment.activated`` is fired when a student enrolls in a + course. On edx.org, this is typically the result of a student clicking + **Register** for the course. + +* ``edx.course.enrollment.deactivated`` is fired when a student unenrolls from a + course. On edx.org, this is typically the result of a student clicking + **Unregister** for the course. + +In addition, actions by instructors and course staff members also generate +enrollment events. For the actions that members of the course team complete that +result in these events, see :ref:`instructor_enrollment`. + +**Event Source**: Server + +**History**: The enrollment event types were added on 03 Dec 2013. + +.. Alison: move other tables to this format, and identify these event and context fields as member fields. + +``event`` **Member Fields**: + +.. list-table:: + :widths: 15 15 60 + :header-rows: 1 + + * - Field + - Type + - Details + * - ``course_id`` + - string + - **History**: Maintained for backward compatibility. As of 23 Oct 2013, + replaced by the ``context`` ``course_id`` field. See the description of + the :ref:`context`. + * - ``user_id`` + - integer + - Identifies the user who was enrolled or unenrolled. + * - ``mode`` + - string + - 'audit', 'honor', 'verified' + * - ``name`` + - string + - Identifies the type of event: 'edx.course.enrollment.activated' or + 'edx.course.enrollment.deactivated'. **History**: Added 07 May 2014 to + replace the ``event`` ``event_type`` field. + * - ``session`` + - string + - The Django session ID, if available. Can be used to identify events for a + specific user within a session. **History**: Added 07 May 2014. + +``context`` **Member Fields**: + +.. list-table:: + :widths: 15 15 60 + :header-rows: 1 + + * - Field + - Type + - Details and Member Fields + * - ``path`` + - string + - The URL path that generated the event: '/change_enrollment'. + **History**: Added 07 May 2014. + +Example +-------- + +.. reviewers, is this example accurate wrt the new fields? + +.. code-block:: json + + { + "username": "AAAAAAAAAA", + "host": "courses.edx.org", + "event_source": "server", + "event_type": "edx.course.enrollment.activated", + "context": { + "course_id": "edX\/DemoX\/Demo_Course", + "org_id": "edX", + "path": "/change_enrollment", + "user_id": 9999999 + }, + "time": "2014-01-26T00:28:28.388782+00:00", + "ip": "NN.NN.NNN.NNN", + "event": { + "course_id": "edX\/DemoX\/Demo_Course", + "user_id": 9999999, + "mode": "honor" + "name": "edx.course.enrollment.activated", + "session": a14j3ifhskngw0gfgn230g + }, + "agent": "Mozilla\/5.0 (Windows NT 6.1; WOW64; Trident\/7.0; rv:11.0) like Gecko", + "page": null + } .. _navigational: @@ -223,7 +413,7 @@ These event types are fired when a user selects a navigational control. **Event Source**: Browser -``event`` **Fields**: These navigational event types all have the same fields. +``event`` **Fields**: The navigational event types listed above have the same fields. +--------------------+---------------+---------------------------------------------------------------------+ | Field | Type | Details | @@ -239,11 +429,10 @@ These event types are fired when a user selects a navigational control. | ``id`` | integer | The edX ID of the sequence. | +--------------------+---------------+---------------------------------------------------------------------+ ---------------- ``page_close`` --------------- -In addition, the ``page_close`` event type originates from within the Logger itself. +An additional event type, ``page_close``, originates from within the Logger itself. **Component**: Logger @@ -263,7 +452,6 @@ These event types can fire when a user works with a video. **Event Source**: Browser ---------------------------------- ``pause_video``, ``play_video`` --------------------------------- @@ -273,22 +461,20 @@ These event types can fire when a user works with a video. ``event`` **Fields**: These event types have the same ``event`` fields. -+---------------------+---------------+---------------------------------------------------------------------+ -| Field | Type | Details | -+=====================+===============+=====================================================================+ -| ``id`` | string | EdX ID of the video being watched (for example, | -| | | i4x-HarvardX-PH207x-video-Simple_Random_Sample). | -+---------------------+---------------+---------------------------------------------------------------------+ -| ``code`` | string | YouTube ID of the video being watched (for | -| | | example, FU3fCJNs94Y). | -+---------------------+---------------+---------------------------------------------------------------------+ -| ``currentTime`` | float | Time the video was played at, in seconds. | -+---------------------+---------------+---------------------------------------------------------------------+ -| ``speed`` | string | Video speed in use (i.e., 0.75, 1.0, 1.25, 1.50). | -| | | | -+---------------------+---------------+---------------------------------------------------------------------+ ++-----------------+--------+----------------------------------------------------+ +| Field | Type | Details | ++=================+========+====================================================+ +| ``id`` | string | EdX ID of the video being watched (for example, | +| | | i4x-HarvardX-PH207x-video-Simple_Random_Sample). | ++-----------------+--------+----------------------------------------------------+ +| ``code`` | string | YouTube ID of the video being watched (for | +| | | example, FU3fCJNs94Y). | ++-----------------+--------+----------------------------------------------------+ +| ``currentTime`` | float | Time the video was played at, in seconds. | ++-----------------+--------+----------------------------------------------------+ +| ``speed`` | string | Video speed in use: '0.75', '1.0', '1.25', '1.50'. | ++-----------------+--------+----------------------------------------------------+ ------------------ ``seek_video`` ----------------- @@ -304,7 +490,6 @@ The ``seek_video`` event fires when the user clicks the playback bar or transcri | ``type`` | | The navigational method used to change position within the video. | +---------------------+---------------+---------------------------------------------------------------------+ ------------------------- ``speed_change_video`` ------------------------ @@ -333,7 +518,6 @@ The ``speed_change_video`` event fires when a user selects a different playing s Textbook Interaction Event Types ================================= ----------- ``book`` ---------- @@ -380,7 +564,6 @@ PNG Viewer. | ``new`` | integer | Destination page number. | +-------------+---------+----------------------------------------------------------------------------------+ ------------------------------------- ``textbook.pdf.thumbnails.toggled`` ------------------------------------ @@ -405,7 +588,6 @@ on the icon to show or hide page thumbnails. | ``page`` | integer | The number of the page that is open when the user clicks this icon. | +-------------+---------+---------------------------------------------------------------------+ ------------------------------------- ``textbook.pdf.thumbnail.navigated`` ------------------------------------ @@ -433,7 +615,6 @@ on a thumbnail image to navigate to a page. | | | thumbnail. For example, Page 2. | +---------------------+---------+-------------------------------------------------+ ------------------------------------- ``textbook.pdf.outline.toggled`` ------------------------------------ @@ -458,7 +639,6 @@ outline icon to show or hide a list of the book's chapters. | ``page`` | integer | The number of the page that is open when the user clicks this link. | +-------------+---------+---------------------------------------------------------------------+ ------------------------------------- ``textbook.pdf.chapter.navigated`` ------------------------------------ @@ -484,7 +664,6 @@ a link in the outline to navigate to a chapter. | | | outline link. | +-------------------+---------+-------------------------------------------------+ ------------------------------------- ``textbook.pdf.page.navigated`` ------------------------------------ @@ -509,7 +688,6 @@ a page number. | ``page`` | integer | The destination page number entered by the user. | +-------------+---------+--------------------------------------------------+ --------------------------------------- ``textbook.pdf.zoom.buttons.changed`` -------------------------------------- @@ -536,7 +714,6 @@ either the Zoom In or Zoom Out icon. | ``page`` | integer | The number of the page that is open when the user clicks the icon. | +---------------+---------+--------------------------------------------------------------------+ ------------------------------------- ``textbook.pdf.zoom.menu.changed`` ------------------------------------ @@ -563,7 +740,6 @@ magnification setting. | ``page`` | integer | The number of the page that is open when the user selects this value. | +-------------+---------+--------------------------------------------------------------------------------+ ------------------------------------- ``textbook.pdf.display.scaled`` ------------------------------------ @@ -591,7 +767,6 @@ magnification setting from the zoom menu or resizes the browser window. | ``page`` | integer | The number of the page that is open when the scaling takes place. | +-------------+---------+-------------------------------------------------------------------+ ------------------------------------- ``textbook.pdf.display.scrolled`` ------------------------------------ @@ -618,7 +793,6 @@ page changes while a user scrolls up or down. | ``direction`` | string | 'up', 'down' | +---------------+---------+---------------------------------------------------------------------+ ------------------------------------- ``textbook.pdf.search.executed`` ------------------------------------ @@ -657,7 +831,6 @@ field within 500ms of each other. | ``page`` | integer | The number of the page that is open when the search takes place. | +-------------------+---------+------------------------------------------------------------------+ ---------------------------------------------- ``textbook.pdf.search.navigatednext`` --------------------------------------------- @@ -696,7 +869,6 @@ on the Find Next or Find Previous icons for an entered search string. | ``page`` | integer | The number of the page that is open when the search takes place. | +-------------------+---------+------------------------------------------------------------------+ ---------------------------------------------- ``textbook.pdf.search.highlight.toggled`` --------------------------------------------- @@ -732,7 +904,6 @@ selects or clears the **Highlight All** option for a search. | ``page`` | integer | The number of the page that is open when the search takes place. | +-------------------+---------+------------------------------------------------------------------+ ------------------------------------------------------- ``textbook.pdf.search.casesensitivity.toggled`` ------------------------------------------------------ @@ -774,7 +945,6 @@ user selects or clears the **Match Case** option for a search. Problem Interaction Event Types ================================= ----------------------------- ``problem_check`` (Browser) ---------------------------- @@ -786,7 +956,6 @@ Problem Interaction Event Types ``event`` **Fields**: The ``event`` field contains the values of all input fields from the problem being checked, styled as GET parameters. ------------------------------ ``problem_check`` (Server) ----------------------------- @@ -894,7 +1063,6 @@ The server fires ``problem_check`` events when a problem is successfully checked | ``success`` | string | 'correct', 'incorrect' | +---------------------+---------------+---------------------------------------------------------------------+ ------------------------------ ``problem_check_fail`` ----------------------------- @@ -920,7 +1088,6 @@ The server fires ``problem_check_fail`` events when a problem cannot be checked | ``failure`` | string | 'closed', 'unreset' | +---------------------+---------------+---------------------------------------------------------------------+ ------------------------------ ``problem_reset`` ----------------------------- @@ -932,7 +1099,6 @@ The server fires ``problem_check_fail`` events when a problem cannot be checked ``event`` **Fields**: None ------------------------------ ``problem_rescore`` ----------------------------- @@ -966,7 +1132,6 @@ The server fires ``problem_rescore`` events when a problem is successfully resco | ``attempts`` | integer | | +---------------------+---------------+---------------------------------------------------------------------+ ------------------------------ ``problem_rescore_fail`` ----------------------------- @@ -988,7 +1153,6 @@ The server fires ``problem_rescore_fail`` events when a problem cannot be succes | ``failure`` | string | 'unsupported', 'unanswered', 'input_error', 'unexpected' | +---------------------+---------------+---------------------------------------------------------------------+ ------------------------------ ``problem_save`` ----------------------------- @@ -1000,7 +1164,6 @@ The server fires ``problem_rescore_fail`` events when a problem cannot be succes ``event`` **Fields**: None ------------------------------ ``problem_show`` ----------------------------- @@ -1019,7 +1182,6 @@ The server fires ``problem_rescore_fail`` events when a problem cannot be succes | | | i4x://MITx/6.00x/problem/L15:L15_Problem_2). | +---------------------+---------------+---------------------------------------------------------------------+ ------------------------------------------------- ``reset_problem`` ------------------------------------------------ @@ -1041,7 +1203,6 @@ The server fires ``problem_rescore_fail`` events when a problem cannot be succes | ``new_state`` | string / JSON | New problem state. | +---------------------+---------------+---------------------------------------------------------------------+ ------------------------------------------------- ``reset_problem_fail`` ------------------------------------------------ @@ -1063,7 +1224,6 @@ The server fires ``problem_rescore_fail`` events when a problem cannot be succes | ``failure`` | string | 'closed', 'not_done' | +---------------------+---------------+---------------------------------------------------------------------+ ------------------------------------------------- ``show_answer`` ------------------------------------------------ @@ -1085,7 +1245,6 @@ Server-side event which displays the answer to a problem. | ``problem_id`` | string | EdX ID of the problem being shown. | +---------------------+---------------+---------------------------------------------------------------------+ ------------------------------------------------- ``save_problem_fail`` ------------------------------------------------ @@ -1109,7 +1268,6 @@ Server-side event which displays the answer to a problem. | ``answers`` | dict | | +---------------------+---------------+---------------------------------------------------------------------+ ------------------------------------------------- ``save_problem_success`` ------------------------------------------------ @@ -1137,7 +1295,6 @@ Server-side event which displays the answer to a problem. Open Response Assessment Event Types ====================================== ---------------------------------------------------------------------------- ``oe_hide_question`` and ``oe_show_question`` --------------------------------------------------------------------------- @@ -1178,7 +1335,6 @@ The ``oe_hide_question`` and ``oe_show_question`` event types fire when the user | ``category`` | integer | Rubric category selected. | +-----------------------------------+-------------------------------+---------------------+-----------------+ ------------------------------------------------------------------- ``oe_show_full_feedback`` and ``oe_show_respond_to_feedback`` ------------------------------------------------------------------ @@ -1188,7 +1344,7 @@ The ``oe_hide_question`` and ``oe_show_question`` event types fire when the user ``event`` **Fields**: None. --------------------------------------------- + ``oe_feedback_response_selected`` -------------------------------------------- @@ -1204,7 +1360,7 @@ The ``oe_hide_question`` and ``oe_show_question`` event types fire when the user | ``value`` | integer | Value selected in the feedback response form. | +---------------------+---------------+---------------------------------------------------------------------+ ---------------------------------------------------------------------- + ``peer_grading_hide_question`` and ``peer_grading_show_question`` --------------------------------------------------------------------- @@ -1224,7 +1380,7 @@ The ``peer_grading_hide_question`` and ``peer_grading_show_question`` event type | ``location`` | string | The location of the question whose prompt is being shown or hidden. | +---------------------+---------------+---------------------------------------------------------------------+ ------------------------------------------------------------------------ + ``staff_grading_hide_question`` and ``staff_grading_show_question`` ----------------------------------------------------------------------- @@ -1259,7 +1415,6 @@ The event types that follow apply to modules that are set up to randomly assign **History**: These event types were added on 12 Mar 2014. ----------------------------------- ``assigned_user_to_partition`` ---------------------------------- @@ -1286,7 +1441,6 @@ When a student views a module that is set up to test different child modules, th | ``partition_name`` | string | Name of the partition. | +---------------------+---------------+---------------------------------------------------------------------+ ----------------------------------- ``child_render`` ---------------------------------- @@ -1312,7 +1466,8 @@ When a student views a module that is set up to test different content using chi Instructor Event Types ************************* -The Instructor Event Type table lists the event types logged for course team interaction with the Instructor Dashboard in the LMS. +The Instructor Event Type table lists the event types logged for course team +interaction with the Instructor Dashboard in the LMS. .. need a description for each of these @@ -1382,3 +1537,29 @@ The Instructor Event Type table lists the event types logged for course team int | | | +---------------------+---------------+ | | | | ``event`` | string | +----------------------------------------+----------------------+-----------------+---------------------+---------------+ + +.. _instructor_enrollment: + +============================= +Instructor Enrollment Events +============================= + +In addition to the enrollment events that are generated when students +enroll in or unenroll from a course, actions by instructors and course staff +members also generate enrollment events. + +* When a course author creates a course, his or her user account is enrolled in + the course and the server fires an ``edx.course.enrollment.activated`` event. + +* When a user with the Instructor or Course Staff role enrolls in a course, the + server fires ``edx.course.enrollment.activated``. The server fires + ``edx.course.enrollment.deactivated`` events when these users unenroll from a + course. + +* When a user with the Instructor or Course Staff role uses the **Batch + Enrollment** feature to enroll students or other staff members in a course, + the server fires an ``edx.course.enrollment.activated`` event for each + enrollment. When this feature is used to unenroll students from a course, the + server fires a ``edx.course.enrollment.deactivated`` for each unenrollment. + +For details about the enrollment events, see :ref:`enrollment`. diff --git a/docs/en_us/data/source/read_me.rst b/docs/en_us/data/source/read_me.rst new file mode 100644 index 0000000000..417e920b5f --- /dev/null +++ b/docs/en_us/data/source/read_me.rst @@ -0,0 +1,19 @@ +******* +Read Me +******* + +The *edX Research Guide* is created using RST_ files and Sphinx_. You, the +user community, can help update and revise this documentation project on +GitHub:: + + https://github.com/edx/edx-platform/tree/master/docs/course_authors/source + +To suggest a revision, fork the project, make changes in your fork, and submit +a pull request back to the original project: this is known as the `GitHub Flow`_. +All pull requests need approval from edX. For more information, contact edX at `docs@edx.org`_. + +.. _docs@edx.org: docs@edx.org +.. _Sphinx: http://sphinx-doc.org/ +.. _LaTeX: http://www.latex-project.org/ +.. _`GitHub Flow`: https://github.com/blog/1557-github-flow-in-the-browser +.. _RST: http://docutils.sourceforge.net/rst.html \ No newline at end of file diff --git a/docs/en_us/developers/source/analytics.rst b/docs/en_us/developers/source/analytics.rst new file mode 100644 index 0000000000..865c9102bd --- /dev/null +++ b/docs/en_us/developers/source/analytics.rst @@ -0,0 +1,103 @@ +Analytics +========= + +The edX LMS and Studio are instrumented to enable tracking of metrics and events of interest. These data can be used for educational research, decision support, and operational monitoring. + +The primary mechanism for tracking events is the `Event Tracking`_ API. It should be used for the vast majority of cases. + +Event Tracking +-------------- + +The `event-tracking`_ library aims to provide a simple API for tracking point-in-time events. The `event-tracking documentation`_ summarizes the features and primary use cases of the library as well as the current and future design intent. + +Emitting Events +~~~~~~~~~~~~~~~ + +Emitting from server-side python code:: + + from eventtracking import tracker + tracker.emit('some.event.name', {'foo': 'bar'}) + +Emitting from client-side coffee script:: + + Logger.log 'some.event.name', 'foo': 'bar' + +.. note:: + The client-side API uses the deprecated ``track`` djangoapp instead of the event-tracking library. Eventually event-tracking will publish a client-side API of its own and that should be used instead of the ``track`` based solution. + +Naming Events +>>>>>>>>>>>>> + +Event names are intended to be formatted as `.` separated strings and help processing of related events. The structure is intended to be `namespace.object.action`. The namespace is intended to be a `.` separated string that helps identify the source of events and prevent events with similar or identical objects and actions from being confused with one another. The object is intended to be a noun describing the object that was acted on. The action is intended to be a past tense verb describing what happened. + +Examples: + + * ``edx.course.enrollment.activated`` + * Namespace: ``edx`` + * Object: ``course.enrollment`` + * Action: ``activated`` + +Choosing Events to Emit +>>>>>>>>>>>>>>>>>>>>>>> + +Consider emitting events to capture user intent. These will typically be emitted on the client side when a user +interacts with the user interface in some way. + +Consider also emitting events when models change. Most models are not append-only and it is frequently the case that an +analyst would want to see the value of a particular field at a particular moment in time. Given that many fields are +overwritten, that information is lost unless an event is emitted when the model is changed. + +Sensitive Information +>>>>>>>>>>>>>>>>>>>>> + +By default, event information is written to an unencrypted file on disk. Therefore, do not include clear text passwords, credit card numbers and other similarly sensitive information. + + +Size +>>>> + +A cursory effort to regulate the size of the event is appreciated. If an event is too large, it may be omitted from the event stream. However, do not sacrifice the clarity of an event in an attempt to minimize size. It is much more important that the event is clear. + +Request Context Middleware +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The platform includes a middleware class that enriches all events emitted during the processing of a given request with details about the request that greatly simplify downstream processing. This is called the ``TrackMiddleware`` and can be found in ``edx-platform/common/djangoapps/track/middleware.py``. + +Legacy Application Event Processor +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +In order to support legacy analysis applications, the platform emits standard events using ``eventtracking.tracker.emit()``. However, it uses a custom event processor which modifies the event before saving it to ensure that the event can be parsed by legacy systems. Specifically, it replicates some information so that it is accessible in exactly the same way as it was before. This state is intended to be temporary until all existing legacy systems can be altered to use the new field locations. + + +Other Tracking Systems +---------------------- + +The following tracking systems are currently used for specialized analytics. There is some redundancy with event-tracking that is undesirable. The event-tracking library could be extended to support some of these systems, allowing for a single API to be used while still transmitting data to each of these service providers. This would reduce discrepancies between the measurements made by the various systems and significantly clarify the instrumentation. + +Data Dog +~~~~~~~~ + +Data dog is used primarily for real-time operational monitoring of a running edX platform server. It supports rapid display and monitoring of various metrics within the platform such as enrollments, user creation and answers to problems. + +edX platform is instrumented to send data to `data dog`_ using the standard `dogapi`_ python package. If ``lms.auth.json`` contains a ``DATADOG_API`` key whose value is a valid data dog API key, then the edX platform will transmit a variety of metrics to data dog. Running ``git grep dog_stats_api`` will give a pretty good overview of the usage of data dog to track operational metrics. + +Segment.IO +~~~~~~~~~~ + +A selection of events can be transmitted to segment.io in order to take advantage of a wide variety of analytics-related third party services such as Mixpanel and Chartbeat. It is enabled in the LMS if the ``SEGMENT_IO_LMS`` feature flag is enabled and the ``SEGMENT_IO_LMS_KEY`` key is set to a valid segment.io API key in the ``lms.auth.json`` file. + +Google Analytics +~~~~~~~~~~~~~~~~ + +Google analytics tracks all LMS page views. It provides several useful metrics such as common referrers and search terms that users used to find the edX web site. + + +Deprecated APIs +--------------- + +The ``track`` djangoapp contains a deprecated mechanism for emitting events. Direct usage of ``server_track`` is deprecated and should be avoided in new code. Old calls to ``server_track`` should be replaced with calls to ``tracker.emit()``. The celery task-based event emission and client-side event handling do not currently have a suitable alternative approach, so they continue to be supported. + +.. _event-tracking: https://github.com/edx/event-tracking +.. _event-tracking documentation: http://event-tracking.readthedocs.org/en/latest/overview.html#event-tracking +.. _data dog: http://www.datadoghq.com/ +.. _dogapi: http://pydoc.datadoghq.com/en/latest/ diff --git a/docs/en_us/developers/source/i18n_translators_guide.rst b/docs/en_us/developers/source/i18n_translators_guide.rst index a5080a0790..b655b89a7d 100644 --- a/docs/en_us/developers/source/i18n_translators_guide.rst +++ b/docs/en_us/developers/source/i18n_translators_guide.rst @@ -18,6 +18,9 @@ For information on the Transifex process, see the following sections: * `Getting Started with Transifex`_ * `Guidelines for Translators`_ +See also documentation on +`public translation sandboxes <public_sandboxes.rst#language-sandboxes>`_. + Getting Started with Transifex ****************************** diff --git a/docs/en_us/developers/source/index.rst b/docs/en_us/developers/source/index.rst index 68d3cb9e7a..a2ef6f6b23 100644 --- a/docs/en_us/developers/source/index.rst +++ b/docs/en_us/developers/source/index.rst @@ -17,7 +17,12 @@ Contents: change_log overview.rst extending_platform/index + xblocks.rst + pavelib.rst + public_sandboxes.rst + analytics.rst process/index + testing/index APIs ----- @@ -37,8 +42,6 @@ Internationalization i18n.rst i18n_translators_guide.rst - pavelib.rst - xblocks.rst Indices and tables ================== diff --git a/docs/en_us/developers/source/process/contributor.rst b/docs/en_us/developers/source/process/contributor.rst index 55d3031670..271dd8215d 100644 --- a/docs/en_us/developers/source/process/contributor.rst +++ b/docs/en_us/developers/source/process/contributor.rst @@ -18,7 +18,7 @@ and effort making a pull request. It’s also sometimes useful to submit a pull request even before the code is working properly, to make it easier to collect early feedback. To indicate to others that your pull request is not yet in a functional state, just prefix the -pull request title with "WIP:" (which stands for Work In Progress). +pull request title with "(WIP)" (which stands for Work In Progress). Once you’re ready to submit your changes in a pull request, check the following list of requirements to be sure that your pull request is ready to be reviewed: @@ -95,5 +95,17 @@ if we do reject your pull request, we will explain why we aren’t taking it, an try to suggest other ways that you can accomplish the same result in a way that we will accept. +Further Information +------------------- +For futher information on the pull request requirements, please see the following +links: + +* :doc:`../testing` +* :doc:`../testing/jenkins` +* :doc:`../testing/code-coverage` +* :doc:`../testing/code-quality` +* `Python Guidelines <https://github.com/edx/edx-platform/wiki/Python-Guidelines>`_ +* `Javascript Guidelines <https://github.com/edx/edx-platform/wiki/Javascript-Guidelines>`_ + .. _contributor's agreement with edX: http://code.edx.org/individual-contributor-agreement.pdf .. _compatible licenses: https://github.com/edx/edx-platform/wiki/Licensing diff --git a/docs/en_us/developers/source/process/overview.rst b/docs/en_us/developers/source/process/overview.rst index b4fac713c2..1f22de3676 100644 --- a/docs/en_us/developers/source/process/overview.rst +++ b/docs/en_us/developers/source/process/overview.rst @@ -18,8 +18,13 @@ and other contributors can expect from each other. The goals are: Roles ----- +People play different roles in the pull-request review process. Each role has +different jobs and responsibilities: + :doc:`core-committer` - Can commit changes to an Open edX repository. Core committers are responsible for the quality of the code, and for supporting the code in the future. Core committers are also developers in their own right. + Can commit changes to an Open edX repository. Core committers are + responsible for the quality of the code, and for supporting the code in the + future. Core committers are also developers in their own right. :doc:`product-owner` Prioritizes the work of core committers. @@ -50,18 +55,21 @@ request: include a detailed description, keep the code clear and readable, make sure the tests pass, be responsive to code review comments. Small pull requests are easier to review than large pull requests, so split up your changes into several small pull requests when possible -- -it will make everything go faster. +it will make everything go faster. See the full :doc:`contributor guidelines <contributor>` +for details of what to do and what to expect. If you are a :doc:`product owner <product-owner>`, treat pull requests from contributors like feature requests from a customer. Keep the lines of communication open -- if there are delays or unexpected problems, add a comment to the pull request informing the author of the pull request of what’s going on. No one likes to feel like they’re being ignored! +More details are in the :doc:`product owner guidelines <product-owner>`. If you are a :doc:`core committer <core-committer>`, allocate some time in every two-week sprint to review pull requests from other contributors. The community managers will make sure that these pull requests meet a basic standard for quality before asking you spend time reviewing them. +More details are in the :doc:`core committer guidelines <code-committer>`. Feel free to read the other documentation specific to each individual role in the process, but you don’t need to read everything to get started! If you're not diff --git a/docs/en_us/developers/source/public_sandboxes.rst b/docs/en_us/developers/source/public_sandboxes.rst new file mode 100644 index 0000000000..40e87154eb --- /dev/null +++ b/docs/en_us/developers/source/public_sandboxes.rst @@ -0,0 +1,160 @@ +#################### +edX Public Sandboxes +#################### + +EdX maintains a set of publicly-available sandboxes that allow contributors +to interact with the software without having to set up a local development +environment. + +* `edx.org Sandbox`_ for those looking to try out the software powering edx.org. + +* `Language Sandboxes`_ for contributors helping to translate Open edX into + various languages, who have a need to see translations "in context" - that is, + in use on an actual website. + + +edx.org Sandbox +*************** +This sandbox is intended for those looking to try out the software powering +`edx.org <www.edx.org>`_. + +The sandbox provides staff- and student-level access to a copy of the current +version of the edx.org website. This sandbox does not allow access to Studio, the +course-authoring system. + +Log in by visiting the following URL: + +* `https://www.sandbox.edx.org/ <https://www.sandbox.edx.org/>`_ + +You can log in to a staff account using the following credentials: + +* username: staff@example.com +* password: edx + +You can log in to a student account using one the following credentials. +These user accounts represent students enrolled in the demo course with an +audit, honor code, or verified certificate, respectively: + +* username: audit@example.com / honor@example.com / verified@example.com +* password: edx + +Language Sandboxes +****************** + +These sandboxes are intended for translators who have a need to see +translations "in context" - that is, in use on an actual website. + +On edx.org, we only pull down reviewed translations from Transifex. See the +`translation guidelines <https://github.com/edx/edx-platform/blob/master/docs/en_us/developers/source/i18n_translators_guide.rst#joining-a-review-team>`_ +for more details. + +To help you review and test, these sandboxes present *all* translations, not +just reviewed translations. This means that you may encounter broken pages as +you navigate the website. If this happens, it is probably because some of the +translated strings in your language have errors such as missing HTML tags or +altered {placeholders}. Go through your translations to find and correct these +types of translation errors. Use +`this guide <https://github.com/edx/edx-platform/blob/master/docs/en_us/developers/source/i18n_translators_guide.rst#guidelines-for-translators>`_ +to review how to produce non-broken translations. + +Visiting the Sandboxes +====================== +There are two language sandboxes, one for right-to-left, aka "RTL", languages +(Arabic, Farsi, Hebrew, and Urdu) and a second one for left-to-right, aka "LTR", +languages. Right now, RTL and LTR cannot be supported on the same installation, +because the CSS needs to be compiled separately (fixing this issue is a task on our +backlog!). + +Note: This is our first deployment of our alpha version of RTL language support! If +you have any comments or find any visual bugs, please let us know by posting on the +`openedx-translation <https://groups.google.com/forum/#!forum/openedx-translation>`_ +mailing list. + +LTR and RTL sandboxes are available for both the LMS, or learning managment system (the part +of the website that students see) and Studio, the course authoring platform. +You can access the LMS at: + +* LTR Sandbox `http://translation-ltr.m.sandbox.edx.org/ <http://translation-ltr.m.sandbox.edx.org/>`_ + +* RTL Sandbox `http://translation-rtl.m.sandbox.edx.org/ <http://translation-rtl.m.sandbox.edx.org/>`_ + +And you can access Studio at: + +* LTR Sandbox `http://studio.translation-ltr.m.sandbox.edx.org/ <http://studio.translation-ltr.m.sandbox.edx.org/>`_ + +* RTL Sandbox `http://studio.translation-rtl.m.sandbox.edx.org/ <http://studio.translation-rtl.m.sandbox.edx.org/>`_ + +To access the sandbox servers, you must supply the following username and password: + +* username: edx +* password: translation + +Logging In To Sandbox Accounts +============================== +To log in to the sandbox for a language, you supply the language code in the +username as follows: + +* username: LANGUAGE_CODE@example.com +* password: edx + +So if you are working on Chinese (China), you'll log in with these credentials: + +* username: zh_CN@example.com +* password: edx + +This user account has Course Staff privileges so that you can test Studio and +instructor-specific pages in the LMS. + +You can also make new student-level user accounts, which is useful for verifying +translations within the registration flow. + +Feel free to test in any way that you want in these sandboxes. Particularly, you are +encourage to make new courses, as well as add and delete course content. The sandboxes +can be reset if anything breaks, and they are completely disconnected from the +production version of the edx.org website. + + +Caveats and Warnings +==================== +#. These sandboxes will be updated with new translations and the newest version + of the edx-platform code about once per week. + +#. We recommend users utilize Chrome or Firefox when using the edX courseware. + +#. When you test, make sure that your browser preference is set to the language + you want to test. When you are logged in to the LMS, you can use the + language preference widget on the student dashboard page to set or change + your language. However, when you are viewing Studio, or if you are not yet + logged in to the LMS, the site uses your browser preference to determine + what language to display. See `this page on changing your browser's language + <http://www.wikihow.com/Change-Your-Browser's-Language>`_ if you need help. + +#. To see an untranslated edX instance in English, which can be helpful to + compare to the translated instance, switch your language to English, or + visit the `edx.org Sandbox`_. + +#. At the moment, the site does not properly work for languages with an ``@`` + symbol in the language code, so for now, those languages cannot use the + sandbox. + +#. If you have a copy of the edx-platform code, you can generate a list of broken + translations in your language by first pulling down the latest translation files:: + + tx pull -l LANGUAGE_CODE + + Replace ``LANGUAGE_CODE`` with your code, for example ``zh_CN``. + See `this page for instructions on how to configure Transifex <https://github.com/edx/edx-platform/wiki/Internationalization-and-localization>`_. + + Next, run the commands:: + + rake i18n:generate + python i18n/verify.py + + This will generate reports of broken translations in your language. This will not, however, + catch HTML tags that are out of order (ex. ``</b> <b>`` instead of ``<b> </b>``). + + +We hope you find these sandboxes helpful. If you have any questions, comments, or +concerns, please give us feedback by posting on the +`openedx-translation <https://groups.google.com/forum/#!forum/openedx-translation>`_ +mailing list. We'd be happy to hear about any improvements you think we could make! diff --git a/docs/en_us/developers/source/testing/code-coverage.rst b/docs/en_us/developers/source/testing/code-coverage.rst new file mode 100644 index 0000000000..7f3f88e7a7 --- /dev/null +++ b/docs/en_us/developers/source/testing/code-coverage.rst @@ -0,0 +1,26 @@ +************* +Code Coverage +************* + +We measure which lines of our codebase are covered by unit tests using +`coverage.py`_ for Python and `JSCover`_ for Javascript. + +Our codebase is far from perfect, but the goal is to steadily improve our coverage +over time. To do this, we wrote a tool called `diff-cover`_ that will +report which lines in your branch are not covered by tests, while ignoring +other lines in the project that may not be covered. Using this tool, +we can ensure that pull requests have a very high percentage of test coverage +-- and ideally, they increase the test coverage of existing code, as well. + +To check the coverage of your pull request, just go to the top level of the +edx-platform codebase and run:: + + $ rake coverage + +This will print a coverage report for your branch. We aim for +a coverage report score of 95% or higher. We also encourage you to write +acceptance tests as your changes require. + +.. _coverage.py: https://pypi.python.org/pypi/coverage +.. _JSCover: http://tntim96.github.io/JSCover/ +.. _diff-cover: https://github.com/edx/diff-cover diff --git a/docs/en_us/developers/source/testing/code-quality.rst b/docs/en_us/developers/source/testing/code-quality.rst new file mode 100644 index 0000000000..bbcb180a1b --- /dev/null +++ b/docs/en_us/developers/source/testing/code-quality.rst @@ -0,0 +1,41 @@ +************ +Code Quality +************ + +In order to keep our code as clear and readable as possible, we use various +tools to assess the quality of pull requests: + +* We use the `pep8`_ tool to follow `PEP-8`_ guidelines +* We use `pylint`_ for static analysis and uncovering trouble spots in our code + +Our codebase is far from perfect, but the goal is to steadily improve our quality +over time. To do this, we wrote a tool called `diff-quality`_ that will +only report on the quality violations on lines that have changed in a +pull request. Using this tool, we can ensure that pull requests do not introduce +any new quality violations -- and ideally, they clean up existing violations +in the process of introducing other changes. + +To check the quality of your pull request, just go to the top level of the +edx-platform codebase and run:: + + $ rake quality + +This will print a report of the quality violations that your branch has made. + +Although we try to be vigilant and resolve all quality violations, some Pylint +violations are just too challenging to resolve, so we opt to ignore them via +use of a pragma. A pragma tells Pylint to ignore the violation in the given +line. An example is:: + + self.assertEquals(msg, form._errors['course_id'][0]) # pylint: disable=protected-access + +The pragma starts with a ``#`` two spaces after the end of the line. We prefer +that you use the full name of the error (``pylint: disable=unused-argument`` as +opposed to ``pylint: disable=W0613``), so it's more clear what you're disabling +in the line. + +.. _PEP-8: http://legacy.python.org/dev/peps/pep-0008/ +.. _pep8: https://pypi.python.org/pypi/pep8 +.. _coverage.py: https://pypi.python.org/pypi/coverage +.. _pylint: http://pylint.org/ +.. _diff-quality: https://github.com/edx/diff-cover diff --git a/docs/en_us/developers/source/testing/index.rst b/docs/en_us/developers/source/testing/index.rst new file mode 100644 index 0000000000..384e3209bf --- /dev/null +++ b/docs/en_us/developers/source/testing/index.rst @@ -0,0 +1,19 @@ +******* +Testing +******* + +Testing is something that we take very seriously at edX: we even have a +"test engineering" team at edX devoted purely to making our testing +infrastructure even more awesome. + +This file is currently a stub: to find out more about our testing infrastructure, +check out the `testing.md`_ file on Github. + +.. toctree:: + :maxdepth: 2 + + jenkins + code-coverage + code-quality + +.. _testing.md: https://github.com/edx/edx-platform/blob/master/docs/en_us/internal/testing.md diff --git a/docs/en_us/developers/source/testing/jenkins.rst b/docs/en_us/developers/source/testing/jenkins.rst new file mode 100644 index 0000000000..ced7fcdea9 --- /dev/null +++ b/docs/en_us/developers/source/testing/jenkins.rst @@ -0,0 +1,68 @@ +******* +Jenkins +******* + +`Jenkins`_ is an open source continuous integration server. edX has a Jenkins +installation specifically for testing pull requests to our open source software +project, including edx-platform. Before a pull request can be merged, Jenkins +must run all the tests for that pull request: this is known as a "build". +If even one test in the build fails, then the entire build is considered a +failure. Pull requests cannot be merged until they have a passing build. + +Kicking Off Builds +================== + +Jenkins has the ability to automatically detect new pull requests and changed +pull requests on Github, and it can automatically run builds in response to +these events. We have Jenkins configured to automatically run builds for all +pull requests from core committers; however, Jenkins will *not* automatically +run builds for new contributors, so a community manager will need to manually +kick off a build for a pull request from a new contributor. + +The reason for this distinction is a matter of trust. Running a build means that +Jenkins will execute all the code in the pull request. A pull request can +contain any code whatsoever: if we allowed Jenkins to automatically build every +pull request, then a malicious developer could make our Jenkins server do whatever +he or she wanted. Before kicking off a build, community managers look at the +code changes to verify that they are not malicious; this protects us from nasty +people. + +Once a contributor has submitted a few pull requests, they can request to be +added to the Jenkins whitelist: this is a special list of people that Jenkins +*will* kick off builds for automatically. If the community managers feel that +the contributor is trustworthy, then they will grant the request, which will +make future development faster and easier for both the contributor and edX. If +a contibutor shows that they can not be trusted for some reason, they will be +removed from this whitelist. + +Failed Builds +============= + +Click on the build to be brought to the build page. You'll see a matrix of blue +and red dots; the red dots indicate what section failing tests were present in. +You can click on the test name to be brought to an error trace that explains +why the tests fail. Please address the failing tests before requesting a new +build on your branch. If the failures appear to not have anything to do with +your code, it may be the case that the master branch is failing. You can ask +your reviewers for advice in this scenario. + +If the build says "Unstable" but passes all tests, you have introduced too many +pep8 and pylint violations. Please refer to the documentation for :doc:`code-quality` +and clean up the code. + +Successful Builds +================= + +If all the tests pass, the "Diff Coverage" and "Diff Quality" reports are +generated. Click on the "View Reports" link on your pull request to be brought +to the Jenkins report page. In a column on the left side of the page are a few +links, including "Diff Coverage Report" and "Diff Quality Report". View each of +these reports (making note that the Diff Quality report has two tabs - one for +pep8, and one for Pylint). + +Make sure your quality coverage is 100% and your test coverage is at least 95%. +Adjust your code appropriately if these metrics are not high enough. Be sure to +ask your reviewers for advice if you need it. + + +.. _Jenkins: http://jenkins-ci.org/ diff --git a/docs/en_us/internal/testing.md b/docs/en_us/internal/testing.md index bd85acddc4..5682f65712 100644 --- a/docs/en_us/internal/testing.md +++ b/docs/en_us/internal/testing.md @@ -110,7 +110,7 @@ You can run all the python tests using `rake` commands. For example, runs all the tests. It also runs `collectstatic`, which prepares the static files used by the site (for example, compiling Coffeescript to Javascript). -You can re-run all failed python tests by running +You can re-run all failed python tests by running: (see note at end of section) rake test:python[--failed] @@ -139,7 +139,7 @@ To run a single django test: rake test_lms[lms/djangoapps/courseware/tests/tests.py:ActivateLoginTest.test_activate_login] -To re-run all failing django tests from lms or cms: +To re-run all failing django tests from lms or cms: (see note at end of section) rake test_lms[--failed] @@ -181,6 +181,11 @@ you can do one of: Very handy: if you uncomment the `pdb=1` line in `setup.cfg`, it will drop you into pdb on error. This lets you go up and down the stack and see what the values of the variables are. Check out [the pdb documentation](http://docs.python.org/library/pdb.html) +Note: More on the `--failed` functionality +* In order to use this, you must run the tests first. If you haven't already run the tests, or if no tests failed in the previous run, then using the `--failed` switch will result in **all** of the tests being run. See more about this in the [nose documentation](http://nose.readthedocs.org/en/latest/plugins/testid.html#looping-over-failed-tests). +* Note that `rake test:python` calls nosetests separately for cms and lms. This means that if tests failed only in lms on the previous run, then calling `rake test:python[--failed]` will run **all of the tests for cms** in addition to the previously failing lms tests. If you want it to run only the failing tests for lms or cms, use the `rake test_lms[--failed]` or `rake test_cms[--failed]` commands. + + ### Running Javascript Unit Tests We use Jasmine to run JavaScript unit tests. To run all the JavaScript tests: diff --git a/docs/en_us/release_notes/source/04-29-2014.rst b/docs/en_us/release_notes/source/04-29-2014.rst new file mode 100644 index 0000000000..62f93be114 --- /dev/null +++ b/docs/en_us/release_notes/source/04-29-2014.rst @@ -0,0 +1,89 @@ +################################### +April 30, 2014 +################################### + +The following information reflects what is new in the edX Platform as of April +30, 2014. See previous pages in this document for a history of changes. + +************************** +edX Documentation +************************** + +You can access the `edX Status`_ page to get an up- +to-date status for all services on edx.org and edX Edge. The page also includes +the Twitter feed for @edXstatus, which the edX Operations team uses to post +updates. + +You can access the public `edX roadmap`_ for +details about the currently planned product direction. + +The following documentation is available: + +* `Building and Running an edX Course`_ + + You can also download the guide as a PDF from the edX Studio user interface. + + Recent changes include: + + * Updated `Show or Hide the Course Wiki Page`_ to include a note about Wiki + content being available after you hide the Wiki page. + + * Updated label information and added XML information to `Problem with + Adaptive Hint`_ + + * Updated `Beta Testing a Course`_ to reflect feature changes. + + * Expanded the `Grade and Answer Data`_ to include topics on interpreting the + grade reports and student progress page. + + * Updated `Working with HTML Components`_ to reflect changes to the HTML + component editor. + + * Reorganized information about problems into the `Creating Exercises and + Tools`_ section. + + * Added more information about collecting language and location data from + students to `Student Data`_. + + +* `edX Data Documentation`_ + + Added new event types to `Tracking Logs`_ for interactions with PDF files. + +* `edX Platform Developer Documentation`_ + + Recent changes include: + + Added the section `Contributing to Open edX`_ + + + +************* +edX Studio +************* + +* The HTML component editor is updated to provide a raw HTML editing option. For + more information, see `Working with HTML Components`_. (STUD-1562) + +* You can now upload a handout that is associated with a video directly in the + Video component editor. Open the **Advanced** tab in the Video component + editor, and use the **Upload** button to find and add a file from your + computer: + + .. image:: images/upload_handout_video.png + :alt: Image of the Upload Handout section of the Video component editor. + +*************************************** +edX Learning Management System +*************************************** + +* Lines in bulk email messages were not wrapped at 998 characters, which caused + error messages and erroneous characters in some email programs. All lines are + now wrapped at 998 characters automatically. (LMS-1466) + +* Occasionally student submissions for MatLab problems are not graded + successfully and the MatLab grader times out. There is now a **Reset** button + that allows students to resubmit their answer without counting the + resubmission and another attempt of the problem. + +.. include:: links.rst \ No newline at end of file diff --git a/docs/en_us/release_notes/source/images/upload_handout_video.png b/docs/en_us/release_notes/source/images/upload_handout_video.png new file mode 100644 index 0000000000..a0c993b140 Binary files /dev/null and b/docs/en_us/release_notes/source/images/upload_handout_video.png differ diff --git a/docs/en_us/release_notes/source/index.rst b/docs/en_us/release_notes/source/index.rst index 577774b26a..5acd02ec31 100755 --- a/docs/en_us/release_notes/source/index.rst +++ b/docs/en_us/release_notes/source/index.rst @@ -11,6 +11,7 @@ Contents :maxdepth: 5 read_me + 04-29-2014 04-23-2014 04-16-2014 04-09-2014 diff --git a/docs/en_us/release_notes/source/links.rst b/docs/en_us/release_notes/source/links.rst index c2cf3557a0..316da414bb 100644 --- a/docs/en_us/release_notes/source/links.rst +++ b/docs/en_us/release_notes/source/links.rst @@ -67,7 +67,6 @@ .. _Building a Course: http://edx.readthedocs.org/projects/ca/en/latest/building_course/index.html#building-a-course-index -.. _Creating Course Content: http://edx.readthedocs.org/projects/ca/en/latest/creating_content/index.html#creating-course-content-index .. _Creating Exercises and Tools: http://edx.readthedocs.org/projects/ca/en/latest/exercises_tools/index.html @@ -136,6 +135,8 @@ .. _Zooming Image Tool: http://edx.readthedocs.org/projects/ca/en/latest/exercises_tools/zooming_image.html +.. _Problem with Adaptive Hint: http://edx.readthedocs.org/projects/ca/en/latest/exercises_tools/problem_with_hint.html + .. DATA DOCUMENTATION .. _Student Info and Progress Data: http://edx.readthedocs.org/projects/devdata/en/latest/internal_data_formats/sql_schema.html#student-info @@ -152,4 +153,8 @@ .. _Release Dates: http://edx.readthedocs.org/projects/ca/en/latest/releasing_course/set_content_releasedates.html#release-dates -.. _Data Czar/Data Team Selection and Responsibilities: http://edx.readthedocs.org/projects/devdata/en/latest/internal_data_formats/data_czar.html \ No newline at end of file +.. _Data Czar/Data Team Selection and Responsibilities: http://edx.readthedocs.org/projects/devdata/en/latest/internal_data_formats/data_czar.html + +.. Developer Doc + +.. _Contributing to Open edX: http://edx.readthedocs.org/projects/userdocs/en/latest/process/index.html \ No newline at end of file diff --git a/jenkins/acceptance.sh b/jenkins/acceptance.sh index 8bcaa209ff..6ea6b0222e 100755 --- a/jenkins/acceptance.sh +++ b/jenkins/acceptance.sh @@ -51,6 +51,13 @@ mongo --quiet --eval 'db.getMongo().getDBNames().forEach(function(i){db.getSibli # not already be fetched. git fetch origin master:refs/remotes/origin/master +# Reset the jenkins worker's ruby environment back to +# the state it was in when the instance was spun up. +if [ -e $HOME/edx-rbenv_clean.tar.gz ]; then + rm -rf $HOME/.rbenv + tar -C $HOME -xf $HOME/edx-rbenv_clean.tar.gz +fi + # Bootstrap Ruby requirements so we can run the tests bundle install diff --git a/jenkins/all-tests.sh b/jenkins/all-tests.sh index 7d0bf8720c..53adcc33b9 100755 --- a/jenkins/all-tests.sh +++ b/jenkins/all-tests.sh @@ -59,6 +59,13 @@ mongo --quiet --eval 'db.getMongo().getDBNames().forEach(function(i){db.getSibli # not already be fetched. git fetch origin master:refs/remotes/origin/master +# Reset the jenkins worker's ruby environment back to +# the state it was in when the instance was spun up. +if [ -e $HOME/edx-rbenv_clean.tar.gz ]; then + rm -rf $HOME/.rbenv + tar -C $HOME -xf $HOME/edx-rbenv_clean.tar.gz +fi + # Bootstrap Ruby requirements so we can run the tests bundle install diff --git a/lms/djangoapps/bulk_email/tests/test_course_optout.py b/lms/djangoapps/bulk_email/tests/test_course_optout.py index e5ab357004..4eaa449232 100644 --- a/lms/djangoapps/bulk_email/tests/test_course_optout.py +++ b/lms/djangoapps/bulk_email/tests/test_course_optout.py @@ -55,7 +55,7 @@ class TestOptoutCourseEmails(ModuleStoreTestCase): # Select the Email view of the instructor dash session = self.client.session - session['idash_mode'] = 'Email' + session[u'idash_mode:{0}'.format(self.course.location.course_id)] = 'Email' session.save() response = self.client.get(url) selected_email_link = '<a href="#" onclick="goto(\'Email\')" class="selectedmode">Email</a>' diff --git a/lms/djangoapps/bulk_email/tests/test_email.py b/lms/djangoapps/bulk_email/tests/test_email.py index e4b2b2502a..21aec45dfa 100644 --- a/lms/djangoapps/bulk_email/tests/test_email.py +++ b/lms/djangoapps/bulk_email/tests/test_email.py @@ -41,6 +41,7 @@ class MockCourseEmailResult(object): @override_settings(MODULESTORE=TEST_DATA_MONGO_MODULESTORE) +@patch.dict(settings.FEATURES, {'ENABLE_INSTRUCTOR_EMAIL': True, 'REQUIRE_COURSE_EMAIL_AUTH': False}) class TestEmailSendFromDashboard(ModuleStoreTestCase): """ Test that emails send correctly. @@ -76,7 +77,7 @@ class TestEmailSendFromDashboard(ModuleStoreTestCase): # Select the Email view of the instructor dash session = self.client.session - session['idash_mode'] = 'Email' + session[u'idash_mode:{0}'.format(self.course.location.course_id)] = 'Email' session.save() response = self.client.get(self.url) selected_email_link = '<a href="#" onclick="goto(\'Email\')" class="selectedmode">Email</a>' @@ -88,6 +89,20 @@ class TestEmailSendFromDashboard(ModuleStoreTestCase): """ patch.stopall() + @patch.dict(settings.FEATURES, {'ENABLE_INSTRUCTOR_EMAIL': True, 'REQUIRE_COURSE_EMAIL_AUTH': True}) + def test_email_disabled(self): + """ + Test response when email is disabled for course. + """ + test_email = { + 'action': 'Send email', + 'to_option': 'myself', + 'subject': 'test subject for myself', + 'message': 'test message for myself' + } + response = self.client.post(self.url, test_email) + self.assertContains(response, "Email is not enabled for this course.") + def test_send_to_self(self): """ Make sure email send to myself goes to myself. diff --git a/lms/djangoapps/bulk_email/tests/test_err_handling.py b/lms/djangoapps/bulk_email/tests/test_err_handling.py index 96d4dd039f..7129e40eb2 100644 --- a/lms/djangoapps/bulk_email/tests/test_err_handling.py +++ b/lms/djangoapps/bulk_email/tests/test_err_handling.py @@ -39,6 +39,7 @@ class EmailTestException(Exception): @override_settings(MODULESTORE=TEST_DATA_MONGO_MODULESTORE) +@patch.dict(settings.FEATURES, {'ENABLE_INSTRUCTOR_EMAIL': True, 'REQUIRE_COURSE_EMAIL_AUTH': False}) class TestEmailErrors(ModuleStoreTestCase): """ Test that errors from sending email are handled properly. diff --git a/lms/djangoapps/certificates/management/commands/gen_cert_report.py b/lms/djangoapps/certificates/management/commands/gen_cert_report.py index 951f20d8a2..ff83248acd 100644 --- a/lms/djangoapps/certificates/management/commands/gen_cert_report.py +++ b/lms/djangoapps/certificates/management/commands/gen_cert_report.py @@ -30,19 +30,28 @@ class Command(BaseCommand): option_list = BaseCommand.option_list + ( make_option('-c', '--course', - metavar='COURSE_ID', - dest='course', - default=None, - help='Only generate for COURSE_ID'), + metavar='COURSE_ID', + dest='course', + default=None, + help='Only generate for COURSE_ID'), ) def _ended_courses(self): for course_id in [course # all courses in COURSE_LISTINGS +<<<<<<< HEAD for sub in settings.COURSE_LISTINGS for course in settings.COURSE_LISTINGS[sub]]: course = modulestore().get_course(course_id) if course.has_ended(): yield course_id +======= + for sub in settings.COURSE_LISTINGS + for course in settings.COURSE_LISTINGS[sub]]: + course_loc = CourseDescriptor.id_to_location(course_id) + course = modulestore().get_instance(course_id, course_loc) + if course.has_ended(): + yield course_id +>>>>>>> edx/master def handle(self, *args, **options): @@ -57,29 +66,39 @@ class Command(BaseCommand): for course_id in ended_courses: - # find students who are enrolled + # find students who are active + # enrolled students are always downloable + notpassing print "Looking up certificate states for {0}".format(course_id) - enrolled_students = User.objects.filter( - courseenrollment__course_id=course_id, - courseenrollment__is_active=True) - cert_data[course_id] = {'enrolled': enrolled_students.count()} + active_students = User.objects.filter( + courseenrollment__course_id=course_id, + courseenrollment__is_active=True) - tallies = GeneratedCertificate.objects.filter( - course_id__exact=course_id).values('status').annotate( - dcount=Count('status')) + cert_data[course_id] = {'active': active_students.count()} + + status_tally = GeneratedCertificate.objects.filter( + course_id__exact=course_id).values('status').annotate( + dcount=Count('status')) cert_data[course_id].update( - {status['status']: status['dcount'] - for status in tallies}) + {status['status']: status['dcount'] + for status in status_tally}) + + mode_tally = GeneratedCertificate.objects.filter( + course_id__exact=course_id, + status__exact='downloadable').values('mode').annotate( + dcount=Count('mode')) + cert_data[course_id].update( + {mode['mode']: mode['dcount'] + for mode in mode_tally}) # all states we have seen far all courses status_headings = set( - [status for course in cert_data - for status in cert_data[course]]) + [status for course in cert_data + for status in cert_data[course]]) # print the heading for the report print "{:>20}".format("course ID"), print ' '.join(["{:>12}".format(heading) - for heading in status_headings]) + for heading in status_headings]) # print the report for course_id in cert_data: diff --git a/lms/djangoapps/certificates/queue.py b/lms/djangoapps/certificates/queue.py index 06267758fd..ad99f83c0c 100644 --- a/lms/djangoapps/certificates/queue.py +++ b/lms/djangoapps/certificates/queue.py @@ -15,6 +15,8 @@ from verify_student.models import SoftwareSecurePhotoVerification import json import random import logging +import lxml +from lxml.etree import XMLSyntaxError, ParserError from xmodule.modulestore import Location @@ -170,11 +172,13 @@ class XQueueCertInterface(object): if course is None: course = courses.get_course_by_id(course_id) profile = UserProfile.objects.get(user=student) + profile_name = profile.name # Needed self.request.user = student self.request.session = {} + course_name = course.display_name or course_id is_whitelisted = self.whitelist.filter(user=student, course_id=course_id, whitelist=True).exists() grade = grades.grade(student, self.request, course) enrollment_mode = CourseEnrollment.enrollment_mode_for_user(student, course_id) @@ -199,9 +203,16 @@ class XQueueCertInterface(object): cert.user = student cert.grade = grade['percent'] cert.course_id = course_id - cert.name = profile.name + cert.name = profile_name + # Strip HTML from grade range label + grade_contents = grade.get('grade', None) + try: + grade_contents = lxml.html.fromstring(grade_contents).text_content() + except (TypeError, XMLSyntaxError, ParserError) as e: + # Despite blowing up the xml parser, bad values here are fine + grade_contents = None - if is_whitelisted or grade['grade'] is not None: + if is_whitelisted or grade_contents is not None: # check to see whether the student is on the # the embargoed country restricted list @@ -218,9 +229,16 @@ class XQueueCertInterface(object): contents = { 'action': 'create', 'username': student.username, +<<<<<<< HEAD 'course_id': course_id.to_deprecated_string(), 'name': profile.name, 'grade': grade['grade'], +======= + 'course_id': course_id, + 'course_name': course_name, + 'name': profile_name, + 'grade': grade_contents, +>>>>>>> edx/master 'template_pdf': template_pdf, } if template_file: @@ -230,8 +248,8 @@ class XQueueCertInterface(object): cert.save() self._send_to_xqueue(contents, key) else: - new_status = status.notpassing - cert.status = new_status + cert_status = status.notpassing + cert.status = cert_status cert.save() return new_status diff --git a/lms/djangoapps/certificates/views.py b/lms/djangoapps/certificates/views.py index 993aad50a5..762855f2c5 100644 --- a/lms/djangoapps/certificates/views.py +++ b/lms/djangoapps/certificates/views.py @@ -1,16 +1,52 @@ +"""URL handlers related to certificate handling by LMS""" +from dogapi import dog_stats_api +import json import logging -from certificates.models import GeneratedCertificate -from certificates.models import CertificateStatuses as status -from django.views.decorators.csrf import csrf_exempt + +from django.contrib.auth.models import User from django.http import HttpResponse +<<<<<<< HEAD import json from dogapi import dog_stats_api from xmodule.modulestore.locations import SlashSeparatedCourseKey +======= +from django.views.decorators.csrf import csrf_exempt + +>>>>>>> edx/master from capa.xqueue_interface import XQUEUE_METRIC_NAME +from certificates.models import certificate_status_for_student, CertificateStatuses, GeneratedCertificate +from certificates.queue import XQueueCertInterface +from xmodule.course_module import CourseDescriptor +from xmodule.modulestore.django import modulestore logger = logging.getLogger(__name__) +@csrf_exempt +def request_certificate(request): + """Request the on-demand creation of a certificate for some user, course. + + A request doesn't imply a guarantee that such a creation will take place. + We intentionally use the same machinery as is used for doing certification + at the end of a course run, so that we can be sure users get graded and + then if and only if they pass, do they get a certificate issued. + """ + if request.method == "POST": + if request.user.is_authenticated(): + xqci = XQueueCertInterface() + username = request.user.username + student = User.objects.get(username=username) + course_id = request.POST.get('course_id') + course = modulestore().get_instance(course_id, CourseDescriptor.id_to_location(course_id), depth=2) + + status = certificate_status_for_student(student, course_id)['status'] + if status in [CertificateStatuses.unavailable, CertificateStatuses.notpassing, CertificateStatuses.error]: + logger.info('Grading and certification requested for user {} in course {} via /request_certificate call'.format(username, course_id)) + status = xqci.add_cert(student, course_id, course=course) + return HttpResponse(json.dumps({'add_status': status}), mimetype='application/json') + return HttpResponse(json.dumps({'add_status': 'ERRORANONYMOUSUSER'}), mimetype='application/json') + + @csrf_exempt def update_certificate(request): """ @@ -22,6 +58,7 @@ def update_certificate(request): This view should only ever be accessed by the xqueue server """ + status = CertificateStatuses if request.method == "POST": xqueue_body = json.loads(request.POST.get('xqueue_body')) diff --git a/lms/djangoapps/courseware/features/certificates.py b/lms/djangoapps/courseware/features/certificates.py index 91e4f394c5..06d77e8008 100644 --- a/lms/djangoapps/courseware/features/certificates.py +++ b/lms/djangoapps/courseware/features/certificates.py @@ -6,6 +6,7 @@ from lettuce.django import django_url from course_modes.models import CourseMode from nose.tools import assert_equal + UPSELL_LINK_CSS = '.message-upsell a.action-upgrade[href*="edx/999/Certificates"]' def create_cert_course(): diff --git a/lms/djangoapps/courseware/features/events.py b/lms/djangoapps/courseware/features/events.py index 493622f652..62638286a4 100644 --- a/lms/djangoapps/courseware/features/events.py +++ b/lms/djangoapps/courseware/features/events.py @@ -7,6 +7,18 @@ from pymongo import MongoClient from nose.tools import assert_equals from nose.tools import assert_in +REQUIRED_EVENT_FIELDS = [ + 'agent', + 'event', + 'event_source', + 'event_type', + 'host', + 'ip', + 'page', + 'time', + 'username' +] + @before.all def connect_to_mongodb(): @@ -53,3 +65,6 @@ def event_is_emitted(_step, event_type, event_source): } for key, value in expected_field_values.iteritems(): assert_equals(event[key], value) + + for field in REQUIRED_EVENT_FIELDS: + assert_in(field, event) diff --git a/lms/djangoapps/courseware/features/lti.feature b/lms/djangoapps/courseware/features/lti.feature index 9804d865c9..eb888daede 100644 --- a/lms/djangoapps/courseware/features/lti.feature +++ b/lms/djangoapps/courseware/features/lti.feature @@ -46,7 +46,7 @@ Feature: LMS.LTI component And the course has an LTI component with correct fields: | open_in_a_new_page | weight | is_graded | has_score | | False | 10 | True | True | - And I submit answer to LTI question + And I submit answer to LTI 1 question And I click on the "Progress" tab Then I see text "Problem Scores: 5/10" And I see graph with total progress "5%" @@ -72,7 +72,65 @@ Feature: LMS.LTI component And the course has an LTI component with correct fields: | open_in_a_new_page | weight | is_graded | has_score | | False | 10 | True | True | - And I submit answer to LTI question + And I submit answer to LTI 1 question And I click on the "Progress" tab Then I see text "Problem Scores: 5/10" And I see graph with total progress "5%" + + #9 + Scenario: Graded LTI component in LMS is correctly works with LTI2.0 PUT callback + Given the course has correct LTI credentials with registered Instructor + And the course has an LTI component with correct fields: + | open_in_a_new_page | weight | is_graded | has_score | + | False | 10 | True | True | + And I submit answer to LTI 2 question + And I click on the "Progress" tab + Then I see text "Problem Scores: 8/10" + And I see graph with total progress "8%" + Then I click on the "Instructor" tab + And I click on the "Gradebook" tab + And I see in the gradebook table that "HW" is "80" + And I see in the gradebook table that "Total" is "8" + And I visit the LTI component + Then I see LTI component progress with text "(8.0 / 10.0 points)" + Then I see LTI component feedback with text "This is awesome." + + #10 + Scenario: Graded LTI component in LMS is correctly works with LTI2.0 PUT delete callback + Given the course has correct LTI credentials with registered Instructor + And the course has an LTI component with correct fields: + | open_in_a_new_page | weight | is_graded | has_score | + | False | 10 | True | True | + And I submit answer to LTI 2 question + And I visit the LTI component + Then I see LTI component progress with text "(8.0 / 10.0 points)" + Then I see LTI component feedback with text "This is awesome." + And the LTI provider deletes my grade and feedback + And I visit the LTI component (have to reload) + Then I see LTI component progress with text "(10.0 points possible)" + Then in the LTI component I do not see feedback + And I click on the "Progress" tab + Then I see text "Problem Scores: 0/10" + And I see graph with total progress "0%" + Then I click on the "Instructor" tab + And I click on the "Gradebook" tab + And I see in the gradebook table that "HW" is "0" + And I see in the gradebook table that "Total" is "0" + + #11 + Scenario: LTI component that set to hide_launch and open_in_a_new_page shows no button + Given the course has correct LTI credentials with registered Instructor + And the course has an LTI component with correct fields: + | open_in_a_new_page | hide_launch | + | False | True | + Then in the LTI component I do not see a launch button + Then I see LTI component module title with text "LTI (EXTERNAL RESOURCE)" + + #12 + Scenario: LTI component that set to hide_launch and not open_in_a_new_page shows no iframe + Given the course has correct LTI credentials with registered Instructor + And the course has an LTI component with correct fields: + | open_in_a_new_page | hide_launch | + | True | True | + Then in the LTI component I do not see an provider iframe + Then I see LTI component module title with text "LTI (EXTERNAL RESOURCE)" diff --git a/lms/djangoapps/courseware/features/lti.py b/lms/djangoapps/courseware/features/lti.py index c5fcb974da..ffabd1a0ba 100644 --- a/lms/djangoapps/courseware/features/lti.py +++ b/lms/djangoapps/courseware/features/lti.py @@ -2,24 +2,17 @@ import datetime import os import pytz +from django.conf import settings from mock import patch from pytz import UTC -from nose.tools import assert_equal from splinter.exceptions import ElementDoesNotExist - -from django.contrib.auth.models import User -from django.core.urlresolvers import reverse -from django.conf import settings +from nose.tools import assert_true, assert_equal, assert_in from lettuce import world, step -from lettuce.django import django_url -from common import course_id, visit_scenario_item from courseware.tests.factories import InstructorFactory, BetaTesterFactory - from courseware.access import has_access from student.tests.factories import UserFactory -from nose.tools import assert_equals from common import course_id, visit_scenario_item @@ -246,6 +239,22 @@ def check_lti_popup(): world.browser.switch_to_window(parent_window) # Switch to the main window again +@step('visit the LTI component') +def visit_lti_component(_step): + visit_scenario_item('LTI') + + +@step('I see LTI component (.*) with text "([^"]*)"$') +def see_elem_text(_step, elem, text): + selector_map = { + 'progress': '.problem-progress', + 'feedback': '.problem-feedback', + 'module title': '.problem-header' + } + assert_in(elem, selector_map) + assert_true(world.css_has_text(selector_map[elem], text)) + + @step('I see text "([^"]*)"$') def check_progress(_step, text): assert world.browser.is_text_present(text) @@ -253,37 +262,53 @@ def check_progress(_step, text): @step('I see graph with total progress "([^"]*)"$') def see_graph(_step, progress): - SELECTOR = 'grade-detail-graph' - XPATH = '//div[@id="{parent}"]//div[text()="{progress}"]'.format( - parent=SELECTOR, + selector = 'grade-detail-graph' + xpath = '//div[@id="{parent}"]//div[text()="{progress}"]'.format( + parent=selector, progress=progress, ) - node = world.browser.find_by_xpath(XPATH) + node = world.browser.find_by_xpath(xpath) assert node @step('I see in the gradebook table that "([^"]*)" is "([^"]*)"$') def see_value_in_the_gradebook(_step, label, text): - TABLE_SELECTOR = '.grade-table' + table_selector = '.grade-table' index = 0 - table_headers = world.css_find('{0} thead th'.format(TABLE_SELECTOR)) + table_headers = world.css_find('{0} thead th'.format(table_selector)) for i, element in enumerate(table_headers): if element.text.strip() == label: index = i break; - assert world.css_has_text('{0} tbody td'.format(TABLE_SELECTOR), text, index=index) + assert_true(world.css_has_text('{0} tbody td'.format(table_selector), text, index=index)) -@step('I submit answer to LTI question$') -def click_grade(_step): +@step('I submit answer to LTI (.*) question$') +def click_grade(_step, version): + version_map = { + '1': {'selector': 'submit-button', 'expected_text': 'LTI consumer (edX) responded with XML content'}, + '2': {'selector': 'submit-lti2-button', 'expected_text': 'LTI consumer (edX) responded with HTTP 200'}, + } + assert_in(version, version_map) location = world.scenario_dict['LTI'].location.html_id() iframe_name = 'ltiFrame-' + location with world.browser.get_iframe(iframe_name) as iframe: - iframe.find_by_name('submit-button').first.click() - assert iframe.is_text_present('LTI consumer (edX) responded with XML content') + iframe.find_by_name(version_map[version]['selector']).first.click() + assert iframe.is_text_present(version_map[version]['expected_text']) + + +@step('LTI provider deletes my grade and feedback$') +def click_delete_button(_step): + with world.browser.get_iframe(get_lti_frame_name()) as iframe: + iframe.find_by_name('submit-lti2-delete-button').first.click() + + +def get_lti_frame_name(): + location = world.scenario_dict['LTI'].location.html_id() + return 'ltiFrame-' + location @step('I see in iframe that LTI role is (.*)$') @@ -308,3 +333,14 @@ def switch_view(_step, view): world.css_click('#staffstatus') world.wait_for_ajax_complete() + +@step("in the LTI component I do not see (.*)$") +def check_lti_component_no_elem(_step, text): + selector_map = { + 'a launch button': '.link_lti_new_window', + 'an provider iframe': '.ltiLaunchFrame', + 'feedback': '.problem-feedback', + 'progress': '.problem-progress', + } + assert_in(text, selector_map) + assert_true(world.is_css_not_present(selector_map[text])) diff --git a/lms/djangoapps/courseware/features/video.feature b/lms/djangoapps/courseware/features/video.feature index fd88bc86a1..3a3cf285eb 100644 --- a/lms/djangoapps/courseware/features/video.feature +++ b/lms/djangoapps/courseware/features/video.feature @@ -3,33 +3,6 @@ Feature: LMS.Video component As a student, I want to view course videos in LMS # 1 - Scenario: Video component is fully rendered in the LMS in HTML5 mode - Given the course has a Video component in "HTML5" mode - When the video has rendered in "HTML5" mode - And all sources are correct - - # 2 - # Youtube testing - Scenario: Video component is fully rendered in the LMS in Youtube mode with HTML5 sources - Given youtube server is up and response time is 0.4 seconds - And the course has a Video component in "Youtube_HTML5" mode - When the video has rendered in "Youtube" mode - - # 3 - Scenario: Video component is not rendered in the LMS in Youtube mode with HTML5 sources - Given youtube server is up and response time is 2 seconds - And the course has a Video component in "Youtube_HTML5" mode - When the video has rendered in "HTML5" mode - - # 4 - Scenario: Video component is not rendered in the LMS in Youtube mode with HTML5 sources when YouTube API is blocked - Given youtube server is up and response time is 2 seconds - And youtube stub server blocks YouTube API - And the course has a Video component in "Youtube_HTML5" mode - And I wait "3" seconds - Then the video has rendered in "HTML5" mode - - # 5 Scenario: Multiple videos in sequentials all load and work, switching between sequentials Given I am registered for the course "test_course" And it has a video "A" in "Youtube" mode in position "1" of sequential @@ -51,7 +24,7 @@ Feature: LMS.Video component When I open video "A" Then video "A" should start playing at speed "2.0" - # 6 + # 2 Scenario: Video component stores speed correctly when each video is in separate sequence Given I am registered for the course "test_course" And it has a video "A" in "Youtube" mode in position "1" of sequential @@ -73,43 +46,6 @@ Feature: LMS.Video component When I open video "C" Then video "C" should start playing at speed "1.0" - # 7 - Scenario: Language menu works correctly in Video component - Given I am registered for the course "test_course" - And I have a "chinese_transcripts.srt" transcript file in assets - And I have a "subs_OEoXaMPEzfM.srt.sjson" transcript file in assets - And it has a video in "Youtube" mode: - | transcripts | sub | - | {"zh": "chinese_transcripts.srt"} | OEoXaMPEzfM | - And I make sure captions are closed - And I see video menu "language" with correct items - And I select language with code "zh" - Then I see "好 各位同学" text in the captions - And I select language with code "en" - And I see "Hi, welcome to Edx." text in the captions - - # 8 - Scenario: Download Transcript button works correctly in Video component - Given I am registered for the course "test_course" - And I have a "subs_OEoXaMPEzfM.srt.sjson" transcript file in assets - And it has a video "A" in "Youtube" mode in position "1" of sequential: - | sub | download_track | - | OEoXaMPEzfM | true | - And a video "B" in "Youtube" mode in position "2" of sequential: - | sub | download_track | - | OEoXaMPEzfM | true | - And a video "C" in "Youtube" mode in position "3" of sequential: - | track | download_track | - | http://example.org/ | true | - And I open the section with videos - Then I can download transcript in "srt" format that has text "00:00:00,270" - And I select the transcript format "txt" - Then I can download transcript in "txt" format that has text "Hi, welcome to Edx." - When I open video "B" - Then I can download transcript in "txt" format that has text "Hi, welcome to Edx." - When I open video "C" - Then menu "download_transcript" doesn't exist - # 9 # Scenario: Youtube video has correct transcript if fields for other speeds are filled # Given I am registered for the course "test_course" @@ -128,7 +64,7 @@ Feature: LMS.Video component # "1:56" is the duration in the VCR timer before the video plays. # And I see duration "1:56" - # 9 + # 3 Scenario: Verify that each video in each sub-section includes a transcript for non-Youtube countries Given youtube server is up and response time is 2 seconds And I am registered for the course "test_course" @@ -157,16 +93,19 @@ Feature: LMS.Video component Then the video has rendered in "HTML5" mode And the video does not show the captions +# Disabling because this test is not reliable and needs to be improved. +# Sometimes by the time it checks the video slider is at 10, +# it is actually at 11, so the test fails. # 10 - Scenario: Start time works for Youtube video - Given I am registered for the course "test_course" - And it has a video in "Youtube" mode: - | start_time | - | 00:00:10 | - And I click video button "play" - Then I see video slider at "0:10" position +# Scenario: Start time works for Youtube video +# Given I am registered for the course "test_course" +# And it has a video in "Youtube" mode: +# | start_time | +# | 00:00:10 | +# And I click video button "play" +# Then I see video slider at "0:10" position - # 11 + # 4 Scenario: End time works for Youtube video Given I am registered for the course "test_course" And it has a video in "Youtube" mode: @@ -176,7 +115,7 @@ Feature: LMS.Video component And I wait "5" seconds Then I see video slider at "0:02" position - # 12 + # 5 Scenario: Youtube video with end-time at 1:00 and the video starts playing at 0:58 Given I am registered for the course "test_course" And it has a video in "Youtube" mode: @@ -188,7 +127,7 @@ Feature: LMS.Video component And I wait "5" seconds Then I see video slider at "1:00" position - # 13 + # 6 Scenario: Start time and end time work together for Youtube video Given I am registered for the course "test_course" And it has a video in "Youtube" mode: @@ -199,7 +138,7 @@ Feature: LMS.Video component And I wait "5" seconds Then I see video slider at "0:12" position - # 14 + # 7 Scenario: Youtube video after pausing at end time video plays to the end from end time Given I am registered for the course "test_course" And it has a video in "Youtube" mode: @@ -214,7 +153,7 @@ Feature: LMS.Video component # The default video length is 00:01:55. Then I see video slider at "1:55" position - # 15 + # 8 Scenario: Youtube video with end-time at 0:32 and start-time at 0:30, the video starts playing from 0:28 Given I am registered for the course "test_course" And it has a video in "Youtube" mode: @@ -226,7 +165,7 @@ Feature: LMS.Video component And I wait "8" seconds Then I see video slider at "0:32" position - # 16 + # 9 Scenario: Youtube video with end-time at 1:00, the video starts playing from 1:52 Given I am registered for the course "test_course" And it has a video in "Youtube" mode: @@ -239,7 +178,7 @@ Feature: LMS.Video component # Video stops at the end. Then I see video slider at "1:55" position - # 17 + # 10 @skip_firefox Scenario: Quality button appears on play Given the course has a Video component in "Youtube" mode @@ -247,7 +186,7 @@ Feature: LMS.Video component And I click video button "play" Then I see video button "quality" is visible - # 18 + # 11 @skip_firefox Scenario: Quality button works correctly Given the course has a Video component in "Youtube" mode diff --git a/lms/djangoapps/courseware/model_data.py b/lms/djangoapps/courseware/model_data.py index 749b950df9..e02eab6ae7 100644 --- a/lms/djangoapps/courseware/model_data.py +++ b/lms/djangoapps/courseware/model_data.py @@ -301,7 +301,6 @@ class DjangoKeyValueStore(KeyValueStore): Scope.user_info, ) - def __init__(self, field_data_cache): self._field_data_cache = field_data_cache diff --git a/lms/djangoapps/courseware/module_render.py b/lms/djangoapps/courseware/module_render.py index bdef5c14ab..36e1874554 100644 --- a/lms/djangoapps/courseware/module_render.py +++ b/lms/djangoapps/courseware/module_render.py @@ -65,6 +65,13 @@ XQUEUE_INTERFACE = XQueueInterface( # This should be fixed after the jellyfish merge, before merge into master. +class LmsModuleRenderError(Exception): + """ + An exception class for exceptions thrown by module_render that don't fit well elsewhere + """ + pass + + def make_track_function(request): ''' Make a tracking function that logs what happened. @@ -214,25 +221,39 @@ def get_module_for_descriptor(user, request, descriptor, field_data_cache, cours static_asset_path) -def get_module_for_descriptor_internal(user, descriptor, field_data_cache, course_id, - track_function, xqueue_callback_url_prefix, - position=None, wrap_xmodule_display=True, grade_bucket_type=None, - static_asset_path=''): +def get_module_system_for_user(user, field_data_cache, + # Arguments preceding this comment have user binding, those following don't + descriptor, course_id, track_function, xqueue_callback_url_prefix, + position=None, wrap_xmodule_display=True, grade_bucket_type=None, + static_asset_path=''): """ - Actually implement get_module, without requiring a request. + Helper function that returns a module system and student_data bound to a user and a descriptor. - See get_module() docstring for further details. - """ + The purpose of this function is to factor out everywhere a user is implicitly bound when creating a module, + to allow an existing module to be re-bound to a user. Most of the user bindings happen when creating the + closures that feed the instantiation of ModuleSystem. +<<<<<<< HEAD # Do not check access when it's a noauth request. if getattr(user, 'known', True): # Short circuit--if the user shouldn't have access, bail without doing any work if not has_access(user, 'load', descriptor, course_id): return None +======= + The arguments fall into two categories: those that have explicit or implicit user binding, which are user + and field_data_cache, and those don't and are just present so that ModuleSystem can be instantiated, which + are all the other arguments. Ultimately, this isn't too different than how get_module_for_descriptor_internal + was before refactoring. +>>>>>>> edx/master + Arguments: + see arguments for get_module() + + Returns: + (LmsModuleSystem, KvsFieldData): (module system, student_data) bound to, primarily, the user and descriptor + """ student_data = KvsFieldData(DjangoKeyValueStore(field_data_cache)) - def make_xqueue_callback(dispatch='score_update'): # Fully qualified callback URL for external queueing system relative_xqueue_callback_url = reverse( @@ -335,6 +356,49 @@ def get_module_for_descriptor_internal(user, descriptor, field_data_cache, cours else: track_function(event_type, event) + def rebind_noauth_module_to_user(module, real_user): + """ + A function that allows a module to get re-bound to a real user if it was previously bound to an AnonymousUser. + + Will only work within a module bound to an AnonymousUser, e.g. one that's instantiated by the noauth_handler. + + Arguments: + module (any xblock type): the module to rebind + real_user (django.contrib.auth.models.User): the user to bind to + + Returns: + nothing (but the side effect is that module is re-bound to real_user) + """ + if user.is_authenticated(): + err_msg = ("rebind_noauth_module_to_user can only be called from a module bound to " + "an anonymous user") + log.error(err_msg) + raise LmsModuleRenderError(err_msg) + + field_data_cache_real_user = FieldDataCache.cache_for_descriptor_descendents( + course_id, + real_user, + module.descriptor + ) + + (inner_system, inner_student_data) = get_module_system_for_user( + real_user, field_data_cache_real_user, # These have implicit user bindings, rest of args considered not to + module.descriptor, course_id, track_function, xqueue_callback_url_prefix, position, wrap_xmodule_display, + grade_bucket_type, static_asset_path + ) + # rebinds module to a different student. We'll change system, student_data, and scope_ids + module.descriptor.bind_for_student( + inner_system, + LmsFieldData(module.descriptor._field_data, inner_student_data) # pylint: disable=protected-access + ) + module.descriptor.scope_ids = ( + module.descriptor.scope_ids._replace(user_id=real_user.id) # pylint: disable=protected-access + ) + module.scope_ids = module.descriptor.scope_ids # this is needed b/c NamedTuples are immutable + # now bind the module to the new ModuleSystem instance and vice-versa + module.runtime = inner_system + inner_system.xmodule_instance = module + # Build a list of wrapping functions that will be applied in order # to the Fragment content coming out of the xblocks that are about to be rendered. block_wrappers = [] @@ -439,6 +503,7 @@ def get_module_for_descriptor_internal(user, descriptor, field_data_cache, cours }, get_user_role=lambda: get_user_role(user, course_id), descriptor_runtime=descriptor.runtime, + rebind_noauth_module_to_user=rebind_noauth_module_to_user, ) # pass position specified in URL to module through ModuleSystem @@ -457,6 +522,31 @@ def get_module_for_descriptor_internal(user, descriptor, field_data_cache, cours else: system.error_descriptor_class = NonStaffErrorDescriptor + return system, student_data + + +def get_module_for_descriptor_internal(user, descriptor, field_data_cache, course_id, # pylint: disable=invalid-name + track_function, xqueue_callback_url_prefix, + position=None, wrap_xmodule_display=True, grade_bucket_type=None, + static_asset_path=''): + """ + Actually implement get_module, without requiring a request. + + See get_module() docstring for further details. + """ + + # Do not check access when it's a noauth request. + if getattr(user, 'known', True): + # Short circuit--if the user shouldn't have access, bail without doing any work + if not has_access(user, descriptor, 'load', course_id): + return None + + (system, student_data) = get_module_system_for_user( + user, field_data_cache, # These have implicit user bindings, the rest of args are considered not to + descriptor, course_id, track_function, xqueue_callback_url_prefix, position, wrap_xmodule_display, + grade_bucket_type, static_asset_path + ) + descriptor.bind_for_student(system, LmsFieldData(descriptor._field_data, student_data)) # pylint: disable=protected-access descriptor.scope_ids = descriptor.scope_ids._replace(user_id=user.id) # pylint: disable=protected-access return descriptor diff --git a/lms/djangoapps/courseware/tests/test_lti_integration.py b/lms/djangoapps/courseware/tests/test_lti_integration.py index 0ddb8dd3f8..01e4867029 100644 --- a/lms/djangoapps/courseware/tests/test_lti_integration.py +++ b/lms/djangoapps/courseware/tests/test_lti_integration.py @@ -1,11 +1,23 @@ """LTI integration tests""" import oauthlib -from . import BaseTestXmodule from collections import OrderedDict import mock import urllib +import json +from django.test.utils import override_settings +from django.core.urlresolvers import reverse +from django.conf import settings + +from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase +from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory +from xmodule.modulestore import Location + +from courseware.tests import BaseTestXmodule +from courseware.tests.modulestore_config import TEST_DATA_MIXED_MODULESTORE +from courseware.views import get_course_lti_endpoints +from lms.lib.xblock.runtime import quote_slashes class TestLTI(BaseTestXmodule): """ @@ -68,7 +80,13 @@ class TestLTI(BaseTestXmodule): 'element_id': self.item_descriptor.location.html_id(), 'launch_url': 'http://www.example.com', # default value 'open_in_a_new_page': True, - 'form_url': self.item_descriptor.xmodule_runtime.handler_url(self.item_descriptor, 'preview_handler').rstrip('/?'), + 'form_url': self.item_descriptor.xmodule_runtime.handler_url(self.item_descriptor, + 'preview_handler').rstrip('/?'), + 'hide_launch': False, + 'has_score': False, + 'module_score': None, + 'comment': u'', + 'weight': 1.0, } def mocked_sign(self, *args, **kwargs): @@ -92,10 +110,111 @@ class TestLTI(BaseTestXmodule): def test_lti_constructor(self): generated_content = self.item_descriptor.render('student_view').content - expected_content = self.runtime.render_template('lti.html', self.expected_context) + expected_content = self.runtime.render_template('lti.html', self.expected_context) self.assertEqual(generated_content, expected_content) def test_lti_preview_handler(self): generated_content = self.item_descriptor.preview_handler(None, None).body expected_content = self.runtime.render_template('lti_form.html', self.expected_context) self.assertEqual(generated_content, expected_content) + + +@override_settings(MODULESTORE=TEST_DATA_MIXED_MODULESTORE) +class TestLTIModuleListing(ModuleStoreTestCase): + """ + a test for the rest endpoint that lists LTI modules in a course + """ + # arbitrary constant + COURSE_SLUG = "100" + COURSE_NAME = "test_course" + + def setUp(self): + """Create course, 2 chapters, 2 sections""" + self.course = CourseFactory.create(display_name=self.COURSE_NAME, number=self.COURSE_SLUG) + self.chapter1 = ItemFactory.create( + parent_location=self.course.location, + display_name="chapter1", + category='chapter') + self.section1 = ItemFactory.create( + parent_location=self.chapter1.location, + display_name="section1", + category='sequential') + self.chapter2 = ItemFactory.create( + parent_location=self.course.location, + display_name="chapter2", + category='chapter') + self.section2 = ItemFactory.create( + parent_location=self.chapter2.location, + display_name="section2", + category='sequential') + + self.published_location_dict = {'tag': 'i4x', + 'org': self.course.location.org, + 'category': 'lti', + 'course': self.course.location.course, + 'name': 'lti_published'} + self.draft_location_dict = {'tag': 'i4x', + 'org': self.course.location.org, + 'category': 'lti', + 'course': self.course.location.course, + 'name': 'lti_draft', + 'revision': 'draft'} + # creates one draft and one published lti module, in different sections + self.lti_published = ItemFactory.create( + parent_location=self.section1.location, + display_name="lti published", + category="lti", + location=Location(self.published_location_dict) + ) + self.lti_draft = ItemFactory.create( + parent_location=self.section2.location, + display_name="lti draft", + category="lti", + location=Location(self.draft_location_dict) + ) + + def expected_handler_url(self, handler): + """convenience method to get the reversed handler urls""" + return "https://{}{}".format(settings.SITE_NAME, reverse( + 'courseware.module_render.handle_xblock_callback_noauth', + args=[ + self.course.id, + quote_slashes(unicode(self.lti_published.scope_ids.usage_id).encode('utf-8')), + handler + ] + )) + + def test_lti_rest_bad_course(self): + """Tests what happens when the lti listing rest endpoint gets a bad course_id""" + bad_ids = [u"sf", u"dne/dne/dne", u"fo/ey/\u5305"] + request = mock.Mock() + request.method = 'GET' + for bad_course_id in bad_ids: + response = get_course_lti_endpoints(request, bad_course_id) + self.assertEqual(404, response.status_code) + + def test_lti_rest_listing(self): + """tests that the draft lti module is not a part of the endpoint response, but the published one is""" + request = mock.Mock() + request.method = 'GET' + response = get_course_lti_endpoints(request, self.course.id) + + self.assertEqual(200, response.status_code) + self.assertEqual('application/json', response['Content-Type']) + + expected = { + "lti_1_1_result_service_xml_endpoint": self.expected_handler_url('grade_handler'), + "lti_2_0_result_service_json_endpoint": + self.expected_handler_url('lti_2_0_result_rest_handler') + "/user/{anon_user_id}", + "display_name": self.lti_published.display_name + } + self.assertEqual([expected], json.loads(response.content)) + + def test_lti_rest_non_get(self): + """tests that the endpoint returns 404 when hit with NON-get""" + DISALLOWED_METHODS = ("POST", "PUT", "DELETE", "HEAD", "OPTIONS") # pylint: disable=invalid-name + for method in DISALLOWED_METHODS: + request = mock.Mock() + request.method = method + response = get_course_lti_endpoints(request, self.course.id) + self.assertEqual(405, response.status_code) diff --git a/lms/djangoapps/courseware/tests/test_module_render.py b/lms/djangoapps/courseware/tests/test_module_render.py index d5cccf9b40..093a3e0800 100644 --- a/lms/djangoapps/courseware/tests/test_module_render.py +++ b/lms/djangoapps/courseware/tests/test_module_render.py @@ -12,6 +12,7 @@ from django.conf import settings from django.test import TestCase from django.test.client import RequestFactory from django.test.utils import override_settings +from django.contrib.auth.models import AnonymousUser from capa.tests.response_xml_factory import OptionResponseXMLFactory from xblock.field_data import FieldData @@ -27,13 +28,16 @@ from xmodule.modulestore.locations import SlashSeparatedCourseKey from courseware import module_render as render from courseware.courses import get_course_with_access, course_image_url, get_course_info_section from courseware.model_data import FieldDataCache +from courseware.models import StudentModule from courseware.tests.factories import StudentModuleFactory, UserFactory, GlobalStaffFactory from courseware.tests.tests import LoginEnrollmentTestCase from courseware.tests.modulestore_config import TEST_DATA_MIXED_MODULESTORE from courseware.tests.modulestore_config import TEST_DATA_MONGO_MODULESTORE from courseware.tests.modulestore_config import TEST_DATA_XML_MODULESTORE +from courseware.tests.test_submitting_problems import TestSubmittingProblems +from student.models import anonymous_id_for_user from lms.lib.xblock.runtime import quote_slashes @@ -96,7 +100,6 @@ class ModuleRenderTestCase(ModuleStoreTestCase, LoginEnrollmentTestCase): # note if the URL mapping changes then this assertion will break self.assertIn('/courses/' + self.course_key.to_deprecated_string() + '/jump_to_id/vertical_test', html) - def test_xqueue_callback_success(self): """ Test for happy-path xqueue_callback @@ -537,7 +540,7 @@ class ViewInStudioTest(ModuleStoreTestCase): descriptor ) - self.module = render.get_module( + return render.get_module( self.staff_user, self.request, location, @@ -555,7 +558,15 @@ class ViewInStudioTest(ModuleStoreTestCase): category='vertical', ) - self._get_module(course.id, descriptor, descriptor.location) + child_descriptor = ItemFactory.create( + category='vertical', + parent_location=descriptor.location + ) + + self.module = self._get_module(course.id, descriptor, descriptor.location) + + # pylint: disable=W0201 + self.child_module = self._get_module(course.id, child_descriptor, child_descriptor.location) def setup_xml_course(self): """ @@ -566,7 +577,11 @@ class ViewInStudioTest(ModuleStoreTestCase): location = course_key.make_usage_key('chapter', 'Overview') descriptor = modulestore().get_item(location) +<<<<<<< HEAD self._get_module(course_key, descriptor, location) +======= + self.module = self._get_module(course_id, descriptor, location) +>>>>>>> edx/master @override_settings(MODULESTORE=TEST_DATA_MONGO_MODULESTORE) @@ -582,6 +597,18 @@ class MongoViewInStudioTest(ViewInStudioTest): result_fragment = self.module.render('student_view') self.assertIn('View Unit in Studio', result_fragment.content) + def test_view_in_studio_link_only_in_top_level_vertical(self): + """Regular Studio courses should not see 'View in Studio' for child verticals of verticals.""" + self.setup_mongo_course() + # Render the parent vertical, then check that there is only a single "View Unit in Studio" link. + result_fragment = self.module.render('student_view') + # The single "View Unit in Studio" link should appear before the first xmodule vertical definition. + parts = result_fragment.content.split('xmodule_VerticalModule') + self.assertEqual(3, len(parts), "Did not find two vertical modules") + self.assertIn('View Unit in Studio', parts[0]) + self.assertNotIn('View Unit in Studio', parts[1]) + self.assertNotIn('View Unit in Studio', parts[2]) + def test_view_in_studio_link_xml_authored(self): """Courses that change 'course_edit_method' setting can hide 'View in Studio' links.""" self.setup_mongo_course(course_edit_method='XML') @@ -878,3 +905,106 @@ class TestModuleTrackingContext(ModuleStoreTestCase): def test_missing_display_name(self, mock_tracker): actual_display_name = self.handle_callback_and_get_display_name_from_event(mock_tracker) self.assertTrue(actual_display_name.startswith('problem')) + + +class TestXmoduleRuntimeEvent(TestSubmittingProblems): + """ + Inherit from TestSubmittingProblems to get functionality that set up a course and problems structure + """ + + def setUp(self): + super(TestXmoduleRuntimeEvent, self).setUp() + self.homework = self.add_graded_section_to_course('homework') + self.problem = self.add_dropdown_to_section(self.homework.location, 'p1', 1) + self.grade_dict = {'value': 0.18, 'max_value': 32, 'user_id': self.student_user.id} + self.delete_dict = {'value': None, 'max_value': None, 'user_id': self.student_user.id} + + def get_module_for_user(self, user): + """Helper function to get useful module at self.location in self.course_id for user""" + mock_request = MagicMock() + mock_request.user = user + field_data_cache = FieldDataCache.cache_for_descriptor_descendents( + self.course.id, user, self.course, depth=2) + + return render.get_module( # pylint: disable=protected-access + user, + mock_request, + self.problem.id, + field_data_cache, + self.course.id)._xmodule + + def set_module_grade_using_publish(self, grade_dict): + """Publish the user's grade, takes grade_dict as input""" + module = self.get_module_for_user(self.student_user) + module.system.publish(module, 'grade', grade_dict) + return module + + def test_xmodule_runtime_publish(self): + """Tests the publish mechanism""" + self.set_module_grade_using_publish(self.grade_dict) + student_module = StudentModule.objects.get(student=self.student_user, module_state_key=self.problem.id) + self.assertEqual(student_module.grade, self.grade_dict['value']) + self.assertEqual(student_module.max_grade, self.grade_dict['max_value']) + + def test_xmodule_runtime_publish_delete(self): + """Test deleting the grade using the publish mechanism""" + module = self.set_module_grade_using_publish(self.grade_dict) + module.system.publish(module, 'grade', self.delete_dict) + student_module = StudentModule.objects.get(student=self.student_user, module_state_key=self.problem.id) + self.assertIsNone(student_module.grade) + self.assertIsNone(student_module.max_grade) + + +class TestRebindModule(TestSubmittingProblems): + """ + Tests to verify the functionality of rebinding a module. + Inherit from TestSubmittingProblems to get functionality that set up a course structure + """ + def setUp(self): + super(TestRebindModule, self).setUp() + self.homework = self.add_graded_section_to_course('homework') + self.lti = ItemFactory.create(category='lti', parent=self.homework) + self.user = UserFactory.create() + self.anon_user = AnonymousUser() + + def get_module_for_user(self, user): + """Helper function to get useful module at self.location in self.course_id for user""" + mock_request = MagicMock() + mock_request.user = user + field_data_cache = FieldDataCache.cache_for_descriptor_descendents( + self.course.id, user, self.course, depth=2) + + return render.get_module( # pylint: disable=protected-access + user, + mock_request, + self.lti.id, + field_data_cache, + self.course.id)._xmodule + + def test_rebind_noauth_module_to_user_not_anonymous(self): + """ + Tests that an exception is thrown when rebind_noauth_module_to_user is run from a + module bound to a real user + """ + module = self.get_module_for_user(self.user) + user2 = UserFactory() + user2.id = 2 + with self.assertRaisesRegexp( + render.LmsModuleRenderError, + "rebind_noauth_module_to_user can only be called from a module bound to an anonymous user" + ): + self.assertTrue(module.system.rebind_noauth_module_to_user(module, user2)) + + def test_rebind_noauth_module_to_user_anonymous(self): + """ + Tests that get_user_module_for_noauth succeeds when rebind_noauth_module_to_user is run from a + module bound to AnonymousUser + """ + module = self.get_module_for_user(self.anon_user) + user2 = UserFactory() + user2.id = 2 + module.system.rebind_noauth_module_to_user(module, user2) + self.assertTrue(module) + self.assertEqual(module.system.anonymous_student_id, anonymous_id_for_user(user2, self.course.id)) + self.assertEqual(module.scope_ids.user_id, user2.id) + self.assertEqual(module.descriptor.scope_ids.user_id, user2.id) diff --git a/lms/djangoapps/courseware/tests/test_video_handlers.py b/lms/djangoapps/courseware/tests/test_video_handlers.py index d626b55ccf..83e9998cd5 100644 --- a/lms/djangoapps/courseware/tests/test_video_handlers.py +++ b/lms/djangoapps/courseware/tests/test_video_handlers.py @@ -11,6 +11,8 @@ from webob import Request from xmodule.contentstore.content import StaticContent from xmodule.contentstore.django import contentstore +from xmodule.modulestore import Location +from xmodule.modulestore.django import editable_modulestore from . import BaseTestXmodule from .test_video_xml import SOURCE_XML from cache_toolbox.core import del_cached_content @@ -222,6 +224,7 @@ class TestTranscriptDownloadDispatch(TestVideo): DATA = """ <video show_captions="true" display_name="A Name" + sub='OEoXaMPEzfM' > <source src="example.mp4"/> <source src="example.webm"/> @@ -399,6 +402,41 @@ class TestTranscriptTranslationGetDispatch(TestVideo): response = self.item.transcript(request=request, dispatch='translation/uk') self.assertDictEqual(json.loads(response.body), subs) + def test_translation_static_transcript(self): + """ + Set course static_asset_path and ensure we get redirected to that path + if it isn't found in the contentstore + """ + self.course.static_asset_path = 'dummy/static' + self.course.save() + store = editable_modulestore() + store.update_item(self.course, 'OEoXaMPEzfM') + + # Test youtube style en + request = Request.blank('/translation/en?videoId=12345') + response = self.item.transcript(request=request, dispatch='translation/en') + self.assertEqual(response.status, '307 Temporary Redirect') + self.assertIn( + ('Location', '/static/dummy/static/subs_12345.srt.sjson'), + response.headerlist + ) + + # Test HTML5 video style + self.item.sub = 'OEoXaMPEzfM' + request = Request.blank('/translation/en') + response = self.item.transcript(request=request, dispatch='translation/en') + self.assertEqual(response.status, '307 Temporary Redirect') + self.assertIn( + ('Location', '/static/dummy/static/subs_OEoXaMPEzfM.srt.sjson'), + response.headerlist + ) + + # Test different language to ensure we are just ignoring it since we can't + # translate with static fallback + request = Request.blank('/translation/uk') + response = self.item.transcript(request=request, dispatch='translation/uk') + self.assertEqual(response.status, '404 Not Found') + class TestStudioTranscriptTranslationGetDispatch(TestVideo): """ diff --git a/lms/djangoapps/courseware/views.py b/lms/djangoapps/courseware/views.py index 06d702b204..342fec5a54 100644 --- a/lms/djangoapps/courseware/views.py +++ b/lms/djangoapps/courseware/views.py @@ -4,6 +4,7 @@ Courseware views functions import logging import urllib +import json from collections import defaultdict from django.utils.translation import ugettext as _ @@ -12,8 +13,9 @@ from django.conf import settings from django.core.context_processors import csrf from django.core.exceptions import PermissionDenied from django.core.urlresolvers import reverse -from django.contrib.auth.models import User +from django.contrib.auth.models import User, AnonymousUser from django.contrib.auth.decorators import login_required +from django.views.decorators.http import require_GET from django.http import Http404, HttpResponse from django.shortcuts import redirect from edxmako.shortcuts import render_to_response, render_to_string @@ -24,8 +26,7 @@ from markupsafe import escape from courseware import grades from courseware.access import has_access -from courseware.courses import get_courses, get_course_with_access, get_studio_url, sort_by_announcement - +from courseware.courses import get_courses, get_course, get_studio_url, get_course_with_access, sort_by_announcement from courseware.masquerade import setup_masquerade from courseware.model_data import FieldDataCache from .module_render import toc_for_course, get_module_for_descriptor, get_module @@ -98,7 +99,6 @@ def render_accordion(request, course, chapter, section, field_data_cache): Returns the html string """ - # grab the table of contents user = User.objects.prefetch_related("groups").get(id=request.user.id) request.user = user # keep just one instance of User @@ -833,3 +833,58 @@ def get_static_tab_contents(request, course, tab): ) return html + + +@require_GET +def get_course_lti_endpoints(request, course_id): + """ + View that, given a course_id, returns the a JSON object that enumerates all of the LTI endpoints for that course. + + The LTI 2.0 result service spec at + http://www.imsglobal.org/lti/ltiv2p0/uml/purl.imsglobal.org/vocab/lis/v2/outcomes/Result/service.html + says "This specification document does not prescribe a method for discovering the endpoint URLs." This view + function implements one way of discovering these endpoints, returning a JSON array when accessed. + + Arguments: + request (django request object): the HTTP request object that triggered this view function + course_id (unicode): id associated with the course + + Returns: + (django response object): HTTP response. 404 if course is not found, otherwise 200 with JSON body. + """ + try: + course = get_course(course_id, depth=2) + except ValueError: # get_course raises ValueError if course_id is invalid or doesn't refer to a course + return HttpResponse(status=404) + + anonymous_user = AnonymousUser() + anonymous_user.known = False # make these "noauth" requests like module_render.handle_xblock_callback_noauth + lti_descriptors = modulestore().get_items(Location("i4x", course.org, course.number, "lti", None), course.id) + + lti_noauth_modules = [ + get_module_for_descriptor( + anonymous_user, + request, + descriptor, + FieldDataCache.cache_for_descriptor_descendents( + course_id, + anonymous_user, + descriptor + ), + course_id + ) + for descriptor in lti_descriptors + ] + + endpoints = [ + { + 'display_name': module.display_name, + 'lti_2_0_result_service_json_endpoint': module.get_outcome_service_url( + service_name='lti_2_0_result_rest_handler') + "/user/{anon_user_id}", + 'lti_1_1_result_service_xml_endpoint': module.get_outcome_service_url( + service_name='grade_handler'), + } + for module in lti_noauth_modules + ] + + return HttpResponse(json.dumps(endpoints), content_type='application/json') diff --git a/lms/djangoapps/django_comment_client/management/commands/get_discussion_link.py b/lms/djangoapps/django_comment_client/management/commands/get_discussion_link.py new file mode 100644 index 0000000000..803fd3b4aa --- /dev/null +++ b/lms/djangoapps/django_comment_client/management/commands/get_discussion_link.py @@ -0,0 +1,22 @@ +from django.core.management.base import BaseCommand, CommandError + +from courseware.courses import get_course + + +class Command(BaseCommand): + args = "<course_id>" + + def handle(self, *args, **options): + if not args: + raise CommandError("Course id not specified") + if len(args) > 1: + raise CommandError("Only one course id may be specifiied") + course_id = args[0] + + try: + course = get_course(course_id) + except ValueError: + raise CommandError("Invalid course id: {}".format(course_id)) + + if course.discussion_link: + self.stdout.write(course.discussion_link) diff --git a/lms/djangoapps/instructor/tests/test_api.py b/lms/djangoapps/instructor/tests/test_api.py index 29c4e5ba09..3b225f2a05 100644 --- a/lms/djangoapps/instructor/tests/test_api.py +++ b/lms/djangoapps/instructor/tests/test_api.py @@ -11,6 +11,7 @@ from urllib import quote from django.test import TestCase from nose.tools import raises from mock import Mock, patch +from django.conf import settings from django.test.utils import override_settings from django.conf import settings from django.core.urlresolvers import reverse @@ -103,6 +104,7 @@ class TestCommonExceptions400(unittest.TestCase): @override_settings(MODULESTORE=TEST_DATA_MIXED_MODULESTORE) +@patch.dict(settings.FEATURES, {'ENABLE_INSTRUCTOR_EMAIL': True, 'REQUIRE_COURSE_EMAIL_AUTH': False}) class TestInstructorAPIDenyLevels(ModuleStoreTestCase, LoginEnrollmentTestCase): """ Ensure that users cannot access endpoints they shouldn't be able to. @@ -1603,6 +1605,7 @@ class TestInstructorAPIRegradeTask(ModuleStoreTestCase, LoginEnrollmentTestCase) @override_settings(MODULESTORE=TEST_DATA_MIXED_MODULESTORE) +@patch.dict(settings.FEATURES, {'ENABLE_INSTRUCTOR_EMAIL': True, 'REQUIRE_COURSE_EMAIL_AUTH': False}) class TestInstructorSendEmail(ModuleStoreTestCase, LoginEnrollmentTestCase): """ Checks that only instructors have access to email endpoints, and that diff --git a/lms/djangoapps/instructor/tests/test_legacy_email.py b/lms/djangoapps/instructor/tests/test_legacy_email.py index e818561f85..dd42dd97c5 100644 --- a/lms/djangoapps/instructor/tests/test_legacy_email.py +++ b/lms/djangoapps/instructor/tests/test_legacy_email.py @@ -50,7 +50,7 @@ class TestInstructorDashboardEmailView(ModuleStoreTestCase): # Select the Email view of the instructor dash session = self.client.session - session['idash_mode'] = 'Email' + session[u'idash_mode:{0}'.format(self.course.location.course_id)] = 'Email' session.save() response = self.client.get(self.url) @@ -108,3 +108,38 @@ class TestInstructorDashboardEmailView(ModuleStoreTestCase): # Assert that the URL for the email view is not in the response response = self.client.get(self.url) self.assertFalse(self.email_link in response.content) + + @patch.dict(settings.FEATURES, {'ENABLE_INSTRUCTOR_EMAIL': True}) + def test_send_mail_unauthorized(self): + """ Test 'Send email' action returns an error if course is not authorized to send email. """ + + response = self.client.post( + self.url, { + 'action': 'Send email', + 'to_option': 'all', + 'subject': "Welcome to the course!", + 'message': "Lets start with an introduction!" + } + ) + self.assertContains(response, "Email is not enabled for this course.") + + @patch.dict(settings.FEATURES, {'ENABLE_INSTRUCTOR_EMAIL': True}) + def test_send_mail_authorized(self): + """ Test 'Send email' action when course is authorized to send email. """ + + course_authorization = CourseAuthorization(course_id=self.course.id, email_enabled=True) + course_authorization.save() + + session = self.client.session + session[u'idash_mode:{0}'.format(self.course.location.course_id)] = 'Email' + session.save() + + response = self.client.post( + self.url, { + 'action': 'Send email', + 'to_option': 'all', + 'subject': 'Welcome to the course!', + 'message': 'Lets start with an introduction!', + } + ) + self.assertContains(response, "Your email was successfully queued for sending.") diff --git a/lms/djangoapps/instructor/views/api.py b/lms/djangoapps/instructor/views/api.py index b05de8f019..a13743ccbb 100644 --- a/lms/djangoapps/instructor/views/api.py +++ b/lms/djangoapps/instructor/views/api.py @@ -66,6 +66,7 @@ from .tools import ( parse_datetime, set_due_date_extension, strip_if_string, + bulk_email_is_enabled_for_course, ) from xmodule.modulestore import Location from xmodule.modulestore.locations import SlashSeparatedCourseKey @@ -1065,7 +1066,14 @@ def send_email(request, course_id): - 'subject' specifies email's subject - 'message' specifies email's content """ +<<<<<<< HEAD course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id) +======= + + if not bulk_email_is_enabled_for_course(course_id): + return HttpResponseForbidden("Email is not enabled for this course.") + +>>>>>>> edx/master send_to = request.POST.get("send_to") subject = request.POST.get("subject") message = request.POST.get("message") diff --git a/lms/djangoapps/instructor/views/instructor_dashboard.py b/lms/djangoapps/instructor/views/instructor_dashboard.py index f38d8cfc69..b8f1969f7e 100644 --- a/lms/djangoapps/instructor/views/instructor_dashboard.py +++ b/lms/djangoapps/instructor/views/instructor_dashboard.py @@ -26,8 +26,12 @@ from student.models import CourseEnrollment from bulk_email.models import CourseAuthorization from class_dashboard.dashboard_data import get_section_display_name, get_array_section_has_problem +<<<<<<< HEAD from .tools import get_units_with_due_date, title_or_url from xmodule.modulestore.locations import SlashSeparatedCourseKey +======= +from .tools import get_units_with_due_date, title_or_url, bulk_email_is_enabled_for_course +>>>>>>> edx/master @ensure_csrf_cookie @@ -62,9 +66,14 @@ def instructor_dashboard_2(request, course_id): sections.insert(3, _section_extensions(course)) # Gate access to course email by feature flag & by course-specific authorization +<<<<<<< HEAD if settings.FEATURES['ENABLE_INSTRUCTOR_EMAIL'] and \ is_studio_course and CourseAuthorization.instructor_email_enabled(course_key): sections.append(_section_send_email(course_key, access, course)) +======= + if bulk_email_is_enabled_for_course(course_id): + sections.append(_section_send_email(course_id, access, course)) +>>>>>>> edx/master # Gate access to Metrics tab by featue flag and staff authorization if settings.FEATURES['CLASS_DASHBOARD'] and access['staff']: diff --git a/lms/djangoapps/instructor/views/legacy.py b/lms/djangoapps/instructor/views/legacy.py index 00efa1b8e5..e4c9b5b8c2 100644 --- a/lms/djangoapps/instructor/views/legacy.py +++ b/lms/djangoapps/instructor/views/legacy.py @@ -52,7 +52,7 @@ from django_comment_common.models import ( ) from django_comment_client.utils import has_forum_access from instructor.offline_gradecalc import student_grades, offline_grades_available -from instructor.views.tools import strip_if_string +from instructor.views.tools import strip_if_string, bulk_email_is_enabled_for_course from instructor_task.api import ( get_running_instructor_tasks, get_instructor_task_history, @@ -116,10 +116,11 @@ def instructor_dashboard(request, course_id): # the instructor dashboard page is modal: grades, psychometrics, admin # keep that state in request.session (defaults to grades mode) idash_mode = request.POST.get('idash_mode', '') + idash_mode_key = u'idash_mode:{0}'.format(course_id) if idash_mode: - request.session['idash_mode'] = idash_mode + request.session[idash_mode_key] = idash_mode else: - idash_mode = request.session.get('idash_mode', 'Grades') + idash_mode = request.session.get(idash_mode_key, 'Grades') enrollment_number = CourseEnrollment.num_enrolled_in(course_key) @@ -843,6 +844,7 @@ def instructor_dashboard(request, course_id): email_subject = request.POST.get("subject") html_message = request.POST.get("message") +<<<<<<< HEAD try: # Create the CourseEmail object. This is saved immediately, so that # any transaction that has been pending up to this point will also be @@ -859,19 +861,38 @@ def instructor_dashboard(request, course_id): error_msg = "Failed to send email! ({0})".format(err) msg += "<font color='red'>" + error_msg + "</font>" log.exception(error_msg) +======= + if bulk_email_is_enabled_for_course(course_id): + try: + # Create the CourseEmail object. This is saved immediately, so that + # any transaction that has been pending up to this point will also be + # committed. + email = CourseEmail.create(course_id, request.user, email_to_option, email_subject, html_message) + + # Submit the task, so that the correct InstructorTask object gets created (for monitoring purposes) + submit_bulk_course_email(request, course_id, email.id) # pylint: disable=E1101 + + except Exception as err: + # Catch any errors and deliver a message to the user + error_msg = "Failed to send email! ({0})".format(err) + msg += "<font color='red'>" + error_msg + "</font>" + log.exception(error_msg) +>>>>>>> edx/master - else: - # If sending the task succeeds, deliver a success message to the user. - if email_to_option == "all": - text = _( - "Your email was successfully queued for sending. " - "Please note that for large classes, it may take up to an hour " - "(or more, if other courses are simultaneously sending email) " - "to send all emails." - ) else: - text = _('Your email was successfully queued for sending.') - email_msg = '<div class="msg msg-confirm"><p class="copy">{text}</p></div>'.format(text=text) + # If sending the task succeeds, deliver a success message to the user. + if email_to_option == "all": + text = _( + "Your email was successfully queued for sending. " + "Please note that for large classes, it may take up to an hour " + "(or more, if other courses are simultaneously sending email) " + "to send all emails." + ) + else: + text = _('Your email was successfully queued for sending.') + email_msg = '<div class="msg msg-confirm"><p class="copy">{text}</p></div>'.format(text=text) + else: + msg += "<font color='red'>Email is not enabled for this course.</font>" elif "Show Background Email Task History" in action: message, datatable = get_background_task_table(course_key, task_type='bulk_course_email') @@ -984,8 +1005,12 @@ def instructor_dashboard(request, course_id): # 1. Feature flag is on # 2. We have explicitly enabled email for the given course via django-admin # 3. It is NOT an XML course +<<<<<<< HEAD if settings.FEATURES['ENABLE_INSTRUCTOR_EMAIL'] and \ CourseAuthorization.instructor_email_enabled(course_key) and is_studio_course: +======= + if bulk_email_is_enabled_for_course(course_id): +>>>>>>> edx/master show_email_tab = True # display course stats only if there is no other table to display: diff --git a/lms/djangoapps/instructor/views/tools.py b/lms/djangoapps/instructor/views/tools.py index 769595784a..ce79f7c916 100644 --- a/lms/djangoapps/instructor/views/tools.py +++ b/lms/djangoapps/instructor/views/tools.py @@ -4,6 +4,7 @@ Tools for the instructor dashboard import dateutil import json +from django.conf import settings from django.contrib.auth.models import User from django.http import HttpResponseBadRequest from django.utils.timezone import utc @@ -11,6 +12,10 @@ from django.utils.translation import ugettext as _ from courseware.models import StudentModule from xmodule.fields import Date +from xmodule.modulestore import XML_MODULESTORE_TYPE +from xmodule.modulestore.django import modulestore + +from bulk_email.models import CourseAuthorization DATE_FIELD = Date() @@ -45,6 +50,24 @@ def handle_dashboard_error(view): return wrapper +def bulk_email_is_enabled_for_course(course_id): + """ + Staff can only send bulk email for a course if all the following conditions are true: + 1. Bulk email feature flag is on. + 2. It is a studio course. + 3. Bulk email is enabled for the course. + """ + + bulk_email_enabled_globally = (settings.FEATURES['ENABLE_INSTRUCTOR_EMAIL'] == True) + is_studio_course = (modulestore().get_modulestore_type(course_id) != XML_MODULESTORE_TYPE) + bulk_email_enabled_for_course = CourseAuthorization.instructor_email_enabled(course_id) + + if bulk_email_enabled_globally and is_studio_course and bulk_email_enabled_for_course: + return True + + return False + + def strip_if_string(value): if isinstance(value, basestring): return value.strip() diff --git a/lms/djangoapps/instructor_task/admin.py b/lms/djangoapps/instructor_task/admin.py new file mode 100644 index 0000000000..f453c6dbb5 --- /dev/null +++ b/lms/djangoapps/instructor_task/admin.py @@ -0,0 +1,35 @@ +""" +Basic admin screens to search and edit InstructorTasks. + +This will mostly involve searching by course_id or task_id and manually failing +a task. + +""" +from django.contrib import admin +from .models import InstructorTask + +class InstructorTaskAdmin(admin.ModelAdmin): + list_display = [ + 'task_id', + 'task_type', + 'course_id', + 'username', + 'email', + 'created', + 'updated', + ] + list_filter = ['task_type', 'task_state'] + search_fields = [ + 'task_id', 'course_id', 'requester__email', 'requester__username' + ] + raw_id_fields = ['requester'] # avoid trying to make a select dropdown + + def email(self, task): + return task.requester.email + email.admin_order_field = 'requester__email' + + def username(self, task): + return task.requester.username + email.admin_order_field = 'requester__username' + +admin.site.register(InstructorTask, InstructorTaskAdmin) diff --git a/lms/djangoapps/linkedin/management/commands/linkedin_mailusers.py b/lms/djangoapps/linkedin/management/commands/linkedin_mailusers.py index ae1e553e69..afd81f08d0 100644 --- a/lms/djangoapps/linkedin/management/commands/linkedin_mailusers.py +++ b/lms/djangoapps/linkedin/management/commands/linkedin_mailusers.py @@ -205,7 +205,11 @@ class Command(BaseCommand): 'linkedin_add_url': self.certificate_url(cert), }) - context = {'courses_list': courses_list, 'num_courses': len(courses_list)} + context = { + 'courses_list': courses_list, + 'num_courses': len(courses_list), + 'google_analytics': settings.GOOGLE_ANALYTICS_LINKEDIN, + } body = render_to_string('linkedin/linkedin_email.html', context) subject = u'{}, Add your Achievements to your LinkedIn Profile'.format(user.profile.name) if mock_run: diff --git a/lms/djangoapps/shoppingcart/models.py b/lms/djangoapps/shoppingcart/models.py index e33e88a06d..b257345cf9 100644 --- a/lms/djangoapps/shoppingcart/models.py +++ b/lms/djangoapps/shoppingcart/models.py @@ -472,19 +472,19 @@ class CertificateItem(OrderItem): user_email=course_enrollment.user.email, order_number=order_number) to_email = [settings.PAYMENT_SUPPORT_EMAIL] - from_email = [microsite.get_value( - 'payment_support_email', - settings.PAYMENT_SUPPORT_EMAIL - )] + from_email = microsite.get_value('payment_support_email', settings.PAYMENT_SUPPORT_EMAIL) try: send_mail(subject, message, from_email, to_email, fail_silently=False) - except (smtplib.SMTPException, BotoServerError): - err_str = 'Failed sending email to billing request a refund for verified certiciate (User {user}, Course {course}, CourseEnrollmentID {ce_id}, Order #{order})' + except Exception as exception: # pylint: disable=broad-except + err_str = ('Failed sending email to billing to request a refund for verified certificate' + ' (User {user}, Course {course}, CourseEnrollmentID {ce_id}, Order #{order})\n{exception}') log.error(err_str.format( user=course_enrollment.user, course=course_enrollment.course_id, ce_id=course_enrollment.id, - order=order_number)) + order=order_number, + exception=exception, + )) return target_cert diff --git a/lms/djangoapps/shoppingcart/tests/test_models.py b/lms/djangoapps/shoppingcart/tests/test_models.py index af9ffe1de0..ff6ccb6694 100644 --- a/lms/djangoapps/shoppingcart/tests/test_models.py +++ b/lms/djangoapps/shoppingcart/tests/test_models.py @@ -344,21 +344,22 @@ class CertificateItemTest(ModuleStoreTestCase): min_price=self.cost) course_mode.save() - patcher = patch('student.models.server_track') - self.mock_server_track = patcher.start() + patcher = patch('student.models.tracker') + self.mock_tracker = patcher.start() self.addCleanup(patcher.stop) - crum_patcher = patch('student.models.crum.get_current_request') - self.mock_get_current_request = crum_patcher.start() - self.addCleanup(crum_patcher.stop) - self.mock_get_current_request.return_value = sentinel.request def test_existing_enrollment(self): CourseEnrollment.enroll(self.user, self.course_key) cart = Order.get_cart_for_user(user=self.user) CertificateItem.add_to_order(cart, self.course_key, self.cost, 'verified') # verify that we are still enrolled +<<<<<<< HEAD self.assertTrue(CourseEnrollment.is_enrolled(self.user, self.course_key)) self.mock_server_track.reset_mock() +======= + self.assertTrue(CourseEnrollment.is_enrolled(self.user, self.course_id)) + self.mock_tracker.reset_mock() +>>>>>>> edx/master cart.purchase() enrollment = CourseEnrollment.objects.get(user=self.user, course_id=self.course_key) self.assertEquals(enrollment.mode, u'verified') @@ -411,6 +412,33 @@ class CertificateItemTest(ModuleStoreTestCase): self.assertTrue(target_certs[0].refund_requested_time) self.assertEquals(target_certs[0].order.status, 'refunded') + def test_refund_cert_callback_before_expiration_email(self): + """ Test that refund emails are being sent correctly. """ + course_id = "refund_before_expiration/test/one" + many_days = datetime.timedelta(days=60) + + CourseFactory.create(org='refund_before_expiration', number='test', run='course', display_name='one') + course_mode = CourseMode(course_id=course_id, + mode_slug="verified", + mode_display_name="verified cert", + min_price=self.cost, + expiration_datetime=datetime.datetime.now(pytz.utc) + many_days) + course_mode.save() + + CourseEnrollment.enroll(self.user, course_id, 'verified') + cart = Order.get_cart_for_user(user=self.user) + CertificateItem.add_to_order(cart, course_id, self.cost, 'verified') + cart.purchase() + + mail.outbox = [] + with patch('shoppingcart.models.log.error') as mock_error_logger: + CourseEnrollment.unenroll(self.user, course_id) + self.assertFalse(mock_error_logger.called) + self.assertEquals(len(mail.outbox), 1) + self.assertEquals('[Refund] User-Requested Refund', mail.outbox[0].subject) + self.assertEquals(settings.PAYMENT_SUPPORT_EMAIL, mail.outbox[0].from_email) + self.assertIn('has requested a refund on Order', mail.outbox[0].body) + @patch('shoppingcart.models.log.error') def test_refund_cert_callback_before_expiration_email_error(self, error_logger): # If there's an error sending an email to billing, we need to log this error @@ -432,8 +460,13 @@ class CertificateItemTest(ModuleStoreTestCase): cart.purchase() with patch('shoppingcart.models.send_mail', side_effect=smtplib.SMTPException): +<<<<<<< HEAD CourseEnrollment.unenroll(self.user, course_key) self.assertTrue(error_logger.called) +======= + CourseEnrollment.unenroll(self.user, course_id) + self.assertTrue(error_logger.call_args[0][0].startswith('Failed sending email')) +>>>>>>> edx/master def test_refund_cert_callback_after_expiration(self): # If the expiration date has passed, the user cannot get a refund diff --git a/lms/djangoapps/shoppingcart/tests/test_views.py b/lms/djangoapps/shoppingcart/tests/test_views.py index 99c28eabae..80df30cffa 100644 --- a/lms/djangoapps/shoppingcart/tests/test_views.py +++ b/lms/djangoapps/shoppingcart/tests/test_views.py @@ -40,8 +40,8 @@ postpay_mock = Mock() @override_settings(MODULESTORE=TEST_DATA_MONGO_MODULESTORE) class ShoppingCartViewsTests(ModuleStoreTestCase): def setUp(self): - patcher = patch('student.models.server_track') - self.mock_server_track = patcher.start() + patcher = patch('student.models.tracker') + self.mock_tracker = patcher.start() self.user = UserFactory.create() self.user.set_password('password') self.user.save() @@ -221,7 +221,7 @@ class ShoppingCartViewsTests(ModuleStoreTestCase): s['attempting_upgrade'] = True s.save() - self.mock_server_track.reset_mock() + self.mock_tracker.emit.reset_mock() # pylint: disable=maybe-no-member resp = self.client.get(reverse('shoppingcart.views.show_receipt', args=[self.cart.id])) # Once they've upgraded, they're no longer *attempting* to upgrade @@ -246,8 +246,7 @@ class ShoppingCartViewsTests(ModuleStoreTestCase): course_enrollment = CourseEnrollment.get_or_create_enrollment(self.user, self.course_key) course_enrollment.emit_event('edx.course.enrollment.upgrade.succeeded') - self.mock_server_track.assert_any_call( - None, + self.mock_tracker.emit.assert_any_call( # pylint: disable=maybe-no-member 'edx.course.enrollment.upgrade.succeeded', { 'user_id': course_enrollment.user.id, diff --git a/lms/djangoapps/staticbook/views.py b/lms/djangoapps/staticbook/views.py index f1eee698c5..3df692d7de 100644 --- a/lms/djangoapps/staticbook/views.py +++ b/lms/djangoapps/staticbook/views.py @@ -104,6 +104,7 @@ def pdf_index(request, course_id, book_index, chapter=None, page=None): viewer_params += current_chapter['url'] current_url = current_chapter['url'] + viewer_params += '#zoom=page-fit' if page is not None: viewer_params += '&page={}'.format(page) diff --git a/lms/djangoapps/verify_student/tests/test_views.py b/lms/djangoapps/verify_student/tests/test_views.py index 88f46fab0d..aa3c39c385 100644 --- a/lms/djangoapps/verify_student/tests/test_views.py +++ b/lms/djangoapps/verify_student/tests/test_views.py @@ -10,19 +10,20 @@ verify_student/start?course_id=MITx/6.002x/2013_Spring # create ---> To Payment """ +import json +import mock import urllib from mock import patch, Mock import pytz from datetime import timedelta, datetime +from django.test.client import Client from django.test import TestCase from django.test.utils import override_settings from django.conf import settings from django.core.urlresolvers import reverse from django.core.exceptions import ObjectDoesNotExist -from mock import sentinel - from xmodule.modulestore.tests.factories import CourseFactory from xmodule.modulestore.locations import SlashSeparatedCourseKey from courseware.tests.tests import TEST_DATA_MONGO_MODULESTORE @@ -34,6 +35,7 @@ from verify_student.models import SoftwareSecurePhotoVerification from reverification.tests.factories import MidcourseReverificationWindowFactory + def mock_render_to_response(*args, **kwargs): return render_to_response(*args, **kwargs) @@ -79,6 +81,34 @@ class TestVerifyView(TestCase): self.assertEquals(response.status_code, 302) +@override_settings(MODULESTORE=TEST_DATA_MONGO_MODULESTORE) +class TestVerifiedView(TestCase): + """ + Tests for VerifiedView. + """ + def setUp(self): + self.user = UserFactory.create(username="abc", password="test") + self.client.login(username="abc", password="test") + self.course_id = "MITx/999.1x/Verified_Course" + self.course = CourseFactory.create(org='MITx', number='999.1x', display_name='Verified Course') + + def test_verified_course_mode_none(self): + """ + Test VerifiedView when there is no active verified mode for course. + """ + url = reverse('verify_student_verified', kwargs={"course_id": self.course_id}) + + verify_mode = CourseMode.mode_for_course(self.course_id, "verified") + # Verify mode should be None. + self.assertEquals(verify_mode, None) + + response = self.client.get(url) + # Status code should be 302. + self.assertTrue(response.status_code, 302) + # Location should contains dashboard. + self.assertIn('dashboard', response._headers.get('location')[1]) + + @override_settings(MODULESTORE=TEST_DATA_MONGO_MODULESTORE) class TestReverifyView(TestCase): """ @@ -125,6 +155,218 @@ class TestReverifyView(TestCase): self.assertTrue(context['error']) +@override_settings(MODULESTORE=TEST_DATA_MONGO_MODULESTORE) +class TestPhotoVerificationResultsCallback(TestCase): + """ + Tests for the results_callback view. + """ + def setUp(self): + self.course_id = 'Robot/999/Test_Course' + CourseFactory.create(org='Robot', number='999', display_name='Test Course') + self.user = UserFactory.create() + self.attempt = SoftwareSecurePhotoVerification( + status="submitted", + user=self.user + ) + self.attempt.save() + self.receipt_id = self.attempt.receipt_id + self.client = Client() + + def mocked_has_valid_signature(method, headers_dict, body_dict, access_key, secret_key): + return True + + def test_invalid_json(self): + """ + Test for invalid json being posted by software secure. + """ + data = {"Testing invalid"} + response = self.client.post( + reverse('verify_student_results_callback'), + data=data, + content_type='application/json', + HTTP_AUTHORIZATION='test BBBBBBBBBBBBBBBBBBBB: testing', + HTTP_DATE='testdate' + ) + self.assertIn('Invalid JSON', response.content) + self.assertEqual(response.status_code, 400) + + def test_invalid_dict(self): + """ + Test for invalid dictionary being posted by software secure. + """ + data = '"\\"Test\\tTesting"' + response = self.client.post( + reverse('verify_student_results_callback'), + data=data, + content_type='application/json', + HTTP_AUTHORIZATION='test BBBBBBBBBBBBBBBBBBBB:testing', + HTTP_DATE='testdate' + ) + self.assertIn('JSON should be dict', response.content) + self.assertEqual(response.status_code, 400) + + @mock.patch('verify_student.ssencrypt.has_valid_signature', mock.Mock(side_effect=mocked_has_valid_signature)) + def test_invalid_access_key(self): + """ + Test for invalid access key. + """ + data = { + "EdX-ID": self.receipt_id, + "Result": "Testing", + "Reason": "Testing", + "MessageType": "Testing" + } + json_data = json.dumps(data) + response = self.client.post( + reverse('verify_student_results_callback'), + data=json_data, + content_type='application/json', + HTTP_AUTHORIZATION='test testing:testing', + HTTP_DATE='testdate' + ) + self.assertIn('Access key invalid', response.content) + self.assertEqual(response.status_code, 400) + + @mock.patch('verify_student.ssencrypt.has_valid_signature', mock.Mock(side_effect=mocked_has_valid_signature)) + def test_wrong_edx_id(self): + """ + Test for wrong id of Software secure verification attempt. + """ + data = { + "EdX-ID": "Invalid-Id", + "Result": "Testing", + "Reason": "Testing", + "MessageType": "Testing" + } + json_data = json.dumps(data) + response = self.client.post( + reverse('verify_student_results_callback'), + data=json_data, + content_type='application/json', + HTTP_AUTHORIZATION='test BBBBBBBBBBBBBBBBBBBB:testing', + HTTP_DATE='testdate' + ) + self.assertIn('edX ID Invalid-Id not found', response.content) + self.assertEqual(response.status_code, 400) + + @mock.patch('verify_student.ssencrypt.has_valid_signature', mock.Mock(side_effect=mocked_has_valid_signature)) + def test_pass_result(self): + """ + Test for verification passed. + """ + data = { + "EdX-ID": self.receipt_id, + "Result": "PASS", + "Reason": "", + "MessageType": "You have been verified." + } + json_data = json.dumps(data) + response = self.client.post( + reverse('verify_student_results_callback'), data=json_data, + content_type='application/json', + HTTP_AUTHORIZATION='test BBBBBBBBBBBBBBBBBBBB:testing', + HTTP_DATE='testdate' + ) + attempt = SoftwareSecurePhotoVerification.objects.get(receipt_id=self.receipt_id) + self.assertEqual(attempt.status, u'approved') + self.assertEquals(response.content, 'OK!') + + @mock.patch('verify_student.ssencrypt.has_valid_signature', mock.Mock(side_effect=mocked_has_valid_signature)) + def test_fail_result(self): + """ + Test for failed verification. + """ + data = { + "EdX-ID": self.receipt_id, + "Result": 'FAIL', + "Reason": 'Invalid photo', + "MessageType": 'Your photo doesn\'t meet standards.' + } + json_data = json.dumps(data) + response = self.client.post( + reverse('verify_student_results_callback'), + data=json_data, + content_type='application/json', + HTTP_AUTHORIZATION='test BBBBBBBBBBBBBBBBBBBB:testing', + HTTP_DATE='testdate' + ) + attempt = SoftwareSecurePhotoVerification.objects.get(receipt_id=self.receipt_id) + self.assertEqual(attempt.status, u'denied') + self.assertEqual(attempt.error_code, u'Your photo doesn\'t meet standards.') + self.assertEqual(attempt.error_msg, u'"Invalid photo"') + self.assertEquals(response.content, 'OK!') + + @mock.patch('verify_student.ssencrypt.has_valid_signature', mock.Mock(side_effect=mocked_has_valid_signature)) + def test_system_fail_result(self): + """ + Test for software secure result system failure. + """ + data = {"EdX-ID": self.receipt_id, + "Result": 'SYSTEM FAIL', + "Reason": 'Memory overflow', + "MessageType": 'You must retry the verification.'} + json_data = json.dumps(data) + response = self.client.post( + reverse('verify_student_results_callback'), + data=json_data, + content_type='application/json', + HTTP_AUTHORIZATION='test BBBBBBBBBBBBBBBBBBBB:testing', + HTTP_DATE='testdate' + ) + attempt = SoftwareSecurePhotoVerification.objects.get(receipt_id=self.receipt_id) + self.assertEqual(attempt.status, u'must_retry') + self.assertEqual(attempt.error_code, u'You must retry the verification.') + self.assertEqual(attempt.error_msg, u'"Memory overflow"') + self.assertEquals(response.content, 'OK!') + + @mock.patch('verify_student.ssencrypt.has_valid_signature', mock.Mock(side_effect=mocked_has_valid_signature)) + def test_unknown_result(self): + """ + test for unknown software secure result + """ + data = { + "EdX-ID": self.receipt_id, + "Result": 'Unknown', + "Reason": 'Unknown reason', + "MessageType": 'Unknown message' + } + json_data = json.dumps(data) + response = self.client.post( + reverse('verify_student_results_callback'), + data=json_data, + content_type='application/json', + HTTP_AUTHORIZATION='test BBBBBBBBBBBBBBBBBBBB:testing', + HTTP_DATE='testdate' + ) + self.assertIn('Result Unknown not understood', response.content) + + @mock.patch('verify_student.ssencrypt.has_valid_signature', mock.Mock(side_effect=mocked_has_valid_signature)) + def test_reverification(self): + """ + Test software secure result for reverification window. + """ + data = { + "EdX-ID": self.receipt_id, + "Result": "PASS", + "Reason": "", + "MessageType": "You have been verified." + } + window = MidcourseReverificationWindowFactory(course_id=self.course_id) + self.attempt.window = window + self.attempt.save() + json_data = json.dumps(data) + self.assertEqual(CourseEnrollment.objects.filter(course_id=self.course_id).count(), 0) + response = self.client.post( + reverse('verify_student_results_callback'), + data=json_data, + content_type='application/json', + HTTP_AUTHORIZATION='test BBBBBBBBBBBBBBBBBBBB:testing', + HTTP_DATE='testdate' + ) + self.assertEquals(response.content, 'OK!') + self.assertIsNotNone(CourseEnrollment.objects.get(course_id=self.course_id)) + + @override_settings(MODULESTORE=TEST_DATA_MONGO_MODULESTORE) class TestMidCourseReverifyView(TestCase): """ Tests for the midcourse reverification views """ @@ -134,15 +376,10 @@ class TestMidCourseReverifyView(TestCase): self.course_key = SlashSeparatedCourseKey("Robot", "999", "Test_Course") CourseFactory.create(org='Robot', number='999', display_name='Test Course') - patcher = patch('student.models.server_track') - self.mock_server_track = patcher.start() + patcher = patch('student.models.tracker') + self.mock_tracker = patcher.start() self.addCleanup(patcher.stop) - crum_patcher = patch('student.models.crum.get_current_request') - self.mock_get_current_request = crum_patcher.start() - self.addCleanup(crum_patcher.stop) - self.mock_get_current_request.return_value = sentinel.request - @patch('verify_student.views.render_to_response', render_mock) def test_midcourse_reverify_get(self): url = reverse('verify_student_midcourse_reverify', @@ -150,8 +387,7 @@ class TestMidCourseReverifyView(TestCase): response = self.client.get(url) # Check that user entering the reverify flow was logged - self.mock_server_track.assert_called_once_with( - sentinel.request, + self.mock_tracker.emit.assert_called_once_with( # pylint: disable=maybe-no-member 'edx.course.enrollment.reverify.started', { 'user_id': self.user.id, @@ -159,7 +395,7 @@ class TestMidCourseReverifyView(TestCase): 'mode': "verified", } ) - self.mock_server_track.reset_mock() + self.mock_tracker.emit.reset_mock() # pylint: disable=maybe-no-member self.assertEquals(response.status_code, 200) ((_template, context), _kwargs) = render_mock.call_args @@ -173,8 +409,7 @@ class TestMidCourseReverifyView(TestCase): response = self.client.post(url, {'face_image': ','}) # Check that submission event was logged - self.mock_server_track.assert_called_once_with( - sentinel.request, + self.mock_tracker.emit.assert_called_once_with( # pylint: disable=maybe-no-member 'edx.course.enrollment.reverify.submitted', { 'user_id': self.user.id, @@ -182,7 +417,7 @@ class TestMidCourseReverifyView(TestCase): 'mode': "verified", } ) - self.mock_server_track.reset_mock() + self.mock_tracker.emit.reset_mock() # pylint: disable=maybe-no-member self.assertEquals(response.status_code, 302) try: diff --git a/lms/djangoapps/verify_student/views.py b/lms/djangoapps/verify_student/views.py index 4986da460c..59c12598f9 100644 --- a/lms/djangoapps/verify_student/views.py +++ b/lms/djangoapps/verify_student/views.py @@ -121,6 +121,7 @@ class VerifiedView(View): if CourseEnrollment.enrollment_mode_for_user(request.user, course_id) == 'verified': return redirect(reverse('dashboard')) verify_mode = CourseMode.mode_for_course(course_id, "verified") +<<<<<<< HEAD chosen_price = request.session.get( "donation_for_course", {} @@ -128,6 +129,14 @@ class VerifiedView(View): course_id.to_deprecated_string(), verify_mode.min_price ) +======= + if verify_mode is None: + return redirect(reverse('dashboard')) + if course_id in request.session.get("donation_for_course", {}): + chosen_price = request.session["donation_for_course"][course_id] + else: + chosen_price = verify_mode.min_price.format("{:g}") +>>>>>>> edx/master course = course_from_id(course_id) context = { @@ -267,7 +276,10 @@ def results_callback(request): # If this is a reverification, log an event if attempt.window: course_id = attempt.window.course_id +<<<<<<< HEAD course_id = SlashSeparatedCourseKey.from_deprecated_string(course_id) +======= +>>>>>>> edx/master course = course_from_id(course_id) course_enrollment = CourseEnrollment.get_or_create_enrollment(attempt.user, course_id) course_enrollment.emit_event(EVENT_NAME_USER_REVERIFICATION_REVIEWED_BY_SOFTWARESECURE) diff --git a/lms/envs/acceptance.py b/lms/envs/acceptance.py index ee6256f5fb..d63dad99f4 100644 --- a/lms/envs/acceptance.py +++ b/lms/envs/acceptance.py @@ -88,6 +88,15 @@ TRACKING_BACKENDS.update({ } }) +EVENT_TRACKING_BACKENDS.update({ + 'mongo': { + 'ENGINE': 'eventtracking.backends.mongodb.MongoBackend', + 'OPTIONS': { + 'database': 'track' + } + } +}) + # Enable asset pipeline # Our fork of django-pipeline uses `PIPELINE` instead of `PIPELINE_ENABLED` diff --git a/lms/envs/aws.py b/lms/envs/aws.py index 4593269314..00705c8894 100644 --- a/lms/envs/aws.py +++ b/lms/envs/aws.py @@ -134,6 +134,7 @@ EMAIL_HOST = ENV_TOKENS.get('EMAIL_HOST', 'localhost') # django default is loca EMAIL_PORT = ENV_TOKENS.get('EMAIL_PORT', 25) # django default is 25 EMAIL_USE_TLS = ENV_TOKENS.get('EMAIL_USE_TLS', False) # django default is False SITE_NAME = ENV_TOKENS['SITE_NAME'] +HTTPS = ENV_TOKENS.get('HTTPS', HTTPS) SESSION_ENGINE = ENV_TOKENS.get('SESSION_ENGINE', SESSION_ENGINE) SESSION_COOKIE_DOMAIN = ENV_TOKENS.get('SESSION_COOKIE_DOMAIN') REGISTRATION_EXTRA_FIELDS = ENV_TOKENS.get('REGISTRATION_EXTRA_FIELDS', REGISTRATION_EXTRA_FIELDS) @@ -358,6 +359,7 @@ STUDENT_FILEUPLOAD_MAX_SIZE = ENV_TOKENS.get("STUDENT_FILEUPLOAD_MAX_SIZE", STUD # Event tracking TRACKING_BACKENDS.update(AUTH_TOKENS.get("TRACKING_BACKENDS", {})) +EVENT_TRACKING_BACKENDS.update(AUTH_TOKENS.get("EVENT_TRACKING_BACKENDS", {})) # Student identity verification settings VERIFY_STUDENT = AUTH_TOKENS.get("VERIFY_STUDENT", VERIFY_STUDENT) @@ -397,3 +399,7 @@ THIRD_PARTY_AUTH = AUTH_TOKENS.get('THIRD_PARTY_AUTH', THIRD_PARTY_AUTH) ##### ADVANCED_SECURITY_CONFIG ##### ADVANCED_SECURITY_CONFIG = ENV_TOKENS.get('ADVANCED_SECURITY_CONFIG', {}) + +##### GOOGLE ANALYTICS IDS ##### +GOOGLE_ANALYTICS_ACCOUNT = AUTH_TOKENS.get('GOOGLE_ANALYTICS_ACCOUNT') +GOOGLE_ANALYTICS_LINKEDIN = AUTH_TOKENS.get('GOOGLE_ANALYTICS_LINKEDIN') diff --git a/lms/envs/common.py b/lms/envs/common.py index 6d8862568c..28b17cd9a5 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -172,6 +172,9 @@ FEATURES = { # Enable instructor dash beta version link 'ENABLE_INSTRUCTOR_BETA_DASHBOARD': True, + # Toggle to enable certificates of courses on dashboard + 'ENABLE_VERIFIED_CERTIFICATES': False, + # Allow use of the hint managment instructor view. 'ENABLE_HINTER_INSTRUCTOR_VIEW': False, @@ -351,8 +354,6 @@ LIB_URL = '/static/js/' # Dev machines shouldn't need the book # BOOK_URL = '/static/book/' BOOK_URL = 'https://mitxstatic.s3.amazonaws.com/book_images/' # For AWS deploys -# RSS_URL = r'lms/templates/feed.rss' -# PRESS_URL = r'' RSS_TIMEOUT = 600 # Configuration option for when we want to grab server error pages @@ -394,7 +395,7 @@ LMS_MIGRATION_ALLOWED_IPS = [] ############################## EVENT TRACKING ################################# # FIXME: Should we be doing this truncation? -TRACK_MAX_EVENT = 10000 +TRACK_MAX_EVENT = 50000 DEBUG_TRACK_LOG = False @@ -407,19 +408,43 @@ TRACKING_BACKENDS = { } } +# We're already logging events, and we don't want to capture user +# names/passwords. Heartbeat events are likely not interesting. +TRACKING_IGNORE_URL_PATTERNS = [r'^/event', r'^/login', r'^/heartbeat'] + +EVENT_TRACKING_ENABLED = True +EVENT_TRACKING_BACKENDS = { + 'logger': { + 'ENGINE': 'eventtracking.backends.logger.LoggerBackend', + 'OPTIONS': { + 'name': 'tracking', + 'max_event_size': TRACK_MAX_EVENT, + } + } +} +EVENT_TRACKING_PROCESSORS = [ + { + 'ENGINE': 'track.shim.LegacyFieldMappingProcessor' + } +] + # Backwards compatibility with ENABLE_SQL_TRACKING_LOGS feature flag. -# In the future, adding the backend to TRACKING_BACKENDS enough. +# In the future, adding the backend to TRACKING_BACKENDS should be enough. if FEATURES.get('ENABLE_SQL_TRACKING_LOGS'): TRACKING_BACKENDS.update({ 'sql': { 'ENGINE': 'track.backends.django.DjangoBackend' } }) + EVENT_TRACKING_BACKENDS.update({ + 'sql': { + 'ENGINE': 'track.backends.django.DjangoBackend' + } + }) -# We're already logging events, and we don't want to capture user -# names/passwords. Heartbeat events are likely not interesting. -TRACKING_IGNORE_URL_PATTERNS = [r'^/event', r'^/login', r'^/heartbeat'] -TRACKING_ENABLED = True +######################## GOOGLE ANALYTICS ########################### +GOOGLE_ANALYTICS_ACCOUNT = 'GOOGLE_ANALYTICS_ACCOUNT_DUMMY' +GOOGLE_ANALYTICS_LINKEDIN = 'GOOGLE_ANALYTICS_LINKEDIN_DUMMY' ######################## subdomain specific settings ########################### COURSE_LISTINGS = {} @@ -496,7 +521,6 @@ SITE_ID = 1 SITE_NAME = "edx.org" HTTPS = 'on' ROOT_URLCONF = 'lms.urls' -IGNORABLE_404_ENDS = ('favicon.ico') # NOTE: Please set ALLOWED_HOSTS to some sane value, as we do not allow the default '*' # Platform Email @@ -527,8 +551,6 @@ TIME_ZONE = 'America/New_York' # http://en.wikipedia.org/wiki/List_of_tz_zones_ LANGUAGE_CODE = 'en' # http://www.i18nguy.com/unicode/language-identifiers.html # Sourced from http://www.localeplanet.com/icu/ and wikipedia -# Languages that don't have any reviewed strings are commented out; -# see https://www.transifex.com/projects/p/edx-platform/ LANGUAGES = ( ('en', u'English'), ('eo', u'Dummy Language (Esperanto)'), # Dummy languaged used for testing @@ -537,13 +559,14 @@ LANGUAGES = ( ('ar', u'العربية'), # Arabic ('az', u'azərbaycanca'), # Azerbaijani ('bg-bg', u'български (България)'), # Bulgarian (Bulgaria) - ('bn', u'বাংলা'), # Bengali ('bn-bd', u'বাংলা (বাংলাদেশ)'), # Bengali (Bangladesh) + ('bn-in', u'বাংলা (ভারত)'), # Bengali (India) ('bs', u'bosanski'), # Bosnian ('ca', u'Català'), # Catalan ('ca@valencia', u'Català (València)'), # Catalan (Valencia) ('cs', u'Čeština'), # Czech ('cy', u'Cymraeg'), # Welsh + ('da', u'dansk'), # Danish ('de-de', u'Deutsch (Deutschland)'), # German (Germany) ('el', u'Ελληνικά'), # Greek ('en@lolcat', u'LOLCAT English'), # LOLCAT English @@ -554,7 +577,6 @@ LANGUAGES = ( ('es-es', u'Español (España)'), # Spanish (Spain) ('es-mx', u'Español (México)'), # Spanish (Mexico) ('es-pe', u'Español (Perú)'), # Spanish (Peru) - ('es-us', u'Español (Estados Unidos)'), # Spanish (United States) ('et-ee', u'Eesti (Eesti)'), # Estonian (Estonia) ('eu-es', u'euskara (Espainia)'), # Basque (Spain) ('fa', u'فارسی'), # Persian @@ -571,6 +593,7 @@ LANGUAGES = ( ('ja-jp', u'日本語(日本)'), # Japanese (Japan) ('kk-kz', u'қазақ тілі (Қазақстан)'), # Kazakh (Kazakhstan) ('km-kh', u'ភាសាខ្មែរ (កម្ពុជា)'), # Khmer (Cambodia) + ('kn', u'ಕನ್ನಡ'), # Kannada ('ko-kr', u'한국어(대한민국)'), # Korean (Korea) ('lt-lt', u'Lietuvių (Lietuva)'), # Lithuanian (Lithuania) ('ml', u'മലയാളം'), # Malayalam @@ -582,6 +605,7 @@ LANGUAGES = ( ('pl', u'Polski'), # Polish ('pt-br', u'Português (Brasil)'), # Portuguese (Brazil) ('pt-pt', u'Português (Portugal)'), # Portuguese (Portugal) + ('ro', u'română'), # Romanian ('ru', u'Русский'), # Russian ('si', u'සිංහල'), # Sinhala ('sk', u'Slovenčina'), # Slovak diff --git a/lms/envs/dev.py b/lms/envs/dev.py index add0d48c12..4a2b9517e0 100644 --- a/lms/envs/dev.py +++ b/lms/envs/dev.py @@ -18,6 +18,7 @@ from logsettings import get_logger_config DEBUG = True TEMPLATE_DEBUG = True +HTTPS = 'off' FEATURES['DISABLE_START_DATES'] = False FEATURES['ENABLE_SQL_TRACKING_LOGS'] = True FEATURES['SUBDOMAIN_COURSE_LISTINGS'] = False # Enable to test subdomains--otherwise, want all courses to show up diff --git a/lms/envs/test.py b/lms/envs/test.py index f0f734532d..edaa4c7c45 100644 --- a/lms/envs/test.py +++ b/lms/envs/test.py @@ -37,6 +37,8 @@ FEATURES['ENABLE_INSTRUCTOR_BETA_DASHBOARD'] = True FEATURES['ENABLE_SHOPPING_CART'] = True +FEATURES['ENABLE_VERIFIED_CERTIFICATES'] = True + # Enable this feature for course staff grade downloads, to enable acceptance tests FEATURES['ENABLE_S3_GRADE_DOWNLOADS'] = True FEATURES['ALLOW_COURSE_STAFF_GRADE_DOWNLOADS'] = True @@ -315,3 +317,9 @@ FEATURES['USE_MICROSITES'] = True ######### LinkedIn ######## LINKEDIN_API['COMPANY_ID'] = '0000000' + +# Setting for the testing of Software Secure Result Callback +VERIFY_STUDENT["SOFTWARE_SECURE"] = { + "API_ACCESS_KEY": "BBBBBBBBBBBBBBBBBBBB", + "API_SECRET_KEY": "CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC", +} diff --git a/lms/lib/comment_client/user.py b/lms/lib/comment_client/user.py index fdea00062f..6d7f44f916 100644 --- a/lms/lib/comment_client/user.py +++ b/lms/lib/comment_client/user.py @@ -6,14 +6,14 @@ import settings class User(models.Model): - accessible_fields = ['username', 'email', 'follower_ids', 'upvoted_ids', 'downvoted_ids', + accessible_fields = ['username', 'follower_ids', 'upvoted_ids', 'downvoted_ids', 'id', 'external_id', 'subscribed_user_ids', 'children', 'course_id', 'subscribed_thread_ids', 'subscribed_commentable_ids', 'subscribed_course_ids', 'threads_count', 'comments_count', 'default_sort_key' ] - updatable_fields = ['username', 'external_id', 'email', 'default_sort_key'] + updatable_fields = ['username', 'external_id', 'default_sort_key'] initializable_fields = updatable_fields metric_tag_fields = ['course_id'] @@ -26,8 +26,7 @@ class User(models.Model): def from_django_user(cls, user): return cls(id=str(user.id), external_id=str(user.id), - username=user.username, - email=user.email) + username=user.username) def follow(self, source): params = {'source_type': source.type, 'source_id': source.id} diff --git a/lms/lib/xblock/runtime.py b/lms/lib/xblock/runtime.py index 5ecc92ca3c..4c547be647 100644 --- a/lms/lib/xblock/runtime.py +++ b/lms/lib/xblock/runtime.py @@ -5,7 +5,7 @@ Module implementing `xblock.runtime.Runtime` functionality for the LMS import re from django.core.urlresolvers import reverse - +from django.conf import settings from user_api import user_service from xmodule.modulestore.django import modulestore from xmodule.x_module import ModuleSystem @@ -100,6 +100,15 @@ class LmsHandlerUrls(object): if query: url += '?' + query + # If third-party, return fully-qualified url + if thirdparty: + scheme = "https" if settings.HTTPS == "on" else "http" + url = '{scheme}://{host}{path}'.format( + scheme=scheme, + host=settings.SITE_NAME, + path=url + ) + return url def local_resource_url(self, block, uri): diff --git a/lms/lib/xblock/test/test_runtime.py b/lms/lib/xblock/test/test_runtime.py index 96a4f1df27..a18677b8bc 100644 --- a/lms/lib/xblock/test/test_runtime.py +++ b/lms/lib/xblock/test/test_runtime.py @@ -3,6 +3,7 @@ Tests of the LMS XBlock Runtime and associated utilities """ from django.contrib.auth.models import User +from django.conf import settings from ddt import ddt, data from mock import Mock from unittest import TestCase @@ -89,6 +90,18 @@ class TestHandlerUrl(TestCase): self.assertIn('handler1', self._parsed_path('handler1')) self.assertIn('handler_a', self._parsed_path('handler_a')) + def test_thirdparty_fq(self): + """Testing the Fully-Qualified URL returned by thirdparty=True""" + parsed_fq_url = urlparse(self.runtime.handler_url(self.block, 'handler', thirdparty=True)) + self.assertEqual(parsed_fq_url.scheme, 'https') + self.assertEqual(parsed_fq_url.hostname, settings.SITE_NAME) + + def test_not_thirdparty_rel(self): + """Testing the Fully-Qualified URL returned by thirdparty=False""" + parsed_fq_url = urlparse(self.runtime.handler_url(self.block, 'handler', thirdparty=False)) + self.assertEqual(parsed_fq_url.scheme, '') + self.assertIsNone(parsed_fq_url.hostname) + class TestUserServiceAPI(TestCase): """Test the user service interface""" diff --git a/lms/static/images/press/amradiowrks_press_logo_178x138.jpg b/lms/static/images/press/amradiowrks_press_logo_178x138.jpg deleted file mode 100755 index fb76aefc9c..0000000000 Binary files a/lms/static/images/press/amradiowrks_press_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/ap_logo_178x138.jpg b/lms/static/images/press/ap_logo_178x138.jpg deleted file mode 100644 index 48f150021e..0000000000 Binary files a/lms/static/images/press/ap_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/arstechnica_logo_178x138.jpg b/lms/static/images/press/arstechnica_logo_178x138.jpg deleted file mode 100755 index 2e471640ec..0000000000 Binary files a/lms/static/images/press/arstechnica_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/austin_statesman_logo_178x138.jpg b/lms/static/images/press/austin_statesman_logo_178x138.jpg deleted file mode 100644 index 2e760899cd..0000000000 Binary files a/lms/static/images/press/austin_statesman_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/baltsun_logo_178x138.jpg b/lms/static/images/press/baltsun_logo_178x138.jpg deleted file mode 100755 index 3dc619ac7b..0000000000 Binary files a/lms/static/images/press/baltsun_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/bbc_logo_178x138.jpeg b/lms/static/images/press/bbc_logo_178x138.jpeg deleted file mode 100644 index e3395e56a9..0000000000 Binary files a/lms/static/images/press/bbc_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/bloomberg_logo_178x138.jpeg b/lms/static/images/press/bloomberg_logo_178x138.jpeg deleted file mode 100644 index d87819b7cd..0000000000 Binary files a/lms/static/images/press/bloomberg_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/bostinno_logo_178x138.jpg b/lms/static/images/press/bostinno_logo_178x138.jpg deleted file mode 100644 index dadddecbf9..0000000000 Binary files a/lms/static/images/press/bostinno_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/bostonglobe_logo_178x138.jpeg b/lms/static/images/press/bostonglobe_logo_178x138.jpeg deleted file mode 100644 index 0224476b29..0000000000 Binary files a/lms/static/images/press/bostonglobe_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/bostonmag_logo_178x138.jpg b/lms/static/images/press/bostonmag_logo_178x138.jpg deleted file mode 100755 index aa4f8a3577..0000000000 Binary files a/lms/static/images/press/bostonmag_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/busweek_logo_178x138.jpg b/lms/static/images/press/busweek_logo_178x138.jpg deleted file mode 100644 index 5bfd9450c6..0000000000 Binary files a/lms/static/images/press/busweek_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/campdenfb_logo_178x138.jpg b/lms/static/images/press/campdenfb_logo_178x138.jpg deleted file mode 100644 index 1d2c047540..0000000000 Binary files a/lms/static/images/press/campdenfb_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/campustech_logo_178x138.jpg b/lms/static/images/press/campustech_logo_178x138.jpg deleted file mode 100644 index 9026d08dc2..0000000000 Binary files a/lms/static/images/press/campustech_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/cbsnews_178x138.jpg b/lms/static/images/press/cbsnews_178x138.jpg deleted file mode 100644 index c9fea9e31f..0000000000 Binary files a/lms/static/images/press/cbsnews_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/center_digeducation_logo_178x138.jpg b/lms/static/images/press/center_digeducation_logo_178x138.jpg deleted file mode 100644 index 8da07ef28f..0000000000 Binary files a/lms/static/images/press/center_digeducation_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/chroniclehighered_logo_178x138.jpeg b/lms/static/images/press/chroniclehighered_logo_178x138.jpeg deleted file mode 100644 index 95dce54e2e..0000000000 Binary files a/lms/static/images/press/chroniclehighered_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/cnn_logo_178x138.jpg b/lms/static/images/press/cnn_logo_178x138.jpg deleted file mode 100644 index f747b4dc0a..0000000000 Binary files a/lms/static/images/press/cnn_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/college_classes_logo_178x138.jpg b/lms/static/images/press/college_classes_logo_178x138.jpg deleted file mode 100644 index aa216623b2..0000000000 Binary files a/lms/static/images/press/college_classes_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/concord_consortium_logo.jpg b/lms/static/images/press/concord_consortium_logo.jpg deleted file mode 100644 index ef3552fc9c..0000000000 Binary files a/lms/static/images/press/concord_consortium_logo.jpg and /dev/null differ diff --git a/lms/static/images/press/csmonitor_logo_178x138.jpg b/lms/static/images/press/csmonitor_logo_178x138.jpg deleted file mode 100755 index d389b7a6f1..0000000000 Binary files a/lms/static/images/press/csmonitor_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/dailycollegian_logo_178x138.jpg b/lms/static/images/press/dailycollegian_logo_178x138.jpg deleted file mode 100644 index e704c9e9bb..0000000000 Binary files a/lms/static/images/press/dailycollegian_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/dailynews_india_logo_178x138.jpg b/lms/static/images/press/dailynews_india_logo_178x138.jpg deleted file mode 100644 index 6e2262bf83..0000000000 Binary files a/lms/static/images/press/dailynews_india_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/edtechtimes_logo_178x138.jpg b/lms/static/images/press/edtechtimes_logo_178x138.jpg deleted file mode 100755 index c87355fd7b..0000000000 Binary files a/lms/static/images/press/edtechtimes_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/eduinvest_logo_178x138.jpg b/lms/static/images/press/eduinvest_logo_178x138.jpg deleted file mode 100644 index a907c27f42..0000000000 Binary files a/lms/static/images/press/eduinvest_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/edx_logo_108x81.jpeg b/lms/static/images/press/edx_logo_108x81.jpeg deleted file mode 100644 index 0660d9de08..0000000000 Binary files a/lms/static/images/press/edx_logo_108x81.jpeg and /dev/null differ diff --git a/lms/static/images/press/forbes_logo_178x138.jpg b/lms/static/images/press/forbes_logo_178x138.jpg deleted file mode 100755 index 14f3e250a3..0000000000 Binary files a/lms/static/images/press/forbes_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/ft_logo_178x138.jpg b/lms/static/images/press/ft_logo_178x138.jpg deleted file mode 100644 index 72a89bf5b0..0000000000 Binary files a/lms/static/images/press/ft_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/gigaom_logo_178x138.jpeg b/lms/static/images/press/gigaom_logo_178x138.jpeg deleted file mode 100644 index cdbda2f5d1..0000000000 Binary files a/lms/static/images/press/gigaom_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/govtech_logo_178x138.jpg b/lms/static/images/press/govtech_logo_178x138.jpg deleted file mode 100644 index bd119e95a0..0000000000 Binary files a/lms/static/images/press/govtech_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/harvardcrimson_logo_178x138.jpeg b/lms/static/images/press/harvardcrimson_logo_178x138.jpeg deleted file mode 100644 index 7fa3bef5e1..0000000000 Binary files a/lms/static/images/press/harvardcrimson_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/harvardgazette_logo_178x138.jpeg b/lms/static/images/press/harvardgazette_logo_178x138.jpeg deleted file mode 100644 index 1f0bfac70b..0000000000 Binary files a/lms/static/images/press/harvardgazette_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/harvardmagazine_logo_178x138.jpeg b/lms/static/images/press/harvardmagazine_logo_178x138.jpeg deleted file mode 100644 index 58b29a5596..0000000000 Binary files a/lms/static/images/press/harvardmagazine_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/harvarduniv_logo_178x138.jpeg b/lms/static/images/press/harvarduniv_logo_178x138.jpeg deleted file mode 100644 index 66dd05fb88..0000000000 Binary files a/lms/static/images/press/harvarduniv_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/huffpost_logo_178x138.jpeg b/lms/static/images/press/huffpost_logo_178x138.jpeg deleted file mode 100644 index ed30f223f2..0000000000 Binary files a/lms/static/images/press/huffpost_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/ibtimes_logo_178x138.jpg b/lms/static/images/press/ibtimes_logo_178x138.jpg deleted file mode 100644 index 80cde4af9b..0000000000 Binary files a/lms/static/images/press/ibtimes_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/ieee_logo_178x138.jpeg b/lms/static/images/press/ieee_logo_178x138.jpeg deleted file mode 100644 index 6f2d5f7bfa..0000000000 Binary files a/lms/static/images/press/ieee_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/insidehighered_logo_178x138.jpg b/lms/static/images/press/insidehighered_logo_178x138.jpg deleted file mode 100755 index ad23f11a96..0000000000 Binary files a/lms/static/images/press/insidehighered_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/itbriefing_logo_178x138.jpg b/lms/static/images/press/itbriefing_logo_178x138.jpg deleted file mode 100755 index c8380ada13..0000000000 Binary files a/lms/static/images/press/itbriefing_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/knowledgespeak_logo_178x138.jpg b/lms/static/images/press/knowledgespeak_logo_178x138.jpg deleted file mode 100644 index 20c9d7e095..0000000000 Binary files a/lms/static/images/press/knowledgespeak_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/latimes_logo_178x138.jpeg b/lms/static/images/press/latimes_logo_178x138.jpeg deleted file mode 100644 index fed922f846..0000000000 Binary files a/lms/static/images/press/latimes_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/masshightech_logo_178x138.jpg b/lms/static/images/press/masshightech_logo_178x138.jpg deleted file mode 100644 index ff8272d3ed..0000000000 Binary files a/lms/static/images/press/masshightech_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/mercurynews_logo_178x138.jpeg b/lms/static/images/press/mercurynews_logo_178x138.jpeg deleted file mode 100644 index 798749ab22..0000000000 Binary files a/lms/static/images/press/mercurynews_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/mit_logo_178x138.jpeg b/lms/static/images/press/mit_logo_178x138.jpeg deleted file mode 100644 index 3fb78ac90c..0000000000 Binary files a/lms/static/images/press/mit_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/npq_logo_178x138.jpg b/lms/static/images/press/npq_logo_178x138.jpg deleted file mode 100644 index 69a8d6593a..0000000000 Binary files a/lms/static/images/press/npq_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/npr_logo_178x138.jpeg b/lms/static/images/press/npr_logo_178x138.jpeg deleted file mode 100644 index 987f57206c..0000000000 Binary files a/lms/static/images/press/npr_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/nyt_logo_178x138.jpeg b/lms/static/images/press/nyt_logo_178x138.jpeg deleted file mode 100644 index b40af3e79f..0000000000 Binary files a/lms/static/images/press/nyt_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/nytimes_240x180.png b/lms/static/images/press/nytimes_240x180.png deleted file mode 100644 index d34376a91f..0000000000 Binary files a/lms/static/images/press/nytimes_240x180.png and /dev/null differ diff --git a/lms/static/images/press/nz_listener_logo_178x138.jpg b/lms/static/images/press/nz_listener_logo_178x138.jpg deleted file mode 100644 index 88e05b81ec..0000000000 Binary files a/lms/static/images/press/nz_listener_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/oef_logo_178x138.jpeg b/lms/static/images/press/oef_logo_178x138.jpeg deleted file mode 100644 index b4469e7bb8..0000000000 Binary files a/lms/static/images/press/oef_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/online_colleges_logo_178x138.jpg b/lms/static/images/press/online_colleges_logo_178x138.jpg deleted file mode 100644 index 703e9c065b..0000000000 Binary files a/lms/static/images/press/online_colleges_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/outsell_logo_178x138.jpg b/lms/static/images/press/outsell_logo_178x138.jpg deleted file mode 100644 index 1e885fba08..0000000000 Binary files a/lms/static/images/press/outsell_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/radioboston_logo_178x138.jpg b/lms/static/images/press/radioboston_logo_178x138.jpg deleted file mode 100755 index e29949a31f..0000000000 Binary files a/lms/static/images/press/radioboston_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/201x_240x180.jpg b/lms/static/images/press/releases/201x_240x180.jpg deleted file mode 100644 index d2cfd8ee45..0000000000 Binary files a/lms/static/images/press/releases/201x_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/cengage-book_327x400.jpg b/lms/static/images/press/releases/cengage-book_327x400.jpg deleted file mode 100644 index e26dc7bf68..0000000000 Binary files a/lms/static/images/press/releases/cengage-book_327x400.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/diploma_240x180.jpg b/lms/static/images/press/releases/diploma_240x180.jpg deleted file mode 100644 index c507e3b77a..0000000000 Binary files a/lms/static/images/press/releases/diploma_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/dr-lewin-276_2400x1600.jpg b/lms/static/images/press/releases/dr-lewin-276_2400x1600.jpg deleted file mode 100644 index b4d043bb1c..0000000000 Binary files a/lms/static/images/press/releases/dr-lewin-276_2400x1600.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/dr-lewin-276_240x180.jpg b/lms/static/images/press/releases/dr-lewin-276_240x180.jpg deleted file mode 100644 index d1a5300b1e..0000000000 Binary files a/lms/static/images/press/releases/dr-lewin-276_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/dr-lewin-316_240x180.jpg b/lms/static/images/press/releases/dr-lewin-316_240x180.jpg deleted file mode 100644 index 6a659a3612..0000000000 Binary files a/lms/static/images/press/releases/dr-lewin-316_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/edx-logo_240x180.png b/lms/static/images/press/releases/edx-logo_240x180.png deleted file mode 100644 index 6c5669bc17..0000000000 Binary files a/lms/static/images/press/releases/edx-logo_240x180.png and /dev/null differ diff --git a/lms/static/images/press/releases/elsevier-page-sample_680x660.png b/lms/static/images/press/releases/elsevier-page-sample_680x660.png deleted file mode 100644 index 4feb3465ff..0000000000 Binary files a/lms/static/images/press/releases/elsevier-page-sample_680x660.png and /dev/null differ diff --git a/lms/static/images/press/releases/eric-lander-lab.jpg b/lms/static/images/press/releases/eric-lander-lab.jpg deleted file mode 100644 index 54f027775d..0000000000 Binary files a/lms/static/images/press/releases/eric-lander-lab.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/eric-lander-lab_x300.jpg b/lms/static/images/press/releases/eric-lander-lab_x300.jpg deleted file mode 100644 index 38c4a208ed..0000000000 Binary files a/lms/static/images/press/releases/eric-lander-lab_x300.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/eric-lander_240x180.jpg b/lms/static/images/press/releases/eric-lander_240x180.jpg deleted file mode 100644 index ee5b2d875b..0000000000 Binary files a/lms/static/images/press/releases/eric-lander_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/foundations-of-analog_240x180.jpg b/lms/static/images/press/releases/foundations-of-analog_240x180.jpg deleted file mode 100644 index d554c6ce93..0000000000 Binary files a/lms/static/images/press/releases/foundations-of-analog_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/georgetown-seal_240x180.png b/lms/static/images/press/releases/georgetown-seal_240x180.png deleted file mode 100644 index 1652b2805e..0000000000 Binary files a/lms/static/images/press/releases/georgetown-seal_240x180.png and /dev/null differ diff --git a/lms/static/images/press/releases/mass-edx-gates-launch_300x172.jpg b/lms/static/images/press/releases/mass-edx-gates-launch_300x172.jpg deleted file mode 100644 index 16086cb142..0000000000 Binary files a/lms/static/images/press/releases/mass-edx-gates-launch_300x172.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/mass-edx-gates-launch_3800x2184.jpg b/lms/static/images/press/releases/mass-edx-gates-launch_3800x2184.jpg deleted file mode 100644 index 6718f0c6e8..0000000000 Binary files a/lms/static/images/press/releases/mass-edx-gates-launch_3800x2184.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/mass-seal_240x180.png b/lms/static/images/press/releases/mass-seal_240x180.png deleted file mode 100644 index 6641d4e42d..0000000000 Binary files a/lms/static/images/press/releases/mass-seal_240x180.png and /dev/null differ diff --git a/lms/static/images/press/releases/stanford-university-m.png b/lms/static/images/press/releases/stanford-university-m.png deleted file mode 100644 index bcde63022a..0000000000 Binary files a/lms/static/images/press/releases/stanford-university-m.png and /dev/null differ diff --git a/lms/static/images/press/releases/stanford-university_102x57.png b/lms/static/images/press/releases/stanford-university_102x57.png deleted file mode 100644 index 67910ff5d8..0000000000 Binary files a/lms/static/images/press/releases/stanford-university_102x57.png and /dev/null differ diff --git a/lms/static/images/press/releases/stanford-university_204x114.png b/lms/static/images/press/releases/stanford-university_204x114.png deleted file mode 100644 index 79dac0732c..0000000000 Binary files a/lms/static/images/press/releases/stanford-university_204x114.png and /dev/null differ diff --git a/lms/static/images/press/releases/stanford-university_240x135.png b/lms/static/images/press/releases/stanford-university_240x135.png deleted file mode 100644 index ba9d2a6e95..0000000000 Binary files a/lms/static/images/press/releases/stanford-university_240x135.png and /dev/null differ diff --git a/lms/static/images/press/releases/tumblr-brazilian-teen_240x180.jpg b/lms/static/images/press/releases/tumblr-brazilian-teen_240x180.jpg deleted file mode 100644 index f439a05e44..0000000000 Binary files a/lms/static/images/press/releases/tumblr-brazilian-teen_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/tumblr-mongolia_240x180.jpg b/lms/static/images/press/releases/tumblr-mongolia_240x180.jpg deleted file mode 100644 index 6c20d4cfd9..0000000000 Binary files a/lms/static/images/press/releases/tumblr-mongolia_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/utsys-seal_240x180.png b/lms/static/images/press/releases/utsys-seal_240x180.png deleted file mode 100644 index f3938b72eb..0000000000 Binary files a/lms/static/images/press/releases/utsys-seal_240x180.png and /dev/null differ diff --git a/lms/static/images/press/releases/utsys-seal_logotype_240x180.jpg b/lms/static/images/press/releases/utsys-seal_logotype_240x180.jpg deleted file mode 100644 index d07df1da98..0000000000 Binary files a/lms/static/images/press/releases/utsys-seal_logotype_240x180.jpg and /dev/null differ diff --git a/lms/static/images/press/releases/wellesley-seal_240x180.png b/lms/static/images/press/releases/wellesley-seal_240x180.png deleted file mode 100644 index 3c717f4688..0000000000 Binary files a/lms/static/images/press/releases/wellesley-seal_240x180.png and /dev/null differ diff --git a/lms/static/images/press/reuters_logo_178x138.jpg b/lms/static/images/press/reuters_logo_178x138.jpg deleted file mode 100644 index 4f4ee9ec22..0000000000 Binary files a/lms/static/images/press/reuters_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/smartplanet_logo_178x138.jpg b/lms/static/images/press/smartplanet_logo_178x138.jpg deleted file mode 100755 index 534677017e..0000000000 Binary files a/lms/static/images/press/smartplanet_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/techreview_logo_178x138.jpg b/lms/static/images/press/techreview_logo_178x138.jpg deleted file mode 100644 index 7a2e063d77..0000000000 Binary files a/lms/static/images/press/techreview_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/test/bbc_logo_178x138.jpg b/lms/static/images/press/test/bbc_logo_178x138.jpg deleted file mode 100755 index b047d814fe..0000000000 Binary files a/lms/static/images/press/test/bbc_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/test/bostonglobe_logo_178x138.jpg b/lms/static/images/press/test/bostonglobe_logo_178x138.jpg deleted file mode 100755 index 9d2aa0bb10..0000000000 Binary files a/lms/static/images/press/test/bostonglobe_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/test/bostonmag_logo_178x138.jpg b/lms/static/images/press/test/bostonmag_logo_178x138.jpg deleted file mode 100644 index 5a756ccb24..0000000000 Binary files a/lms/static/images/press/test/bostonmag_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/test/nyt_logo_178x138.jpg b/lms/static/images/press/test/nyt_logo_178x138.jpg deleted file mode 100755 index 8a9a75b7f1..0000000000 Binary files a/lms/static/images/press/test/nyt_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/test/usnews_logo_178x138.jpg b/lms/static/images/press/test/usnews_logo_178x138.jpg deleted file mode 100755 index 09d4c07280..0000000000 Binary files a/lms/static/images/press/test/usnews_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/texaspulse_logo_178x138.jpg b/lms/static/images/press/texaspulse_logo_178x138.jpg deleted file mode 100644 index 059fa39d55..0000000000 Binary files a/lms/static/images/press/texaspulse_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/texastribune_logo_178x138.jpg b/lms/static/images/press/texastribune_logo_178x138.jpg deleted file mode 100644 index dc93010d69..0000000000 Binary files a/lms/static/images/press/texastribune_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/theadvocate_logo_178x138.jpg b/lms/static/images/press/theadvocate_logo_178x138.jpg deleted file mode 100644 index 824cfbe9c5..0000000000 Binary files a/lms/static/images/press/theadvocate_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/thehopen_logo_178x138.jpg b/lms/static/images/press/thehopen_logo_178x138.jpg deleted file mode 100644 index 4f6a95d737..0000000000 Binary files a/lms/static/images/press/thehopen_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/thetech_logo_178x138.jpg b/lms/static/images/press/thetech_logo_178x138.jpg deleted file mode 100755 index 024fe11769..0000000000 Binary files a/lms/static/images/press/thetech_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/time_logo_178x138.jpg b/lms/static/images/press/time_logo_178x138.jpg deleted file mode 100755 index 5d884fe0fe..0000000000 Binary files a/lms/static/images/press/time_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/timeshighered_logo_178x138.jpg b/lms/static/images/press/timeshighered_logo_178x138.jpg deleted file mode 100644 index 33920d2bdc..0000000000 Binary files a/lms/static/images/press/timeshighered_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/univworldnews_logo_178x138.jpeg b/lms/static/images/press/univworldnews_logo_178x138.jpeg deleted file mode 100644 index 038475c4e0..0000000000 Binary files a/lms/static/images/press/univworldnews_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/usa_logo_178x138.jpeg b/lms/static/images/press/usa_logo_178x138.jpeg deleted file mode 100644 index ed3a1c50e6..0000000000 Binary files a/lms/static/images/press/usa_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/usnews_logo_178x138.jpeg b/lms/static/images/press/usnews_logo_178x138.jpeg deleted file mode 100644 index 55c7cb51e3..0000000000 Binary files a/lms/static/images/press/usnews_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/wash_post_logo_178x138.jpg b/lms/static/images/press/wash_post_logo_178x138.jpg deleted file mode 100644 index bbc25b18b7..0000000000 Binary files a/lms/static/images/press/wash_post_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/washpost_logo_178x138.jpg b/lms/static/images/press/washpost_logo_178x138.jpg deleted file mode 100644 index 928cf227b7..0000000000 Binary files a/lms/static/images/press/washpost_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/images/press/wbur_logo_178x138.jpeg b/lms/static/images/press/wbur_logo_178x138.jpeg deleted file mode 100644 index 2319d82140..0000000000 Binary files a/lms/static/images/press/wbur_logo_178x138.jpeg and /dev/null differ diff --git a/lms/static/images/press/wsj_logo_178x138.jpg b/lms/static/images/press/wsj_logo_178x138.jpg deleted file mode 100644 index 0920557417..0000000000 Binary files a/lms/static/images/press/wsj_logo_178x138.jpg and /dev/null differ diff --git a/lms/static/js/spec/staff_debug_actions_spec.js b/lms/static/js/spec/staff_debug_actions_spec.js new file mode 100644 index 0000000000..347dd6d584 --- /dev/null +++ b/lms/static/js/spec/staff_debug_actions_spec.js @@ -0,0 +1,89 @@ +describe('StaffDebugActions', function() { + var loc = 'test_loc'; + var fixture_id = 'sd_fu_' + loc; + var fixture = $('<input>', { id: fixture_id, placeholder: "userman" }); + + describe('get_url ', function() { + it('defines url to courseware ajax entry point', function() { + spyOn(StaffDebug, "get_current_url").andReturn("/courses/edX/Open_DemoX/edx_demo_course/courseware/stuff"); + expect(StaffDebug.get_url('rescore_problem')).toBe('/courses/edX/Open_DemoX/edx_demo_course/instructor_dashboard/api/rescore_problem'); + }); + }); + + describe('get_user', function() { + + it('gets the placeholder username if input field is empty', function() { + $('body').append(fixture); + expect(StaffDebug.get_user(loc)).toBe('userman'); + $('#' + fixture_id).remove(); + }); + it('gets a filled in name if there is one', function() { + $('body').append(fixture); + $('#' + fixture_id).val('notuserman'); + expect(StaffDebug.get_user(loc)).toBe('notuserman'); + + $('#' + fixture_id).val(''); + $('#' + fixture_id).remove(); + }); + }); + describe('reset', function() { + it('makes an ajax call with the expected parameters', function() { + $('body').append(fixture); + + spyOn($, 'ajax'); + StaffDebug.reset(loc); + + expect($.ajax.mostRecentCall.args[0]['type']).toEqual('GET'); + expect($.ajax.mostRecentCall.args[0]['data']).toEqual({ + 'problem_to_reset': loc, + 'unique_student_identifier': 'userman', + 'delete_module': false + }); + expect($.ajax.mostRecentCall.args[0]['url']).toEqual( + '/instructor_dashboard/api/reset_student_attempts' + ); + $('#' + fixture_id).remove(); + }); + }); + describe('sdelete', function() { + it('makes an ajax call with the expected parameters', function() { + $('body').append(fixture); + + spyOn($, 'ajax'); + StaffDebug.sdelete(loc); + + expect($.ajax.mostRecentCall.args[0]['type']).toEqual('GET'); + expect($.ajax.mostRecentCall.args[0]['data']).toEqual({ + 'problem_to_reset': loc, + 'unique_student_identifier': 'userman', + 'delete_module': true + }); + expect($.ajax.mostRecentCall.args[0]['url']).toEqual( + '/instructor_dashboard/api/reset_student_attempts' + ); + + $('#' + fixture_id).remove(); + }); + }); + describe('rescore', function() { + it('makes an ajax call with the expected parameters', function() { + $('body').append(fixture); + + spyOn($, 'ajax'); + StaffDebug.rescore(loc); + + expect($.ajax.mostRecentCall.args[0]['type']).toEqual('GET'); + expect($.ajax.mostRecentCall.args[0]['data']).toEqual({ + 'problem_to_reset': loc, + 'unique_student_identifier': 'userman', + 'delete_module': false + }); + expect($.ajax.mostRecentCall.args[0]['url']).toEqual( + '/instructor_dashboard/api/rescore_problem' + ); + $('#' + fixture_id).remove(); + }); + }); + +}); + diff --git a/lms/static/js/staff_debug_actions.js b/lms/static/js/staff_debug_actions.js new file mode 100644 index 0000000000..cf5bc85495 --- /dev/null +++ b/lms/static/js/staff_debug_actions.js @@ -0,0 +1,126 @@ +// Build StaffDebug object +var StaffDebug = (function(){ + + get_current_url = function() { + return window.location.pathname; + } + + get_url = function(action){ + var pathname = this.get_current_url(); + var url = pathname.substr(0,pathname.indexOf('/courseware')) + '/instructor_dashboard/api/' + action; + return url; + } + + get_user = function(locname){ + var uname = $('#sd_fu_' + locname).val(); + if (uname==""){ + uname = $('#sd_fu_' + locname).attr('placeholder'); + } + return uname; + } + + do_idash_action = function(action){ + var pdata = { + 'problem_to_reset': action.location, + 'unique_student_identifier': get_user(action.location), + 'delete_module': action.delete_module + } + $.ajax({ + type: "GET", + url: get_url(action.method), + data: pdata, + success: function(data){ + var text = _.template( + action.success_msg, + {user: data.student}, + {interpolate: /\{(.+?)\}/g} + ) + var html = _.template( + '<p id="idash_msg" class="success">{text}</p>', + {text: text}, + {interpolate: /\{(.+?)\}/g} + ) + $("#result_"+action.location).html(html); + }, + error: function(request, status, error) { + var response_json; + try { + response_json = $.parseJSON(request.responseText); + } catch(e) { + response_json = { error: gettext('Unknown Error Occurred.') }; + } + var text = _.template( + '{error_msg} {error}', + { + error_msg: action.error_msg, + error: response_json.error + }, + {interpolate: /\{(.+?)\}/g} + ) + var html = _.template( + '<p id="idash_msg" class="error">{text}</p>', + {text: text}, + {interpolate: /\{(.+?)\}/g} + ) + $("#result_"+action.location).html(html); + }, + dataType: 'json' + }); + } + + reset = function(locname){ + this.do_idash_action({ + location: locname, + method: 'reset_student_attempts', + success_msg: gettext('Successfully reset the attempts for user {user}'), + error_msg: gettext('Failed to reset attempts.'), + delete_module: false + }); + } + + sdelete = function(locname){ + this.do_idash_action({ + location: locname, + method: 'reset_student_attempts', + success_msg: gettext('Successfully deleted student state for user {user}'), + error_msg: gettext('Failed to delete student state.'), + delete_module: true + }); + } + + rescore = function(locname){ + this.do_idash_action({ + location: locname, + method: 'rescore_problem', + success_msg: gettext('Successfully rescored problem for user {user}'), + error_msg: gettext('Failed to rescore problem.'), + delete_module: false + }); + } + + return { + reset: reset, + sdelete: sdelete, + rescore: rescore, + do_idash_action: do_idash_action, + get_current_url: get_current_url, + get_url: get_url, + get_user: get_user + } +})(); + +// Register click handlers +$(document).ready(function() { + $('#staff-debug-reset').click(function() { + StaffDebug.reset($(this).data('location')); + return false; + }); + $('#staff-debug-sdelete').click(function() { + StaffDebug.sdelete($(this).data('location')); + return false; + }); + $('#staff-debug-rescore').click(function() { + StaffDebug.rescore($(this).data('location')); + return false; + }); +}); diff --git a/lms/static/js_test.yml b/lms/static/js_test.yml index 4cec8c06e7..06132bb559 100644 --- a/lms/static/js_test.yml +++ b/lms/static/js_test.yml @@ -51,6 +51,7 @@ lib_paths: src_paths: - coffee/src - js/src + - js # Paths to spec (test) JavaScript files spec_paths: diff --git a/lms/static/sass/base/_base.scss b/lms/static/sass/base/_base.scss index 0655a9198d..c7f978e617 100644 --- a/lms/static/sass/base/_base.scss +++ b/lms/static/sass/base/_base.scss @@ -225,7 +225,7 @@ mark { .help-tab { @include transform(rotate(-90deg)); @include transform-origin(0 0); - top: 50%; + top: 250px; left: 0; position: fixed; z-index: 99; @@ -244,7 +244,7 @@ mark { &:hover, &:focus { color: #fff; - background: #1D9DD9; + background: $link-color; } } } @@ -273,13 +273,24 @@ mark { &:hover, &:focus { color: #fff; - background: #1D9DD9; + background: $link-color; } } } -#feedback_form textarea[name="details"] { - height: 150px; +#feedback_form { + input, textarea { + font: normal 1em/1.4em $sans-serif; + } + textarea[name="details"] { + height: 150px; + } +} + +#feedback_success_wrapper { + p { + padding: 0 20px 20px 20px; + } } // ==================== diff --git a/lms/static/sass/base/_variables.scss b/lms/static/sass/base/_variables.scss index cb96c3f92f..21998b995e 100644 --- a/lms/static/sass/base/_variables.scss +++ b/lms/static/sass/base/_variables.scss @@ -227,6 +227,15 @@ $verified-color-lvl3: $m-green-l2; $verified-color-lvl4: $m-green-l3; $verified-color-lvl5: $m-green-l4; +// STATE: honor code +$honorcode-color-lvl1: rgb(50, 165, 217); +$honorcode-color-lvl2: tint($honorcode-color-lvl1, 33%); + +// STATE: audit +$audit-color-lvl1: $light-gray; +$audit-color-lvl2: tint($audit-color-lvl1, 33%); + + // ==================== // ACTIONS: general @@ -307,6 +316,7 @@ $dashboard-profile-header-image: linear-gradient(-90deg, rgb(255,255,255), rgb(2 $dashboard-profile-header-color: transparent; $dashboard-profile-color: rgb(252,252,252); $dot-color: $light-gray; +$dashboard-course-cover-border: $light-gray; // MISC: course assets $content-wrapper-bg: $white; @@ -380,4 +390,3 @@ $f-monospace: 'Bitstream Vera Sans Mono', Consolas, Courier, monospace; // SPLINT: colors $msg-bg: $action-primary-bg; - diff --git a/lms/static/sass/course/courseware/_courseware.scss b/lms/static/sass/course/courseware/_courseware.scss index 051b98f088..03b6d743bf 100644 --- a/lms/static/sass/course/courseware/_courseware.scss +++ b/lms/static/sass/course/courseware/_courseware.scss @@ -14,7 +14,7 @@ html.video-fullscreen{ .wrap-instructor-info { margin: ($baseline/2) ($baseline/4) 0 0; overflow: hidden; - + &.studio-view { position: relative; top: -($baseline/2); @@ -191,6 +191,15 @@ div.course-wrapper { } } + div.staff_actions { + p.error { + color: $error-red + } + p.success { + color: $success-color; + } + } + div.staff_info { display: none; @include clearfix(); diff --git a/lms/static/sass/elements/_typography.scss b/lms/static/sass/elements/_typography.scss index 2d677700c6..8170ca4b88 100644 --- a/lms/static/sass/elements/_typography.scss +++ b/lms/static/sass/elements/_typography.scss @@ -277,7 +277,7 @@ } %copy-badge { - @extend %t-title8; + @extend %t-title9; @extend %t-weight3; border-radius: ($baseline/5); padding: ($baseline/2) $baseline; diff --git a/lms/static/sass/multicourse/_course_about.scss b/lms/static/sass/multicourse/_course_about.scss index 1fcbf2a225..f3690175b0 100644 --- a/lms/static/sass/multicourse/_course_about.scss +++ b/lms/static/sass/multicourse/_course_about.scss @@ -298,6 +298,20 @@ float: left; margin-right: flex-gutter(); width: flex-grid(8); + font: normal 1em/1.6em $serif; + + h2 { + margin-top: ($baseline*1.5); + } + + p { + margin-bottom: ($baseline/2); + } + + dt { + margin-top: ($baseline/2); + font-weight: 700; + } .inner-wrapper { > section { diff --git a/lms/static/sass/multicourse/_dashboard.scss b/lms/static/sass/multicourse/_dashboard.scss index 8c987c9630..6991fba25b 100644 --- a/lms/static/sass/multicourse/_dashboard.scss +++ b/lms/static/sass/multicourse/_dashboard.scss @@ -374,15 +374,19 @@ .cover { @include box-sizing(border-box); + @include transition(all 0.15s linear 0s); + overflow: hidden; + position: relative; float: left; height: 100%; max-height: 100%; - margin: 0px; - overflow: hidden; - position: relative; - @include transition(all 0.15s linear 0s); width: 200px; height: 120px; + margin: 0px; + border-radius: ($baseline/10); + border: 1px solid $dashboard-course-cover-border; + border-bottom: 4px solid $dashboard-course-cover-border; + padding: ($baseline/10); img { width: 100%; @@ -491,28 +495,43 @@ } } + // "enrolled as" status + .sts-enrollment { + position: absolute; + top: 105px; + left: 0; + display: inline-block; + text-align: center; + width: 200px; + + .label { + @extend %text-sr; + } + + .sts-enrollment-value { + @extend %ui-depth1; + @extend %copy-badge; + border-radius: 0; + padding: ($baseline/4) ($baseline/2) ($baseline/4) ($baseline/2); + } + } + // ==================== - // STATE: course mode - verified + // CASE: "enrolled as" status - verified &.verified { - @extend %ui-depth2; - position: relative; + // changes to cover .cover { - border-radius: ($baseline/10); - border: 1px solid $verified-color-lvl3; - border-bottom: 4px solid $verified-color-lvl3; + border-color: $verified-color-lvl3; padding: ($baseline/10); } // course enrollment status message .sts-enrollment { - display: inline-block; position: absolute; - top: 105px; left: 55px; - bottom: ($baseline/2); - text-align: center; + width: auto; .label { @extend %text-sr; @@ -526,16 +545,46 @@ top: -10px; } + // status message .sts-enrollment-value { - @extend %ui-depth1; - @extend %copy-badge; - border-radius: 0; padding: ($baseline/4) ($baseline/2) ($baseline/4) $baseline; background: $verified-color-lvl3; - color: $white; + color: tint($verified-color-lvl1, 85%); } } } + + // CASE: "enrolled as" status - honor code + &.honor { + + // changes to cover + .cover { + border-color: $honorcode-color-lvl2; + padding: ($baseline/10); + } + + // status message + .sts-enrollment-value { + background: $honorcode-color-lvl1; + color: tint($honorcode-color-lvl1, 85%); + } + } + + // CASE: "enrolled as" status - auditing + &.audit { + + // changes to cover + .cover { + border-color: $audit-color-lvl2; + padding: ($baseline/10); + } + + // status message + .sts-enrollment-value { + background: $audit-color-lvl1; + color: shade($audit-color-lvl1, 33%); + } + } } // ==================== diff --git a/lms/templates/courseware/instructor_dashboard.html b/lms/templates/courseware/instructor_dashboard.html index f088594787..d81ce98d46 100644 --- a/lms/templates/courseware/instructor_dashboard.html +++ b/lms/templates/courseware/instructor_dashboard.html @@ -589,7 +589,7 @@ function goto( mode) ##----------------------------------------------------------------------------- %if msg: - <p></p><p>${msg}</p> + <p></p><p id="idash_msg">${msg}</p> %endif ##----------------------------------------------------------------------------- diff --git a/lms/templates/courseware/mktg_course_about.html b/lms/templates/courseware/mktg_course_about.html index 3eecc0011d..e59ebb0f69 100644 --- a/lms/templates/courseware/mktg_course_about.html +++ b/lms/templates/courseware/mktg_course_about.html @@ -12,10 +12,6 @@ <%block name="bodyclass">view-iframe-content view-partial-mktgregister</%block> -<%block name="headextra"> - <%include file="../google_analytics.html" /> -</%block> - <%block name="js_extra"> <script type="text/javascript"> (function() { diff --git a/lms/templates/courseware/xqa_interface.html b/lms/templates/courseware/xqa_interface.html index 84d509d3f5..c63a726402 100644 --- a/lms/templates/courseware/xqa_interface.html +++ b/lms/templates/courseware/xqa_interface.html @@ -1,6 +1,7 @@ <%namespace name='static' file='/static_content.html'/> <script type="text/javascript" src="${static.url('js/vendor/jquery.leanModal.min.js')}"></script> +<script type="text/javascript" src="${static.url('js/staff_debug_actions.js')}"></script> <script type="text/javascript"> function setup_debug(element_id, edit_link, staff_context){ @@ -91,4 +92,4 @@ function getlog(element_id, staff_context){ }; -</script> \ No newline at end of file +</script> diff --git a/lms/templates/dashboard/_dashboard_certificate_information.html b/lms/templates/dashboard/_dashboard_certificate_information.html index 3f07fc797b..d8b3977574 100644 --- a/lms/templates/dashboard/_dashboard_certificate_information.html +++ b/lms/templates/dashboard/_dashboard_certificate_information.html @@ -24,8 +24,11 @@ else: %> <div class="message message-status ${status_css_class} is-shown"> -% if cert_status['status'] == 'processing': +% if cert_status['status'] == 'processing' and not course.may_certify(): <p class="message-copy">${_("Final course details are being wrapped up at this time. Your final standing will be available shortly.")}</p> +% elif course.may_certify() and cert_status['status'] == 'processing': + <!-- Certification is allowed but no cert requested, or cert unearned --> + <!-- <p class="message-copy">${_("Your final standing is unrequested or unavailable at this time.")}</p> --> % elif cert_status['status'] in ('generating', 'ready', 'notpassing', 'restricted'): <p class="message-copy">${_("Your final grade:")} <span class="grade-value">${"{0:.0f}%".format(float(cert_status['grade'])*100)}</span>. @@ -49,7 +52,7 @@ else: % if cert_status['show_disabled_download_button']: <li class="action"><span class="disabled"> ${_("Your {cert_name_short} is Generating").format(cert_name_short=cert_name_short)}</span></li> - % elif cert_status['show_download_url'] and enrollment.mode == 'honor': + % elif cert_status['show_download_url'] and (enrollment.mode == 'honor' or enrollment.mode == 'audit'): <li class="action action-certificate"> <a class="btn" href="${cert_status['download_url']}" title="${_('This link will open/download a PDF document')}"> diff --git a/lms/templates/dashboard/_dashboard_course_listing.html b/lms/templates/dashboard/_dashboard_course_listing.html index 72bc1fe6b6..5d29c891f0 100644 --- a/lms/templates/dashboard/_dashboard_course_listing.html +++ b/lms/templates/dashboard/_dashboard_course_listing.html @@ -11,7 +11,7 @@ cert_name_short = course.cert_name_short if cert_name_short == "": cert_name_short = settings.CERT_NAME_SHORT - + cert_name_long = course.cert_name_long if cert_name_long == "": cert_name_long = settings.CERT_NAME_LONG @@ -21,7 +21,11 @@ <%namespace name='static' file='../static_content.html'/> <li class="course-item"> - <article class="course ${enrollment.mode}"> + % if settings.FEATURES.get('ENABLE_VERIFIED_CERTIFICATES'): + <article class="course ${enrollment.mode}"> + % else: + <article class="course"> + %endif <% course_target = reverse('info', args=[course.id.to_deprecated_string()]) %> @@ -35,13 +39,24 @@ <img src="${course_image_url(course)}" alt="${_('{course_number} {course_name} Cover Image').format(course_number=course.number, course_name=course.display_name_with_default) | h}" /> </div> % endif - - % if enrollment.mode == "verified": - <span class="sts-enrollment"> - <span class="label">${_("Enrolled as: ")}</span> - <img class="deco-graphic" src="${static.url('images/vcert-ribbon-s.png')}" alt="ID Verified Ribbon/Badge" /> - <span class="sts-enrollment-value">${_("ID Verified")}</span> - </span> + % if settings.FEATURES.get('ENABLE_VERIFIED_CERTIFICATES'): + % if enrollment.mode == "verified": + <span class="sts-enrollment" title="${_("You're enrolled as a verified student")}"> + <span class="label">${_("Enrolled as: ")}</span> + <img class="deco-graphic" src="${static.url('images/vcert-ribbon-s.png')}" alt="ID Verified Ribbon/Badge" /> + <span class="sts-enrollment-value">${_("Verified")}</span> + </span> + % elif enrollment.mode == "honor": + <span class="sts-enrollment" title="${_("You're enrolled as an honor code student")}"> + <span class="label">${_("Enrolled as: ")}</span> + <span class="sts-enrollment-value">${_("Honor Code")}</span> + </span> + % elif enrollment.mode == "audit": + <span class="sts-enrollment" title="${_("You're auditing this course")}> + <span class="label">${_("Enrolled as: ")}</span> + <span class="sts-enrollment-value">${_("Auditing")}</span> + </span> + % endif % endif <section class="info"> @@ -67,7 +82,7 @@ </h3> </hgroup> - % if course.has_ended() and cert_status and not enrollment.mode == 'audit': + % if course.may_certify() and cert_status and not enrollment.mode == 'audit': <%include file='_dashboard_certificate_information.html' args='cert_status=cert_status,course=course, enrollment=enrollment'/> % endif diff --git a/lms/templates/feed.rss b/lms/templates/feed.rss deleted file mode 100644 index ca24d584c5..0000000000 --- a/lms/templates/feed.rss +++ /dev/null @@ -1,169 +0,0 @@ -<%! from django.core.urlresolvers import reverse %>\ -<?xml version="1.0" encoding="UTF-8"?> -<%namespace name='static' file='static_content.html'/> -<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/"> - <id>tag:www.edx.org,2012:/blog</id> - <link type="text/html" rel="alternate" href="http://blog.edx.org/"/> - <link type="application/atom+xml" rel="self" href="https://github.com/blog.atom"/> - <title>EdX Blog - 2013-05-03T14:00:12-07:00 - - tag:www.edx.org,2013:Post/18 - 2013-05-02T14:00:00-07:00 - 2013-05-02T14:00:00-07:00 - - edX project at San Jose State featured in New York Times - <img src="${static.url('images/press/nytimes_240x180.png')}" /> - <p></p> - - - tag:www.edx.org,2013:Post/17 - 2012-12-19T14:00:00-07:00 - 2012-12-19T14:00:00-07:00 - - Stanford University to Collaborate with edX on Development of Non-Profit Open Source edX Platform - <img src="${static.url('images/press/releases/stanford-university-m.png')}" /> - <p></p> - - - tag:www.edx.org,2013:Post/16 - 2013-03-15T10:00:00-07:00 - 2013-03-15T10:00:00-07:00 - - edX releases XBlock SDK, first step toward open source vision - <img src="${static.url('images/press/releases/edx-logo_240x180.png')}" /> - <p></p> - - - tag:www.edx.org,2013:Post/15 - 2013-03-14T10:00:00-07:00 - 2013-03-14T10:00:00-07:00 - - New mechanical engineering course open for enrollment - <img src="${static.url('images/press/releases/201x_240x180.jpg')}" /> - <p></p> - - - - - - - - - - - - tag:www.edx.org,2013:Post/14 - 2013-01-30T10:00:00-07:00 - 2013-01-30T10:00:00-07:00 - - New biology course from human genome pioneer Eric Lander - <img src="${static.url('images/press/releases/eric-lander_240x180.jpg')}" /> - <p></p> - - - tag:www.edx.org,2013:Post/12 - 2013-01-22T10:00:00-07:00 - 2013-01-22T10:00:00-07:00 - - New course from legendary MIT physics professor Walter Lewin - <img src="${static.url('images/press/releases/dr-lewin-316_240x180.jpg')}" /> - <p></p> - - - tag:www.edx.org,2013:Post/11 - 2013-01-29T10:00:00-07:00 - 2013-01-29T10:00:00-07:00 - - City of Boston and edX partner to establish BostonX to improve educational access for residents - <img src="${static.url('images/press/releases/edx-logo_240x180.png')}" /> - <p></p> - - - - - - - - - - - - tag:www.edx.org,2012:Post/9 - 2012-12-10T14:00:00-07:00 - 2012-12-10T14:00:00-07:00 - - Georgetown University joins edX - <img src="${static.url('images/press/releases/georgetown-seal_240x180.png')}" /> - <p>Sixth institution to join global movement in year one</p> - - - tag:www.edx.org,2012:Post/8 - 2012-12-04T14:00:00-07:00 - 2012-12-04T14:00:00-07:00 - - Wellesley College joins edX - <img src="${static.url('images/press/releases/wellesley-seal_240x180.png')}" /> - <p>First liberal arts college to join edX</p> - - - tag:www.edx.org,2012:Post/7 - 2012-11-12T14:00:00-07:00 - 2012-11-12T14:00:00-07:00 - - edX and Massachusetts Community Colleges join in Gates-Funded educational initiative - <img src="${static.url('images/press/releases/mass-seal_240x180.png')}" /> - <p></p> - - - tag:www.edx.org,2012:Post/6 - 2012-10-15T14:00:00-07:00 - 2012-10-14T14:00:00-07:00 - - The University of Texas System joins edX - <img src="${static.url('images/press/releases/utsys-seal_240x180.png')}" /> - <p>Nine universities and six health institutions</p> - - - - - - - - - - - - tag:www.edx.org,2012:Post/4 - 2012-09-06T14:00:00-07:00 - 2012-09-06T14:00:00-07:00 - - edX to offer learners option of taking proctored final exam - <img src="${static.url('images/press/releases/diploma_240x180.jpg')}" /> - - - tag:www.edx.org,2012:Post/3 - 2012-07-16T14:08:12-07:00 - 2012-07-16T14:08:12-07:00 - - UC Berkeley joins edX - <img src="${static.url('images/press/releases/edx-logo_240x180.png')}" /> - <p>edX broadens course offerings</p> - - - tag:www.edx.org,2012:Post/2 - 2012-07-16T14:08:12-07:00 - 2012-07-16T14:08:12-07:00 - - Opening Doors For Exceptional Students: 6.002x in Mongolia - <img src="${static.url('images/press/releases/tumblr-mongolia_240x180.jpg')}" /> - - - tag:www.edx.org,2012:Post/1 - 2012-07-16T14:08:12-07:00 - 2012-07-16T14:08:12-07:00 - - Brazilian teen blogs about his 6.002x experience - <img src="${static.url('images/press/releases/tumblr-brazilian-teen_240x180.jpg')}" /> - - diff --git a/lms/templates/google_analytics.html b/lms/templates/google_analytics.html index 273fbac970..966cc934d8 100644 --- a/lms/templates/google_analytics.html +++ b/lms/templates/google_analytics.html @@ -1,6 +1,6 @@