Merge pull request #3763 from cpennington/opaque-keys-merge-master
Merge latest master into opaque-keys
This commit is contained in:
@@ -1,21 +1,84 @@
|
||||
|
||||
import ConfigParser
|
||||
from django.conf import settings
|
||||
import logging
|
||||
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
# Open and parse the configuration file when the module is initialized
|
||||
config_file = open(settings.REPO_ROOT / "docs" / "config.ini")
|
||||
config = ConfigParser.ConfigParser()
|
||||
config.readfp(config_file)
|
||||
|
||||
|
||||
def doc_url(request):
|
||||
# in the future, we will detect the locale; for now, we will
|
||||
# hardcode en_us, since we only have English documentation
|
||||
locale = "en_us"
|
||||
def doc_url(request=None): # pylint: disable=unused-argument
|
||||
"""
|
||||
This function is added in the list of TEMPLATE_CONTEXT_PROCESSORS, which is a django setting for
|
||||
a tuple of callables that take a request object as their argument and return a dictionary of items
|
||||
to be merged into the RequestContext.
|
||||
|
||||
def get_doc_url(token):
|
||||
try:
|
||||
return config.get(locale, token)
|
||||
except ConfigParser.NoOptionError:
|
||||
return config.get(locale, "default")
|
||||
This function returns a dict with get_online_help_info, making it directly available to all mako templates.
|
||||
|
||||
return {"doc_url": get_doc_url}
|
||||
Args:
|
||||
request: Currently not used, but is passed by django to context processors.
|
||||
May be used in the future for determining the language of choice.
|
||||
"""
|
||||
|
||||
def get_online_help_info(page_token=None):
|
||||
"""
|
||||
Args:
|
||||
page_token: A string that identifies the page for which the help information is requested.
|
||||
It should correspond to an option in the docs/config.ini file. If it doesn't, the "default"
|
||||
option is used instead.
|
||||
|
||||
Returns:
|
||||
A dict mapping the following items
|
||||
* "doc_url" - a string with the url corresponding to the online help location for the given page_token.
|
||||
* "pdf_url" - a string with the url corresponding to the location of the PDF help file.
|
||||
"""
|
||||
|
||||
def get_config_value_with_default(section_name, option, default_option="default"):
|
||||
"""
|
||||
Args:
|
||||
section_name: name of the section in the configuration from which the option should be found
|
||||
option: name of the configuration option
|
||||
default_option: name of the default configuration option whose value should be returned if the
|
||||
requested option is not found
|
||||
"""
|
||||
try:
|
||||
return config.get(section_name, option)
|
||||
except (ConfigParser.NoOptionError, AttributeError):
|
||||
log.debug("Didn't find a configuration option for '%s' section and '%s' option", section_name, option)
|
||||
return config.get(section_name, default_option)
|
||||
|
||||
def get_doc_url():
|
||||
"""
|
||||
Returns:
|
||||
The URL for the documentation
|
||||
"""
|
||||
return "{url_base}/{language}/{version}/{page_path}".format(
|
||||
url_base=config.get("help_settings", "url_base"),
|
||||
language=get_config_value_with_default("locales", settings.LANGUAGE_CODE),
|
||||
version=config.get("help_settings", "version"),
|
||||
page_path=get_config_value_with_default("pages", page_token),
|
||||
)
|
||||
|
||||
def get_pdf_url():
|
||||
"""
|
||||
Returns:
|
||||
The URL for the PDF document using the pdf_settings and the help_settings (version) in the configuration
|
||||
"""
|
||||
return "{pdf_base}/{version}/{pdf_file}".format(
|
||||
pdf_base=config.get("pdf_settings", "pdf_base"),
|
||||
version=config.get("help_settings", "version"),
|
||||
pdf_file=config.get("pdf_settings", "pdf_file"),
|
||||
)
|
||||
|
||||
return {
|
||||
"doc_url": get_doc_url(),
|
||||
"pdf_url": get_pdf_url(),
|
||||
}
|
||||
|
||||
return {'get_online_help_info': get_online_help_info}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# disable missing docstring
|
||||
# pylint: disable=C0111
|
||||
# pylint: disable=W0621
|
||||
# pylint: disable=W0613
|
||||
|
||||
from lettuce import world, step
|
||||
from component_settings_editor_helpers import enter_xml_in_advanced_problem
|
||||
@@ -8,11 +9,16 @@ from xmodule.modulestore.locations import SlashSeparatedCourseKey
|
||||
from contentstore.utils import reverse_usage_url
|
||||
|
||||
|
||||
@step('I export the course$')
|
||||
def i_export_the_course(step):
|
||||
@step('I go to the export page$')
|
||||
def i_go_to_the_export_page(step):
|
||||
world.click_tools()
|
||||
link_css = 'li.nav-course-tools-export a'
|
||||
world.css_click(link_css)
|
||||
|
||||
|
||||
@step('I export the course$')
|
||||
def i_export_the_course(step):
|
||||
step.given('I go to the export page')
|
||||
world.css_click('a.action-export')
|
||||
|
||||
|
||||
@@ -32,7 +38,7 @@ def i_enter_bad_xml(step):
|
||||
|
||||
|
||||
@step('I edit and enter an ampersand$')
|
||||
def i_enter_bad_xml(step):
|
||||
def i_enter_an_ampersand(step):
|
||||
enter_xml_in_advanced_problem(step, "<problem>&</problem>")
|
||||
|
||||
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
# pylint: disable=C0111
|
||||
# pylint: disable=W0621
|
||||
# pylint: disable=W0613
|
||||
|
||||
import os
|
||||
from lettuce import world
|
||||
from lettuce import world, step
|
||||
from django.conf import settings
|
||||
|
||||
|
||||
@@ -14,7 +18,8 @@ def import_file(filename):
|
||||
world.css_click(outline_css)
|
||||
|
||||
|
||||
def go_to_import():
|
||||
@step('I go to the import page$')
|
||||
def go_to_import(step):
|
||||
menu_css = 'li.nav-course-tools'
|
||||
import_css = 'li.nav-course-tools-import a'
|
||||
world.css_click(menu_css)
|
||||
|
||||
61
cms/djangoapps/contentstore/features/help.feature
Normal file
61
cms/djangoapps/contentstore/features/help.feature
Normal file
@@ -0,0 +1,61 @@
|
||||
@shard_1
|
||||
Feature: CMS.Help
|
||||
As a course author, I am able to access online help
|
||||
|
||||
Scenario: Users can access online help on course listing page
|
||||
Given There are no courses
|
||||
And I am logged into Studio
|
||||
Then I should see online help for "get_started"
|
||||
|
||||
|
||||
Scenario: Users can access online help within a course
|
||||
Given I have opened a new course in Studio
|
||||
|
||||
And I click the course link in My Courses
|
||||
Then I should see online help for "organizing_course"
|
||||
|
||||
And I go to the course updates page
|
||||
Then I should see online help for "updates"
|
||||
|
||||
And I go to the pages page
|
||||
Then I should see online help for "pages"
|
||||
|
||||
And I go to the files and uploads page
|
||||
Then I should see online help for "files"
|
||||
|
||||
And I go to the textbooks page
|
||||
Then I should see online help for "textbooks"
|
||||
|
||||
And I select Schedule and Details
|
||||
Then I should see online help for "setting_up"
|
||||
|
||||
And I am viewing the grading settings
|
||||
Then I should see online help for "grading"
|
||||
|
||||
And I am viewing the course team settings
|
||||
Then I should see online help for "course-team"
|
||||
|
||||
And I select the Advanced Settings
|
||||
Then I should see online help for "index"
|
||||
|
||||
And I select Checklists from the Tools menu
|
||||
Then I should see online help for "checklist"
|
||||
|
||||
And I go to the import page
|
||||
Then I should see online help for "import"
|
||||
|
||||
And I go to the export page
|
||||
Then I should see online help for "export"
|
||||
|
||||
|
||||
Scenario: Users can access online help on the unit page
|
||||
Given I am in Studio editing a new unit
|
||||
Then I should see online help for "units"
|
||||
|
||||
|
||||
Scenario: Users can access online help on the subsection page
|
||||
Given I have opened a new course section in Studio
|
||||
And I have added a new subsection
|
||||
And I click on the subsection
|
||||
Then I should see online help for "subsections"
|
||||
|
||||
24
cms/djangoapps/contentstore/features/help.py
Normal file
24
cms/djangoapps/contentstore/features/help.py
Normal file
@@ -0,0 +1,24 @@
|
||||
# pylint: disable=C0111
|
||||
# pylint: disable=W0621
|
||||
# pylint: disable=W0613
|
||||
|
||||
from nose.tools import assert_false # pylint: disable=no-name-in-module
|
||||
from lettuce import step, world
|
||||
|
||||
|
||||
@step(u'I should see online help for "([^"]*)"$')
|
||||
def see_online_help_for(step, page_name):
|
||||
# make sure the online Help link exists on this page and contains the expected page name
|
||||
elements_found = world.browser.find_by_xpath(
|
||||
'//li[contains(@class, "nav-account-help")]//a[contains(@href, "{page_name}")]'.format(
|
||||
page_name=page_name
|
||||
)
|
||||
)
|
||||
assert_false(elements_found.is_empty())
|
||||
|
||||
# make sure the PDF link on the sock of this page exists
|
||||
# for now, the PDF link stays constant for all the pages so we just check for "pdf"
|
||||
elements_found = world.browser.find_by_xpath(
|
||||
'//section[contains(@class, "sock")]//li[contains(@class, "js-help-pdf")]//a[contains(@href, "pdf")]'
|
||||
)
|
||||
assert_false(elements_found.is_empty())
|
||||
@@ -6,7 +6,7 @@ from lettuce import world, step
|
||||
from nose.tools import assert_equal, assert_true # pylint: disable=E0611
|
||||
from common import type_in_codemirror, open_new_course
|
||||
from advanced_settings import change_value
|
||||
from course_import import import_file, go_to_import
|
||||
from course_import import import_file
|
||||
|
||||
DISPLAY_NAME = "Display Name"
|
||||
MAXIMUM_ATTEMPTS = "Maximum Attempts"
|
||||
@@ -218,11 +218,6 @@ def i_have_empty_course(step):
|
||||
open_new_course()
|
||||
|
||||
|
||||
@step(u'I go to the import page')
|
||||
def i_go_to_import(_step):
|
||||
go_to_import()
|
||||
|
||||
|
||||
@step(u'I import the file "([^"]*)"$')
|
||||
def i_import_the_file(_step, filename):
|
||||
import_file(filename)
|
||||
|
||||
@@ -38,13 +38,14 @@ Feature: CMS.Create Subsection
|
||||
Then I see the subsection release date is 12/25/2011 03:00
|
||||
And I see the subsection due date is 01/02/2012 04:00
|
||||
|
||||
Scenario: Set release and due dates of subsection on enter
|
||||
Given I have opened a new subsection in Studio
|
||||
And I set the subsection release date on enter to 04/04/2014 03:00
|
||||
And I set the subsection due date on enter to 04/04/2014 04:00
|
||||
And I reload the page
|
||||
Then I see the subsection release date is 04/04/2014 03:00
|
||||
And I see the subsection due date is 04/04/2014 04:00
|
||||
# Disabling due to failure on master. JZ 05/14/2014 TODO: fix
|
||||
# Scenario: Set release and due dates of subsection on enter
|
||||
# Given I have opened a new subsection in Studio
|
||||
# And I set the subsection release date on enter to 04/04/2014 03:00
|
||||
# And I set the subsection due date on enter to 04/04/2014 04:00
|
||||
# And I reload the page
|
||||
# Then I see the subsection release date is 04/04/2014 03:00
|
||||
# And I see the subsection due date is 04/04/2014 04:00
|
||||
|
||||
Scenario: Delete a subsection
|
||||
Given I have opened a new course section in Studio
|
||||
@@ -55,15 +56,16 @@ Feature: CMS.Create Subsection
|
||||
And I confirm the prompt
|
||||
Then the subsection does not exist
|
||||
|
||||
Scenario: Sync to Section
|
||||
Given I have opened a new course section in Studio
|
||||
And I click the Edit link for the release date
|
||||
And I set the section release date to 01/02/2103
|
||||
And I have added a new subsection
|
||||
And I click on the subsection
|
||||
And I set the subsection release date to 01/20/2103
|
||||
And I reload the page
|
||||
And I click the link to sync release date to section
|
||||
And I wait for "1" second
|
||||
And I reload the page
|
||||
Then I see the subsection release date is 01/02/2103
|
||||
# Disabling due to failure on master. JZ 05/14/2014 TODO: fix
|
||||
# Scenario: Sync to Section
|
||||
# Given I have opened a new course section in Studio
|
||||
# And I click the Edit link for the release date
|
||||
# And I set the section release date to 01/02/2103
|
||||
# And I have added a new subsection
|
||||
# And I click on the subsection
|
||||
# And I set the subsection release date to 01/20/2103
|
||||
# And I reload the page
|
||||
# And I click the link to sync release date to section
|
||||
# And I wait for "1" second
|
||||
# And I reload the page
|
||||
# Then I see the subsection release date is 01/02/2103
|
||||
|
||||
@@ -4,15 +4,16 @@ Utilities for contentstore tests
|
||||
|
||||
import json
|
||||
|
||||
from student.models import Registration
|
||||
from django.contrib.auth.models import User
|
||||
from django.test.client import Client
|
||||
from django.test.utils import override_settings
|
||||
|
||||
from xmodule.modulestore.django import loc_mapper
|
||||
from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase
|
||||
from xmodule.modulestore.tests.factories import CourseFactory, ItemFactory
|
||||
from contentstore.tests.modulestore_config import TEST_MODULESTORE
|
||||
from contentstore.utils import get_modulestore
|
||||
from student.models import Registration
|
||||
|
||||
|
||||
def parse_json(response):
|
||||
@@ -93,9 +94,9 @@ class CourseTestCase(ModuleStoreTestCase):
|
||||
)
|
||||
self.store = get_modulestore(self.course.location)
|
||||
|
||||
def create_non_staff_authed_user_client(self):
|
||||
def create_non_staff_authed_user_client(self, authenticate=True):
|
||||
"""
|
||||
Create a non-staff user, log them in, and return the client, user to use for testing.
|
||||
Create a non-staff user, log them in (if authenticate=True), and return the client, user to use for testing.
|
||||
"""
|
||||
uname = 'teststudent'
|
||||
password = 'foo'
|
||||
@@ -108,7 +109,8 @@ class CourseTestCase(ModuleStoreTestCase):
|
||||
nonstaff.save()
|
||||
|
||||
client = Client()
|
||||
client.login(username=uname, password=password)
|
||||
if authenticate:
|
||||
client.login(username=uname, password=password)
|
||||
return client, nonstaff
|
||||
|
||||
def populate_course(self):
|
||||
|
||||
@@ -4,38 +4,37 @@ courses
|
||||
"""
|
||||
import logging
|
||||
import os
|
||||
import tarfile
|
||||
import shutil
|
||||
import re
|
||||
from tempfile import mkdtemp
|
||||
import shutil
|
||||
import tarfile
|
||||
from path import path
|
||||
from tempfile import mkdtemp
|
||||
|
||||
from django.conf import settings
|
||||
from django.http import HttpResponse
|
||||
from django.contrib.auth.decorators import login_required
|
||||
from django_future.csrf import ensure_csrf_cookie
|
||||
from django.core.servers.basehttp import FileWrapper
|
||||
from django.core.files.temp import NamedTemporaryFile
|
||||
from django.core.exceptions import SuspiciousOperation, PermissionDenied
|
||||
from django.http import HttpResponseNotFound
|
||||
from django.views.decorators.http import require_http_methods, require_GET
|
||||
from django.core.files.temp import NamedTemporaryFile
|
||||
from django.core.servers.basehttp import FileWrapper
|
||||
from django.http import HttpResponse, HttpResponseNotFound
|
||||
from django.utils.translation import ugettext as _
|
||||
from django.views.decorators.http import require_http_methods, require_GET
|
||||
|
||||
from django_future.csrf import ensure_csrf_cookie
|
||||
from edxmako.shortcuts import render_to_response
|
||||
|
||||
from xmodule.modulestore.xml_importer import import_from_xml
|
||||
from xmodule.contentstore.django import contentstore
|
||||
from xmodule.modulestore.xml_exporter import export_to_xml
|
||||
from xmodule.exceptions import SerializationError
|
||||
from xmodule.modulestore.django import modulestore
|
||||
from xmodule.modulestore.keys import CourseKey
|
||||
from xmodule.exceptions import SerializationError
|
||||
from xmodule.modulestore.xml_importer import import_from_xml
|
||||
from xmodule.modulestore.xml_exporter import export_to_xml
|
||||
|
||||
from .access import has_course_access
|
||||
|
||||
from util.json_request import JsonResponse
|
||||
from .access import has_course_access
|
||||
from extract_tar import safetar_extractall
|
||||
from student.roles import CourseInstructorRole, CourseStaffRole
|
||||
from student import auth
|
||||
from student.roles import CourseInstructorRole, CourseStaffRole, GlobalStaff
|
||||
from util.json_request import JsonResponse
|
||||
|
||||
from contentstore.utils import reverse_course_url, reverse_usage_url
|
||||
|
||||
@@ -234,10 +233,6 @@ def import_handler(request, course_key_string):
|
||||
session_status[key] = 3
|
||||
request.session.modified = True
|
||||
|
||||
auth.add_users(request.user, CourseInstructorRole(new_location.course_key), request.user)
|
||||
auth.add_users(request.user, CourseStaffRole(new_location.course_key), request.user)
|
||||
logging.debug('created all course groups at {0}'.format(new_location))
|
||||
|
||||
# Send errors to client with stage at which error occurred.
|
||||
except Exception as exception: # pylint: disable=W0703
|
||||
log.exception(
|
||||
|
||||
@@ -1,25 +1,29 @@
|
||||
"""
|
||||
Unit tests for course import and export
|
||||
"""
|
||||
import copy
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
import shutil
|
||||
import tarfile
|
||||
import tempfile
|
||||
import copy
|
||||
from path import path
|
||||
import json
|
||||
import logging
|
||||
from uuid import uuid4
|
||||
from pymongo import MongoClient
|
||||
from uuid import uuid4
|
||||
|
||||
from contentstore.tests.utils import CourseTestCase
|
||||
from django.test.utils import override_settings
|
||||
from django.conf import settings
|
||||
from contentstore.utils import reverse_course_url
|
||||
|
||||
from xmodule.contentstore.django import _CONTENTSTORE
|
||||
from xmodule.modulestore.django import loc_mapper
|
||||
from xmodule.modulestore.tests.factories import ItemFactory
|
||||
|
||||
from contentstore.tests.utils import CourseTestCase
|
||||
from student import auth
|
||||
from student.roles import CourseInstructorRole, CourseStaffRole
|
||||
|
||||
TEST_DATA_CONTENTSTORE = copy.deepcopy(settings.CONTENTSTORE)
|
||||
TEST_DATA_CONTENTSTORE['DOC_STORE_CONFIG']['db'] = 'test_xcontent_%s' % uuid4().hex
|
||||
|
||||
@@ -105,6 +109,46 @@ class ImportTestCase(CourseTestCase):
|
||||
|
||||
self.assertEquals(resp.status_code, 200)
|
||||
|
||||
def test_import_in_existing_course(self):
|
||||
"""
|
||||
Check that course is imported successfully in existing course and users have their access roles
|
||||
"""
|
||||
# Create a non_staff user and add it to course staff only
|
||||
__, nonstaff_user = self.create_non_staff_authed_user_client(authenticate=False)
|
||||
auth.add_users(self.user, CourseStaffRole(self.course.id), nonstaff_user)
|
||||
|
||||
course = self.store.get_course(self.course.id)
|
||||
self.assertIsNotNone(course)
|
||||
display_name_before_import = course.display_name
|
||||
|
||||
# Check that global staff user can import course
|
||||
with open(self.good_tar) as gtar:
|
||||
args = {"name": self.good_tar, "course-data": [gtar]}
|
||||
resp = self.client.post(self.url, args)
|
||||
self.assertEquals(resp.status_code, 200)
|
||||
|
||||
course = self.store.get_course(self.course.id)
|
||||
self.assertIsNotNone(course)
|
||||
display_name_after_import = course.display_name
|
||||
|
||||
# Check that course display name have changed after import
|
||||
self.assertNotEqual(display_name_before_import, display_name_after_import)
|
||||
|
||||
# Now check that non_staff user has his same role
|
||||
self.assertFalse(CourseInstructorRole(self.course.id).has_user(nonstaff_user))
|
||||
self.assertTrue(CourseStaffRole(self.course.id).has_user(nonstaff_user))
|
||||
|
||||
# Now course staff user can also successfully import course
|
||||
self.client.login(username=nonstaff_user.username, password='foo')
|
||||
with open(self.good_tar) as gtar:
|
||||
args = {"name": self.good_tar, "course-data": [gtar]}
|
||||
resp = self.client.post(self.url, args)
|
||||
self.assertEquals(resp.status_code, 200)
|
||||
|
||||
# Now check that non_staff user has his same role
|
||||
self.assertFalse(CourseInstructorRole(self.course.id).has_user(nonstaff_user))
|
||||
self.assertTrue(CourseStaffRole(self.course.id).has_user(nonstaff_user))
|
||||
|
||||
## Unsafe tar methods #####################################################
|
||||
# Each of these methods creates a tarfile with a single type of unsafe
|
||||
# content.
|
||||
|
||||
@@ -318,7 +318,7 @@ PIPELINE_CSS = {
|
||||
'css/vendor/ui-lightness/jquery-ui-1.8.22.custom.css',
|
||||
'css/vendor/jquery.qtip.min.css',
|
||||
'js/vendor/markitup/skins/simple/style.css',
|
||||
'js/vendor/markitup/sets/wiki/style.css',
|
||||
'js/vendor/markitup/sets/wiki/style.css'
|
||||
],
|
||||
'output_filename': 'css/cms-style-vendor.css',
|
||||
},
|
||||
|
||||
@@ -4,6 +4,10 @@ Specific overrides to the base prod settings to make development easier.
|
||||
|
||||
from .aws import * # pylint: disable=wildcard-import, unused-wildcard-import
|
||||
|
||||
# Don't use S3 in devstack, fall back to filesystem
|
||||
del DEFAULT_FILE_STORAGE
|
||||
MEDIA_ROOT = "/edx/var/edxapp/uploads"
|
||||
|
||||
DEBUG = True
|
||||
USE_I18N = True
|
||||
TEMPLATE_DEBUG = DEBUG
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "files" %></%def>
|
||||
<%!
|
||||
from django.core.urlresolvers import reverse
|
||||
from django.utils.translation import ugettext as _
|
||||
|
||||
@@ -264,7 +264,8 @@
|
||||
|
||||
<!-- view -->
|
||||
<div class="wrapper wrapper-view">
|
||||
<%include file="widgets/header.html" />
|
||||
<% online_help_token = self.online_help_token() if hasattr(self, 'online_help_token') else None %>
|
||||
<%include file="widgets/header.html" args="online_help_token=online_help_token" />
|
||||
|
||||
<div id="page-alert"></div>
|
||||
|
||||
@@ -276,7 +277,7 @@
|
||||
<script type="text/javascript">
|
||||
require(['js/sock']);
|
||||
</script>
|
||||
<%include file="widgets/sock.html" />
|
||||
<%include file="widgets/sock.html" args="online_help_token=online_help_token" />
|
||||
% endif
|
||||
|
||||
<%include file="widgets/footer.html" />
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "checklist" %></%def>
|
||||
<%!
|
||||
from django.core.urlresolvers import reverse
|
||||
from django.utils.translation import ugettext as _
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
from django.utils.translation import ugettext as _
|
||||
%>
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "updates" %></%def>
|
||||
<%namespace name='static' file='static_content.html'/>
|
||||
|
||||
<!-- TODO decode course # from context_course into title -->
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "pages" %></%def>
|
||||
<%namespace name='static' file='static_content.html'/>
|
||||
<%!
|
||||
from django.utils.translation import ugettext as _
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "subsection" %></%def>
|
||||
<%!
|
||||
import logging
|
||||
from util.date_utils import get_default_time_display, almost_same_datetime
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "export" %></%def>
|
||||
<%namespace name='static' file='static_content.html'/>
|
||||
|
||||
<%!
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "import" %></%def>
|
||||
<%namespace name='static' file='static_content.html'/>
|
||||
<%!
|
||||
from django.utils.translation import ugettext as _
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
|
||||
<%inherit file="base.html" />
|
||||
|
||||
<%def name="online_help_token()"><% return "home" %></%def>
|
||||
<%block name="title">${_("My Courses")}</%block>
|
||||
<%block name="bodyclass">is-signedin index view-dashboard</%block>
|
||||
|
||||
@@ -275,18 +275,18 @@ require(["domReady!", "jquery", "jquery.form", "js/index"], function(doc, $) {
|
||||
% endif
|
||||
|
||||
</article>
|
||||
|
||||
<aside class="content-supplementary" role="complimentary">
|
||||
<div class="bit">
|
||||
<h3 class="title title-3">${_('Need help?')}</h3>
|
||||
<p>${_('If you are new to Studio and having trouble getting started, there are a few things that may be of help:')}</p>
|
||||
<h3 class="title title-3">${_('New to edX Studio?')}</h3>
|
||||
<p>${_('Click Help in the upper-right corner to get more more information about the Studio page you are viewing. You can also use the links at the bottom of the page to access our continously updated documentation and other Studio resources.')}</p>
|
||||
|
||||
<ol class="list-actions">
|
||||
<li class="action-item">
|
||||
<a href="http://files.edx.org/Getting_Started_with_Studio.pdf" title="This is a PDF Document">${_('Get started by reading Studio\'s Documentation')}</a>
|
||||
|
||||
<a href="${get_online_help_info(online_help_token())['doc_url']}" target="_blank">${_("Getting Started with edX Studio")}</a>
|
||||
</li>
|
||||
<li class="action-item">
|
||||
<a href="http://help.edge.edx.org/discussion/new" class="show-tender" title="Use our feedback tool, Tender, to request help">${_('Request help with Studio')}</a>
|
||||
<a href="http://help.edge.edx.org/discussion/new" class="show-tender" title="Use our feedback tool, Tender, to request help">${_('Request help with edX Studio')}</a>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
<%! from django.core.urlresolvers import reverse %>
|
||||
<%! from student.roles import CourseInstructorRole %>
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "team" %></%def>
|
||||
<%block name="title">${_("Course Team Settings")}</%block>
|
||||
<%block name="bodyclass">is-signedin course users view-team</%block>
|
||||
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "outline" %></%def>
|
||||
<%!
|
||||
import logging
|
||||
from util.date_utils import get_default_time_display
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "schedule" %></%def>
|
||||
<%block name="title">${_("Schedule & Details Settings")}</%block>
|
||||
<%block name="bodyclass">is-signedin course schedule view-settings feature-upload</%block>
|
||||
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "advanced" %></%def>
|
||||
<%namespace name='static' file='static_content.html'/>
|
||||
<%!
|
||||
from django.utils.translation import ugettext as _
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "grading" %></%def>
|
||||
<%block name="title">${_("Grading Settings")}</%block>
|
||||
<%block name="bodyclass">is-signedin course grading view-settings</%block>
|
||||
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "textbooks" %></%def>
|
||||
<%namespace name='static' file='static_content.html'/>
|
||||
<%! import json %>
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
@@ -74,6 +75,7 @@ require(["js/models/section", "js/collections/textbook", "js/views/list_textbook
|
||||
<div class="bit">
|
||||
<h3 class="title-3">${_("What if my book isn't divided into chapters?")}</h3>
|
||||
<p>${_("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.")}</p>
|
||||
<p><a href="${get_online_help_info(online_help_token())['doc_url']}" target="_blank">${_("Learn More")}</a></p>
|
||||
</div>
|
||||
</aside>
|
||||
</section>
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<%inherit file="base.html" />
|
||||
<%def name="online_help_token()"><% return "unit" %></%def>
|
||||
<%!
|
||||
from contentstore import utils
|
||||
from contentstore.views.helpers import EDITING_TEMPLATES
|
||||
|
||||
@@ -2,7 +2,9 @@
|
||||
<%!
|
||||
from django.core.urlresolvers import reverse
|
||||
from django.utils.translation import ugettext as _
|
||||
from contentstore.context_processors import doc_url
|
||||
%>
|
||||
<%page args="online_help_token"/>
|
||||
|
||||
<div class="wrapper-header wrapper" id="view-top">
|
||||
<header class="primary" role="banner">
|
||||
@@ -120,26 +122,9 @@
|
||||
% if user.is_authenticated():
|
||||
<nav class="nav-account nav-is-signedin nav-dd ui-right">
|
||||
<h2 class="sr">${_("Help & Account Navigation")}</h2>
|
||||
|
||||
<ol>
|
||||
<li class="nav-item nav-account-help">
|
||||
<h3 class="title"><span class="label">${_("Help")}</span> <i class="icon-caret-down ui-toggle-dd"></i></h3>
|
||||
|
||||
<div class="wrapper wrapper-nav-sub">
|
||||
<div class="nav-sub">
|
||||
<ul>
|
||||
<li class="nav-item nav-help-documentation">
|
||||
<a href="http://files.edx.org/Getting_Started_with_Studio.pdf" title="${_("This is a PDF Document")}">${_("Studio Documentation")}</a>
|
||||
</li>
|
||||
<li class="nav-item nav-help-helpcenter">
|
||||
<a href="http://help.edge.edx.org/" rel="external">${_("Studio Help Center")}</a>
|
||||
</li>
|
||||
<li class="nav-item nav-help-feedback">
|
||||
<a href="http://help.edge.edx.org/discussion/new" class="show-tender" title="${_("Use our feedback tool, Tender, to share your feedback")}">${_("Contact Us")}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<h3 class="title"><span class="label"><a href="${get_online_help_info(online_help_token)['doc_url']}" title="${_("Contextual Online Help")}" target="${_("_blank")}">${_("Help")}</a></span></h3>
|
||||
</li>
|
||||
|
||||
<li class="nav-item nav-account-user">
|
||||
|
||||
@@ -1,46 +1,47 @@
|
||||
<%! from django.utils.translation import ugettext as _ %>
|
||||
<%! from django.core.urlresolvers import reverse %>
|
||||
<%page args="online_help_token"/>
|
||||
<div class="wrapper-sock wrapper">
|
||||
<ul class="list-actions list-cta">
|
||||
<li class="action-item">
|
||||
<a href="#sock" class="cta cta-show-sock"><i class="icon-question-sign"></i> <span class="copy">${_("Looking for Help with Studio?")}</span></a>
|
||||
<a href="#sock" class="cta cta-show-sock"><i class="icon-question-sign"></i> <span class="copy">${_("Looking for help with Studio?")}</span></a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div class="wrapper-inner wrapper">
|
||||
<section class="sock" id="sock">
|
||||
<header>
|
||||
<h2 class="title sr">${_("edX Studio Help")}</h2>
|
||||
<h2 class="title sr">${_("edX Studio Documentation")}</h2>
|
||||
</header>
|
||||
|
||||
<div class="support">
|
||||
<h3 class="title">${_("Studio Support")}</h3>
|
||||
<h3 class="title">${_("edX Studio Documentation")}</h3>
|
||||
|
||||
<div class="copy">
|
||||
<p>${_("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.")}</p>
|
||||
<p>${_("You can click Help in the upper right corner of any page to get more information about the page you're on. You can also use the links below to download the Building and Running an edX Course PDF file, to go to the edX Author Support site, or to enroll in edX101.")}</p>
|
||||
</div>
|
||||
|
||||
<ul class="list-actions">
|
||||
<li class="action-item js-help-pdf">
|
||||
<a href="${get_online_help_info(online_help_token)['pdf_url']}" target="_blank" rel="external" class="action action-primary">${_("Building and Running an edX Course PDF")}</a>
|
||||
</li>
|
||||
|
||||
<li class="action-item">
|
||||
<a href="http://files.edx.org/Getting_Started_with_Studio.pdf" class="action action-primary" title="${_("This is a PDF Document")}">${_("Download Studio Documentation")}</a>
|
||||
<span class="tip">${_("How to use Studio to build your course")}</span>
|
||||
</li>
|
||||
<li class="action-item">
|
||||
<a href="http://help.edge.edx.org/" rel="external" class="action action-primary">${_("Studio Help Center")}</a>
|
||||
<span class="tip">${_("Studio Help Center")}</span>
|
||||
<a href="http://help.edge.edx.org/" rel="external" class="action action-primary">${_("edX Studio Author Support")}</a>
|
||||
<span class="tip">${_("edX Studio Author Support")}</span>
|
||||
</li>
|
||||
<li class="action-item">
|
||||
<a href="https://edge.edx.org/courses/edX/edX101/How_to_Create_an_edX_Course/about" rel="external" class="action action-primary">${_("Enroll in edX101")}</a>
|
||||
<span class="tip">${_("How to use Studio to build your course")}</span>
|
||||
<span class="tip">${_("How to use edX Studio to build your course")}</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="feedback">
|
||||
<h3 class="title">${_("Contact us about Studio")}</h3>
|
||||
<h3 class="title">${_("Request help with edX Studio")}</h3>
|
||||
|
||||
<div class="copy">
|
||||
<p>${_("Have problems, questions, or suggestions about Studio? We're also here to listen to any feedback you want to share.")}</p>
|
||||
<p>${_("Have problems, questions, or suggestions about edX Studio?")}</p>
|
||||
</div>
|
||||
|
||||
<ul class="list-actions">
|
||||
|
||||
99
common/djangoapps/student/firebase_token_generator.py
Normal file
99
common/djangoapps/student/firebase_token_generator.py
Normal file
@@ -0,0 +1,99 @@
|
||||
'''
|
||||
Firebase - library to generate a token
|
||||
License: https://github.com/firebase/firebase-token-generator-python/blob/master/LICENSE
|
||||
Tweaked and Edited by @danielcebrianr and @lduarte1991
|
||||
|
||||
This library will take either objects or strings and use python's built-in encoding
|
||||
system as specified by RFC 3548. Thanks to the firebase team for their open-source
|
||||
library. This was made specifically for speaking with the annotation_storage_url and
|
||||
can be used and expanded, but not modified by anyone else needing such a process.
|
||||
'''
|
||||
from base64 import urlsafe_b64encode
|
||||
import hashlib
|
||||
import hmac
|
||||
import sys
|
||||
try:
|
||||
import json
|
||||
except ImportError:
|
||||
import simplejson as json
|
||||
|
||||
__all__ = ['create_token']
|
||||
|
||||
TOKEN_SEP = '.'
|
||||
|
||||
|
||||
def create_token(secret, data):
|
||||
'''
|
||||
Simply takes in the secret key and the data and
|
||||
passes it to the local function _encode_token
|
||||
'''
|
||||
return _encode_token(secret, data)
|
||||
|
||||
|
||||
if sys.version_info < (2, 7):
|
||||
def _encode(bytes_data):
|
||||
'''
|
||||
Takes a json object, string, or binary and
|
||||
uses python's urlsafe_b64encode to encode data
|
||||
and make it safe pass along in a url.
|
||||
To make sure it does not conflict with variables
|
||||
we make sure equal signs are removed.
|
||||
More info: docs.python.org/2/library/base64.html
|
||||
'''
|
||||
encoded = urlsafe_b64encode(bytes(bytes_data))
|
||||
return encoded.decode('utf-8').replace('=', '')
|
||||
else:
|
||||
def _encode(bytes_info):
|
||||
'''
|
||||
Same as above function but for Python 2.7 or later
|
||||
'''
|
||||
encoded = urlsafe_b64encode(bytes_info)
|
||||
return encoded.decode('utf-8').replace('=', '')
|
||||
|
||||
|
||||
def _encode_json(obj):
|
||||
'''
|
||||
Before a python dict object can be properly encoded,
|
||||
it must be transformed into a jason object and then
|
||||
transformed into bytes to be encoded using the function
|
||||
defined above.
|
||||
'''
|
||||
return _encode(bytearray(json.dumps(obj), 'utf-8'))
|
||||
|
||||
|
||||
def _sign(secret, to_sign):
|
||||
'''
|
||||
This function creates a sign that goes at the end of the
|
||||
message that is specific to the secret and not the actual
|
||||
content of the encoded body.
|
||||
More info on hashing: http://docs.python.org/2/library/hmac.html
|
||||
The function creates a hashed values of the secret and to_sign
|
||||
and returns the digested values based the secure hash
|
||||
algorithm, 256
|
||||
'''
|
||||
def portable_bytes(string):
|
||||
'''
|
||||
Simply transforms a string into a bytes object,
|
||||
which is a series of immutable integers 0<=x<=256.
|
||||
Always try to encode as utf-8, unless it is not
|
||||
compliant.
|
||||
'''
|
||||
try:
|
||||
return bytes(string, 'utf-8')
|
||||
except TypeError:
|
||||
return bytes(string)
|
||||
return _encode(hmac.new(portable_bytes(secret), portable_bytes(to_sign), hashlib.sha256).digest()) # pylint: disable=E1101
|
||||
|
||||
|
||||
def _encode_token(secret, claims):
|
||||
'''
|
||||
This is the main function that takes the secret token and
|
||||
the data to be transmitted. There is a header created for decoding
|
||||
purposes. Token_SEP means that a period/full stop separates the
|
||||
header, data object/message, and signatures.
|
||||
'''
|
||||
encoded_header = _encode_json({'typ': 'JWT', 'alg': 'HS256'})
|
||||
encoded_claims = _encode_json(claims)
|
||||
secure_bits = '%s%s%s' % (encoded_header, TOKEN_SEP, encoded_claims)
|
||||
sig = _sign(secret, secure_bits)
|
||||
return '%s%s%s' % (secure_bits, TOKEN_SEP, sig)
|
||||
43
common/djangoapps/student/tests/test_token_generator.py
Normal file
43
common/djangoapps/student/tests/test_token_generator.py
Normal file
@@ -0,0 +1,43 @@
|
||||
"""
|
||||
This test will run for firebase_token_generator.py.
|
||||
"""
|
||||
|
||||
from django.test import TestCase
|
||||
|
||||
from student.firebase_token_generator import _encode, _encode_json, _encode_token, create_token
|
||||
|
||||
|
||||
class TokenGenerator(TestCase):
|
||||
"""
|
||||
Tests for the file firebase_token_generator.py
|
||||
"""
|
||||
def test_encode(self):
|
||||
"""
|
||||
This tests makes sure that no matter what version of python
|
||||
you have, the _encode function still returns the appropriate result
|
||||
for a string.
|
||||
"""
|
||||
expected = "dGVzdDE"
|
||||
result = _encode("test1")
|
||||
self.assertEqual(expected, result)
|
||||
|
||||
def test_encode_json(self):
|
||||
"""
|
||||
Same as above, but this one focuses on a python dict type
|
||||
transformed into a json object and then encoded.
|
||||
"""
|
||||
expected = "eyJ0d28iOiAidGVzdDIiLCAib25lIjogInRlc3QxIn0"
|
||||
result = _encode_json({'one': 'test1', 'two': 'test2'})
|
||||
self.assertEqual(expected, result)
|
||||
|
||||
def test_create_token(self):
|
||||
"""
|
||||
Unlike its counterpart in student/views.py, this function
|
||||
just checks for the encoding of a token. The other function
|
||||
will test depending on time and user.
|
||||
"""
|
||||
expected = "eyJhbGciOiAiSFMyNTYiLCAidHlwIjogIkpXVCJ9.eyJ1c2VySWQiOiAidXNlcm5hbWUiLCAidHRsIjogODY0MDB9.-p1sr7uwCapidTQ0qB7DdU2dbF-hViKpPNN_5vD10t8"
|
||||
result1 = _encode_token('4c7f4d1c-8ac4-4e9f-84c8-b271c57fcac4', {"userId": "username", "ttl": 86400})
|
||||
result2 = create_token('4c7f4d1c-8ac4-4e9f-84c8-b271c57fcac4', {"userId": "username", "ttl": 86400})
|
||||
self.assertEqual(expected, result1)
|
||||
self.assertEqual(expected, result2)
|
||||
@@ -27,7 +27,7 @@ from mock import Mock, patch
|
||||
|
||||
from student.models import anonymous_id_for_user, user_by_anonymous_id, CourseEnrollment, unique_id_for_user
|
||||
from student.views import (process_survey_link, _cert_info,
|
||||
change_enrollment, complete_course_mode_info)
|
||||
change_enrollment, complete_course_mode_info, token)
|
||||
from student.tests.factories import UserFactory, CourseModeFactory
|
||||
|
||||
import shoppingcart
|
||||
@@ -491,3 +491,26 @@ class AnonymousLookupTable(TestCase):
|
||||
anonymous_id = anonymous_id_for_user(self.user, self.course.id)
|
||||
real_user = user_by_anonymous_id(anonymous_id)
|
||||
self.assertEqual(self.user, real_user)
|
||||
|
||||
|
||||
@override_settings(MODULESTORE=TEST_DATA_MIXED_MODULESTORE)
|
||||
class Token(ModuleStoreTestCase):
|
||||
"""
|
||||
Test for the token generator. This creates a random course and passes it through the token file which generates the
|
||||
token that will be passed in to the annotation_storage_url.
|
||||
"""
|
||||
request_factory = RequestFactory()
|
||||
COURSE_SLUG = "100"
|
||||
COURSE_NAME = "test_course"
|
||||
COURSE_ORG = "edx"
|
||||
|
||||
def setUp(self):
|
||||
self.course = CourseFactory.create(org=self.COURSE_ORG, display_name=self.COURSE_NAME, number=self.COURSE_SLUG)
|
||||
self.user = User.objects.create(username="username", email="username")
|
||||
self.req = self.request_factory.post('/token?course_id=edx/100/test_course', {'user': self.user})
|
||||
self.req.user = self.user
|
||||
|
||||
def test_token(self):
|
||||
expected = HttpResponse("eyJhbGciOiAiSFMyNTYiLCAidHlwIjogIkpXVCJ9.eyJpc3N1ZWRBdCI6ICIyMDE0LTAxLTIzVDE5OjM1OjE3LjUyMjEwNC01OjAwIiwgImNvbnN1bWVyS2V5IjogInh4eHh4eHh4LXh4eHgteHh4eC14eHh4LXh4eHh4eHh4eHh4eCIsICJ1c2VySWQiOiAidXNlcm5hbWUiLCAidHRsIjogODY0MDB9.OjWz9mzqJnYuzX-f3uCBllqJUa8PVWJjcDy_McfxLvc", mimetype="text/plain")
|
||||
response = token(self.req)
|
||||
self.assertEqual(expected.content.split('.')[0], response.content.split('.')[0])
|
||||
|
||||
@@ -44,6 +44,7 @@ from student.models import (
|
||||
create_comments_service_user, PasswordHistory
|
||||
)
|
||||
from student.forms import PasswordResetFormNoActive
|
||||
from student.firebase_token_generator import create_token
|
||||
|
||||
from verify_student.models import SoftwareSecurePhotoVerification, MidcourseReverificationWindow
|
||||
from certificates.models import CertificateStatuses, certificate_status_for_student
|
||||
|
||||
@@ -1796,7 +1796,7 @@ class SymbolicResponse(CustomResponse):
|
||||
log.error(traceback.format_exc())
|
||||
_ = self.capa_system.i18n.ugettext
|
||||
# Translators: 'SymbolicResponse' is a problem type and should not be translated.
|
||||
msg = _(u"oops in SymbolicResponse (cfn) error {error_msg}").format(
|
||||
msg = _(u"An error occurred with SymbolicResponse. The error was: {error_msg}").format(
|
||||
error_msg=err,
|
||||
)
|
||||
raise Exception(msg)
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
"""
|
||||
This file contains a function used to retrieve the token for the annotation backend
|
||||
without having to create a view, but just returning a string instead.
|
||||
|
||||
It can be called from other files by using the following:
|
||||
from xmodule.annotator_token import retrieve_token
|
||||
"""
|
||||
import datetime
|
||||
from firebase_token_generator import create_token
|
||||
|
||||
|
||||
def retrieve_token(userid, secret):
|
||||
'''
|
||||
Return a token for the backend of annotations.
|
||||
It uses the course id to retrieve a variable that contains the secret
|
||||
token found in inheritance.py. It also contains information of when
|
||||
the token was issued. This will be stored with the user along with
|
||||
the id for identification purposes in the backend.
|
||||
'''
|
||||
|
||||
# the following five lines of code allows you to include the default timezone in the iso format
|
||||
# for more information: http://stackoverflow.com/questions/3401428/how-to-get-an-isoformat-datetime-string-including-the-default-timezone
|
||||
dtnow = datetime.datetime.now()
|
||||
dtutcnow = datetime.datetime.utcnow()
|
||||
delta = dtnow - dtutcnow
|
||||
newhour, newmin = divmod((delta.days * 24 * 60 * 60 + delta.seconds + 30) // 60, 60)
|
||||
newtime = "%s%+02d:%02d" % (dtnow.isoformat(), newhour, newmin)
|
||||
# uses the issued time (UTC plus timezone), the consumer key and the user's email to maintain a
|
||||
# federated system in the annotation backend server
|
||||
custom_data = {"issuedAt": newtime, "consumerKey": secret, "userId": userid, "ttl": 86400}
|
||||
newtoken = create_token(secret, custom_data)
|
||||
return newtoken
|
||||
@@ -1,20 +0,0 @@
|
||||
"""
|
||||
This test will run for annotator_token.py
|
||||
"""
|
||||
import unittest
|
||||
|
||||
from xmodule.annotator_token import retrieve_token
|
||||
|
||||
|
||||
class TokenRetriever(unittest.TestCase):
|
||||
"""
|
||||
Tests to make sure that when passed in a username and secret token, that it will be encoded correctly
|
||||
"""
|
||||
def test_token(self):
|
||||
"""
|
||||
Test for the token generator. Give an a random username and secret token, it should create the properly encoded string of text.
|
||||
"""
|
||||
expected = "eyJhbGciOiAiSFMyNTYiLCAidHlwIjogIkpXVCJ9.eyJpc3N1ZWRBdCI6ICIyMDE0LTAyLTI3VDE3OjAwOjQyLjQwNjQ0MSswOjAwIiwgImNvbnN1bWVyS2V5IjogImZha2Vfc2VjcmV0IiwgInVzZXJJZCI6ICJ1c2VybmFtZSIsICJ0dGwiOiA4NjQwMH0.Dx1PoF-7mqBOOSGDMZ9R_s3oaaLRPnn6CJgGGF2A5CQ"
|
||||
response = retrieve_token("username", "fake_secret")
|
||||
self.assertEqual(expected.split('.')[0], response.split('.')[0])
|
||||
self.assertNotEqual(expected.split('.')[2], response.split('.')[2])
|
||||
@@ -38,6 +38,17 @@ class TextAnnotationModuleTestCase(unittest.TestCase):
|
||||
ScopeIds(None, None, None, None)
|
||||
)
|
||||
|
||||
def test_render_content(self):
|
||||
"""
|
||||
Tests to make sure the sample xml is rendered and that it forms a valid xmltree
|
||||
that does not contain a display_name.
|
||||
"""
|
||||
content = self.mod._render_content() # pylint: disable=W0212
|
||||
self.assertIsNotNone(content)
|
||||
element = etree.fromstring(content)
|
||||
self.assertIsNotNone(element)
|
||||
self.assertFalse('display_name' in element.attrib, "Display Name should have been deleted from Content")
|
||||
|
||||
def test_extract_instructions(self):
|
||||
"""
|
||||
Tests to make sure that the instructions are correctly pulled from the sample xml above.
|
||||
@@ -59,5 +70,5 @@ class TextAnnotationModuleTestCase(unittest.TestCase):
|
||||
Tests the function that passes in all the information in the context that will be used in templates/textannotation.html
|
||||
"""
|
||||
context = self.mod.get_html()
|
||||
for key in ['display_name', 'tag', 'source', 'instructions_html', 'content_html', 'annotation_storage', 'token']:
|
||||
for key in ['display_name', 'tag', 'source', 'instructions_html', 'content_html', 'annotation_storage']:
|
||||
self.assertIn(key, context)
|
||||
|
||||
@@ -34,6 +34,100 @@ class VideoAnnotationModuleTestCase(unittest.TestCase):
|
||||
ScopeIds(None, None, None, None)
|
||||
)
|
||||
|
||||
def test_annotation_class_attr_default(self):
|
||||
"""
|
||||
Makes sure that it can detect annotation values in text-form if user
|
||||
decides to add text to the area below video, video functionality is completely
|
||||
found in javascript.
|
||||
"""
|
||||
xml = '<annotation title="x" body="y" problem="0">test</annotation>'
|
||||
element = etree.fromstring(xml)
|
||||
|
||||
expected_attr = {'class': {'value': 'annotatable-span highlight'}}
|
||||
actual_attr = self.mod._get_annotation_class_attr(element) # pylint: disable=W0212
|
||||
|
||||
self.assertIsInstance(actual_attr, dict)
|
||||
self.assertDictEqual(expected_attr, actual_attr)
|
||||
|
||||
def test_annotation_class_attr_with_valid_highlight(self):
|
||||
"""
|
||||
Same as above but more specific to an area that is highlightable in the appropriate
|
||||
color designated.
|
||||
"""
|
||||
xml = '<annotation title="x" body="y" problem="0" highlight="{highlight}">test</annotation>'
|
||||
|
||||
for color in self.mod.highlight_colors:
|
||||
element = etree.fromstring(xml.format(highlight=color))
|
||||
value = 'annotatable-span highlight highlight-{highlight}'.format(highlight=color)
|
||||
|
||||
expected_attr = {'class': {
|
||||
'value': value,
|
||||
'_delete': 'highlight'}
|
||||
}
|
||||
actual_attr = self.mod._get_annotation_class_attr(element) # pylint: disable=W0212
|
||||
|
||||
self.assertIsInstance(actual_attr, dict)
|
||||
self.assertDictEqual(expected_attr, actual_attr)
|
||||
|
||||
def test_annotation_class_attr_with_invalid_highlight(self):
|
||||
"""
|
||||
Same as above, but checked with invalid colors.
|
||||
"""
|
||||
xml = '<annotation title="x" body="y" problem="0" highlight="{highlight}">test</annotation>'
|
||||
|
||||
for invalid_color in ['rainbow', 'blink', 'invisible', '', None]:
|
||||
element = etree.fromstring(xml.format(highlight=invalid_color))
|
||||
expected_attr = {'class': {
|
||||
'value': 'annotatable-span highlight',
|
||||
'_delete': 'highlight'}
|
||||
}
|
||||
actual_attr = self.mod._get_annotation_class_attr(element) # pylint: disable=W0212
|
||||
|
||||
self.assertIsInstance(actual_attr, dict)
|
||||
self.assertDictEqual(expected_attr, actual_attr)
|
||||
|
||||
def test_annotation_data_attr(self):
|
||||
"""
|
||||
Test that each highlight contains the data information from the annotation itself.
|
||||
"""
|
||||
element = etree.fromstring('<annotation title="bar" body="foo" problem="0">test</annotation>')
|
||||
|
||||
expected_attr = {
|
||||
'data-comment-body': {'value': 'foo', '_delete': 'body'},
|
||||
'data-comment-title': {'value': 'bar', '_delete': 'title'},
|
||||
'data-problem-id': {'value': '0', '_delete': 'problem'}
|
||||
}
|
||||
|
||||
actual_attr = self.mod._get_annotation_data_attr(element) # pylint: disable=W0212
|
||||
|
||||
self.assertIsInstance(actual_attr, dict)
|
||||
self.assertDictEqual(expected_attr, actual_attr)
|
||||
|
||||
def test_render_annotation(self):
|
||||
"""
|
||||
Tests to make sure that the spans designating annotations acutally visually render as annotations.
|
||||
"""
|
||||
expected_html = '<span class="annotatable-span highlight highlight-yellow" data-comment-title="x" data-comment-body="y" data-problem-id="0">z</span>'
|
||||
expected_el = etree.fromstring(expected_html)
|
||||
|
||||
actual_el = etree.fromstring('<annotation title="x" body="y" problem="0" highlight="yellow">z</annotation>')
|
||||
self.mod._render_annotation(actual_el) # pylint: disable=W0212
|
||||
|
||||
self.assertEqual(expected_el.tag, actual_el.tag)
|
||||
self.assertEqual(expected_el.text, actual_el.text)
|
||||
self.assertDictEqual(dict(expected_el.attrib), dict(actual_el.attrib))
|
||||
|
||||
def test_render_content(self):
|
||||
"""
|
||||
Like above, but using the entire text, it makes sure that display_name is removed and that there is only one
|
||||
div encompassing the annotatable area.
|
||||
"""
|
||||
content = self.mod._render_content() # pylint: disable=W0212
|
||||
element = etree.fromstring(content)
|
||||
self.assertIsNotNone(element)
|
||||
self.assertEqual('div', element.tag, 'root tag is a div')
|
||||
self.assertFalse('display_name' in element.attrib, "Display Name should have been deleted from Content")
|
||||
|
||||
def test_extract_instructions(self):
|
||||
"""
|
||||
This test ensures that if an instruction exists it is pulled and
|
||||
@@ -66,6 +160,6 @@ class VideoAnnotationModuleTestCase(unittest.TestCase):
|
||||
"""
|
||||
Tests to make sure variables passed in truly exist within the html once it is all rendered.
|
||||
"""
|
||||
context = self.mod.get_html() # pylint: disable=W0212
|
||||
for key in ['display_name', 'instructions_html', 'sourceUrl', 'typeSource', 'poster', 'annotation_storage']:
|
||||
context = self.mod.get_html()
|
||||
for key in ['display_name', 'content_html', 'instructions_html', 'sourceUrl', 'typeSource', 'poster', 'alert', 'annotation_storage']:
|
||||
self.assertIn(key, context)
|
||||
|
||||
@@ -6,7 +6,6 @@ from pkg_resources import resource_string
|
||||
from xmodule.x_module import XModule
|
||||
from xmodule.raw_module import RawDescriptor
|
||||
from xblock.core import Scope, String
|
||||
from xmodule.annotator_token import retrieve_token
|
||||
|
||||
import textwrap
|
||||
|
||||
@@ -31,7 +30,7 @@ class AnnotatableFields(object):
|
||||
scope=Scope.settings,
|
||||
default='Text Annotation',
|
||||
)
|
||||
instructor_tags = String(
|
||||
tags = String(
|
||||
display_name="Tags for Assignments",
|
||||
help="Add tags that automatically highlight in a certain color using the comma-separated form, i.e. imagery:red,parallelism:blue",
|
||||
scope=Scope.settings,
|
||||
@@ -44,7 +43,6 @@ class AnnotatableFields(object):
|
||||
default='None',
|
||||
)
|
||||
annotation_storage_url = String(help="Location of Annotation backend", scope=Scope.settings, default="http://your_annotation_storage.com", display_name="Url for Annotation Storage")
|
||||
annotation_token_secret = String(help="Secret string for annotation storage", scope=Scope.settings, default="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", display_name="Secret Token String for Annotation")
|
||||
|
||||
|
||||
class TextAnnotationModule(AnnotatableFields, XModule):
|
||||
@@ -61,9 +59,15 @@ class TextAnnotationModule(AnnotatableFields, XModule):
|
||||
|
||||
self.instructions = self._extract_instructions(xmltree)
|
||||
self.content = etree.tostring(xmltree, encoding='unicode')
|
||||
self.user_email = ""
|
||||
if self.runtime.get_real_user is not None:
|
||||
self.user_email = self.runtime.get_real_user(self.runtime.anonymous_student_id).email
|
||||
self.highlight_colors = ['yellow', 'orange', 'purple', 'blue', 'green']
|
||||
|
||||
def _render_content(self):
|
||||
""" Renders annotatable content with annotation spans and returns HTML. """
|
||||
xmltree = etree.fromstring(self.content)
|
||||
if 'display_name' in xmltree.attrib:
|
||||
del xmltree.attrib['display_name']
|
||||
|
||||
return etree.tostring(xmltree, encoding='unicode')
|
||||
|
||||
def _extract_instructions(self, xmltree):
|
||||
""" Removes <instructions> from the xmltree and returns them as a string, otherwise None. """
|
||||
@@ -77,14 +81,15 @@ class TextAnnotationModule(AnnotatableFields, XModule):
|
||||
def get_html(self):
|
||||
""" Renders parameters to template. """
|
||||
context = {
|
||||
'course_key': self.runtime.course_id,
|
||||
'display_name': self.display_name_with_default,
|
||||
'tag': self.instructor_tags,
|
||||
'tag': self.tags,
|
||||
'source': self.source,
|
||||
'instructions_html': self.instructions,
|
||||
'content_html': self.content,
|
||||
'annotation_storage': self.annotation_storage_url,
|
||||
'token': retrieve_token(self.user_email, self.annotation_token_secret),
|
||||
'content_html': self._render_content(),
|
||||
'annotation_storage': self.annotation_storage_url
|
||||
}
|
||||
|
||||
return self.system.render_template('textannotation.html', context)
|
||||
|
||||
|
||||
@@ -97,7 +102,6 @@ class TextAnnotationDescriptor(AnnotatableFields, RawDescriptor):
|
||||
def non_editable_metadata_fields(self):
|
||||
non_editable_fields = super(TextAnnotationDescriptor, self).non_editable_metadata_fields
|
||||
non_editable_fields.extend([
|
||||
TextAnnotationDescriptor.annotation_storage_url,
|
||||
TextAnnotationDescriptor.annotation_token_secret,
|
||||
TextAnnotationDescriptor.annotation_storage_url
|
||||
])
|
||||
return non_editable_fields
|
||||
|
||||
@@ -7,7 +7,6 @@ from pkg_resources import resource_string
|
||||
from xmodule.x_module import XModule
|
||||
from xmodule.raw_module import RawDescriptor
|
||||
from xblock.core import Scope, String
|
||||
from xmodule.annotator_token import retrieve_token
|
||||
|
||||
import textwrap
|
||||
|
||||
@@ -32,7 +31,7 @@ class AnnotatableFields(object):
|
||||
sourceurl = String(help="The external source URL for the video.", display_name="Source URL", scope=Scope.settings, default="http://video-js.zencoder.com/oceans-clip.mp4")
|
||||
poster_url = String(help="Poster Image URL", display_name="Poster URL", scope=Scope.settings, default="")
|
||||
annotation_storage_url = String(help="Location of Annotation backend", scope=Scope.settings, default="http://your_annotation_storage.com", display_name="Url for Annotation Storage")
|
||||
annotation_token_secret = String(help="Secret string for annotation storage", scope=Scope.settings, default="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", display_name="Secret Token String for Annotation")
|
||||
|
||||
|
||||
class VideoAnnotationModule(AnnotatableFields, XModule):
|
||||
'''Video Annotation Module'''
|
||||
@@ -56,9 +55,73 @@ class VideoAnnotationModule(AnnotatableFields, XModule):
|
||||
|
||||
self.instructions = self._extract_instructions(xmltree)
|
||||
self.content = etree.tostring(xmltree, encoding='unicode')
|
||||
self.user_email = ""
|
||||
if self.runtime.get_real_user is not None:
|
||||
self.user_email = self.runtime.get_real_user(self.runtime.anonymous_student_id).email
|
||||
self.highlight_colors = ['yellow', 'orange', 'purple', 'blue', 'green']
|
||||
|
||||
def _get_annotation_class_attr(self, element):
|
||||
""" Returns a dict with the CSS class attribute to set on the annotation
|
||||
and an XML key to delete from the element.
|
||||
"""
|
||||
|
||||
attr = {}
|
||||
cls = ['annotatable-span', 'highlight']
|
||||
highlight_key = 'highlight'
|
||||
color = element.get(highlight_key)
|
||||
|
||||
if color is not None:
|
||||
if color in self.highlight_colors:
|
||||
cls.append('highlight-' + color)
|
||||
attr['_delete'] = highlight_key
|
||||
attr['value'] = ' '.join(cls)
|
||||
|
||||
return {'class': attr}
|
||||
|
||||
def _get_annotation_data_attr(self, element):
|
||||
""" Returns a dict in which the keys are the HTML data attributes
|
||||
to set on the annotation element. Each data attribute has a
|
||||
corresponding 'value' and (optional) '_delete' key to specify
|
||||
an XML attribute to delete.
|
||||
"""
|
||||
|
||||
data_attrs = {}
|
||||
attrs_map = {
|
||||
'body': 'data-comment-body',
|
||||
'title': 'data-comment-title',
|
||||
'problem': 'data-problem-id'
|
||||
}
|
||||
|
||||
for xml_key in attrs_map.keys():
|
||||
if xml_key in element.attrib:
|
||||
value = element.get(xml_key, '')
|
||||
html_key = attrs_map[xml_key]
|
||||
data_attrs[html_key] = {'value': value, '_delete': xml_key}
|
||||
|
||||
return data_attrs
|
||||
|
||||
def _render_annotation(self, element):
|
||||
""" Renders an annotation element for HTML output. """
|
||||
attr = {}
|
||||
attr.update(self._get_annotation_class_attr(element))
|
||||
attr.update(self._get_annotation_data_attr(element))
|
||||
|
||||
element.tag = 'span'
|
||||
|
||||
for key in attr.keys():
|
||||
element.set(key, attr[key]['value'])
|
||||
if '_delete' in attr[key] and attr[key]['_delete'] is not None:
|
||||
delete_key = attr[key]['_delete']
|
||||
del element.attrib[delete_key]
|
||||
|
||||
def _render_content(self):
|
||||
""" Renders annotatable content with annotation spans and returns HTML. """
|
||||
xmltree = etree.fromstring(self.content)
|
||||
xmltree.tag = 'div'
|
||||
if 'display_name' in xmltree.attrib:
|
||||
del xmltree.attrib['display_name']
|
||||
|
||||
for element in xmltree.findall('.//annotation'):
|
||||
self._render_annotation(element)
|
||||
|
||||
return etree.tostring(xmltree, encoding='unicode')
|
||||
|
||||
def _extract_instructions(self, xmltree):
|
||||
""" Removes <instructions> from the xmltree and returns them as a string, otherwise None. """
|
||||
@@ -86,14 +149,15 @@ class VideoAnnotationModule(AnnotatableFields, XModule):
|
||||
extension = self._get_extension(self.sourceurl)
|
||||
|
||||
context = {
|
||||
'course_key': self.runtime.course_id,
|
||||
'display_name': self.display_name_with_default,
|
||||
'instructions_html': self.instructions,
|
||||
'sourceUrl': self.sourceurl,
|
||||
'typeSource': extension,
|
||||
'poster': self.poster_url,
|
||||
'content_html': self.content,
|
||||
'annotation_storage': self.annotation_storage_url,
|
||||
'token': retrieve_token(self.user_email, self.annotation_token_secret),
|
||||
'alert': self,
|
||||
'content_html': self._render_content(),
|
||||
'annotation_storage': self.annotation_storage_url
|
||||
}
|
||||
|
||||
return self.system.render_template('videoannotation.html', context)
|
||||
@@ -108,7 +172,6 @@ class VideoAnnotationDescriptor(AnnotatableFields, RawDescriptor):
|
||||
def non_editable_metadata_fields(self):
|
||||
non_editable_fields = super(VideoAnnotationDescriptor, self).non_editable_metadata_fields
|
||||
non_editable_fields.extend([
|
||||
VideoAnnotationDescriptor.annotation_storage_url,
|
||||
VideoAnnotationDescriptor.annotation_token_secret,
|
||||
VideoAnnotationDescriptor.annotation_storage_url
|
||||
])
|
||||
return non_editable_fields
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
Annotator.Plugin.Auth.prototype.haveValidToken = function() {
|
||||
return (
|
||||
this._unsafeToken &&
|
||||
this._unsafeToken.d.issuedAt &&
|
||||
this._unsafeToken.d.ttl &&
|
||||
this._unsafeToken.d.consumerKey &&
|
||||
this.timeToExpiry() > 0
|
||||
);
|
||||
};
|
||||
|
||||
Annotator.Plugin.Auth.prototype.timeToExpiry = function() {
|
||||
var expiry, issue, now, timeToExpiry;
|
||||
now = new Date().getTime() / 1000;
|
||||
issue = createDateFromISO8601(this._unsafeToken.d.issuedAt).getTime() / 1000;
|
||||
expiry = issue + this._unsafeToken.d.ttl;
|
||||
timeToExpiry = expiry - now;
|
||||
if (timeToExpiry > 0) {
|
||||
return timeToExpiry;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
@@ -64,7 +64,7 @@ class RegistrationTest(UniqueCourseTest):
|
||||
course_names = dashboard.available_courses
|
||||
self.assertIn(self.course_info['display_name'], course_names)
|
||||
|
||||
|
||||
@skip("TE-399")
|
||||
class LanguageTest(UniqueCourseTest):
|
||||
"""
|
||||
Tests that the change language functionality on the dashboard works
|
||||
@@ -381,6 +381,10 @@ class XBlockAcidNoChildTest(XBlockAcidBase):
|
||||
)
|
||||
).install()
|
||||
|
||||
@skip('Flakey test, TE-401')
|
||||
def test_acid_block(self):
|
||||
super(XBlockAcidNoChildTest, self).test_acid_block()
|
||||
|
||||
|
||||
class XBlockAcidChildTest(XBlockAcidBase):
|
||||
"""
|
||||
|
||||
Binary file not shown.
@@ -45,6 +45,7 @@
|
||||
# abdallah_n <abdoosh00@gmail.com>, 2013-2014
|
||||
# abdallah.nassif <abdallah_n@hotmail.com>, 2013
|
||||
# Ahmad Abd Arrahman <mygooglizer@gmail.com>, 2013-2014
|
||||
# ayshibly <ayshibly@gmail.com>, 2014
|
||||
# hani1460 <hani0a@hotmail.com>, 2014
|
||||
# Hassan05 <hassan.upb@gmail.com>, 2014
|
||||
# jkfreij <jkfreij@gmail.com>, 2014
|
||||
@@ -69,6 +70,7 @@
|
||||
# jkfreij <jkfreij@gmail.com>, 2014
|
||||
# khateeb <eng.elkhteeb@gmail.com>, 2013
|
||||
# may <may@qordoba.com>, 2014
|
||||
# nabeelqordoba <nabeel@qordoba.com>, 2014
|
||||
# najwan <najwanrousan@gmail.com>, 2013
|
||||
# sarina <sarina@edx.org>, 2014
|
||||
# #-#-#-#-# messages.po (edx-platform) #-#-#-#-#
|
||||
@@ -96,7 +98,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: edx-platform\n"
|
||||
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
|
||||
"POT-Creation-Date: 2014-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-0400\n"
|
||||
"PO-Revision-Date: 2014-05-12 17:39+0000\n"
|
||||
"Last-Translator: nabeelqordoba <nabeel@qordoba.com>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/edx-platform/language/ar/)\n"
|
||||
@@ -995,7 +997,7 @@ msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "error"
|
||||
msgstr ""
|
||||
msgstr "خطأ"
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
#: common/templates/course_modes/choose.html
|
||||
@@ -1007,10 +1009,12 @@ msgid ""
|
||||
"[courseware.capa.responsetypes.customresponse] error getting student answer from {student_answers}\n"
|
||||
" idset = {idset}, error = {err}"
|
||||
msgstr ""
|
||||
"[courseware.capa.responsetypes.customresponse] خطأ في الحصول على إجابة الطالب من {student_answers}\n"
|
||||
"idset = {idset}، خطأ = {err}"
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "No answer entered!"
|
||||
msgstr ""
|
||||
msgstr "لم يتمّ إدخال أي إجابة!"
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "CustomResponse: check function returned an invalid dictionary!"
|
||||
@@ -1019,16 +1023,16 @@ msgstr "CustomResponse: وظيفة التحقق رجعت بدليل غير صح
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "No answer provided."
|
||||
msgstr ""
|
||||
msgstr "لم يتمّ تقديم أي جواب."
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "Error checking problem: no external queueing server is configured."
|
||||
msgstr ""
|
||||
msgstr "حدث مشكلة في التحقّق من الخطأ: لم يتمّ ضبط أي مخدّم صف خارجي."
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid ""
|
||||
@@ -1540,6 +1544,9 @@ msgid ""
|
||||
"The URL for your video. This can be a YouTube URL or a link to an .mp4, "
|
||||
".ogg, or .webm video file hosted elsewhere on the Internet."
|
||||
msgstr ""
|
||||
"الرابط الإلكتروني لمقطع الفيديو الخاص بك. يمكن أن يكون رابط عنوان مقطع فيديو"
|
||||
" على موقع YouTube أو رابط لملف فيديو .mp4 أو .ogg أو .webm في أي موقع على "
|
||||
"شبكة الانترنت."
|
||||
|
||||
#. Translators: This is a type of file used for captioning in the video
|
||||
#. player.
|
||||
@@ -1576,38 +1583,75 @@ 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})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py
|
||||
#: lms/djangoapps/instructor/views/legacy.py
|
||||
#: lms/djangoapps/instructor/views/legacy.py
|
||||
#: lms/djangoapps/instructor/views/legacy.py
|
||||
#: lms/djangoapps/instructor/views/tools.py
|
||||
#: lms/templates/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr "اسم المستخدم"
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr "الدرجة"
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr "النسبة"
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: "
|
||||
"{grade:.0f}/{max_grade:.0f} {questions})"
|
||||
|
||||
#: 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}"
|
||||
msgid "Subsection"
|
||||
msgstr ""
|
||||
"قام {num_students} بفتح القسم الفرعي رقم {subsection_num}: واسمه "
|
||||
"{subsection_name} "
|
||||
|
||||
#: 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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
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/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr "النتيجة"
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
"{problem_info_x} {problem_info_n} - {count_grade} {students} "
|
||||
"({percent:.0f}%: {grade:.0f}/{max_grade:.0f} {questions})"
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
#. alone.
|
||||
@@ -2009,24 +2053,6 @@ msgstr "المستخدم غير موجود."
|
||||
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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4988,10 +5014,6 @@ msgstr "قائمة المتصدِرين في اللغز "
|
||||
msgid "User"
|
||||
msgstr "المستخدم"
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr "النتيجة"
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr "نبذة عن"
|
||||
@@ -5976,7 +5998,7 @@ msgstr "إعادة ضبط عدد محاولات الطالب "
|
||||
|
||||
#: lms/templates/staff_problem_info.html
|
||||
msgid "Delete Student State"
|
||||
msgstr ""
|
||||
msgstr "إلغاء حالة الطالب في المساق"
|
||||
|
||||
#: lms/templates/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/student_admin.html
|
||||
@@ -6770,7 +6792,7 @@ msgstr "الأوراق الموزّعة للمساق"
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
msgid "Legacy Instructor Dashboard"
|
||||
msgstr ""
|
||||
msgstr "شاشة المعلومات الرئيسية الموروثة للموَجه."
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html
|
||||
@@ -6779,7 +6801,7 @@ msgstr "عرض المساق في الاستوديو"
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
msgid "Back To Instructor Dashboard"
|
||||
msgstr ""
|
||||
msgstr "العودة إلى شاشة المعلومات الرئيسية للموجّه."
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html
|
||||
@@ -6792,16 +6814,20 @@ msgid ""
|
||||
"You are using the legacy instructor dashboard, which we will retire in the "
|
||||
"near future."
|
||||
msgstr ""
|
||||
"أنت تستخدم شاشة المعلومات الرئيسية الموروثة للموجّه، التي سنقوم بسحبها في "
|
||||
"المستقبل القريب."
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
msgid "Return to the Instructor Dashboard"
|
||||
msgstr ""
|
||||
msgstr "العودة إلى شاشة المعلومات الرئيسية للموجّه"
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
msgid ""
|
||||
"If the Instructor Dashboard is missing functionality, please contact your PM"
|
||||
" to let us know."
|
||||
msgstr ""
|
||||
"إذا لم تكن شاشة المعلومات الرئيسية تعمل، الرجاء الاتصال بمدير المشروع "
|
||||
"لإعلامنا بذلك."
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
msgid "Psychometrics"
|
||||
@@ -6998,7 +7024,6 @@ msgstr "سحب التسجيل من سجل الدرجات الخارجي"
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr "القسم:"
|
||||
|
||||
@@ -7148,12 +7173,6 @@ msgstr "الطلاب "
|
||||
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 "الحد الأعلى "
|
||||
@@ -7168,7 +7187,6 @@ 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."
|
||||
@@ -7343,10 +7361,6 @@ msgstr ""
|
||||
"يتم حالياً استكمال التفاصيل النهائية للمساق، وسيكون تصنيفك النهائي متاحاً "
|
||||
"قريباً."
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr "درجتك النهائية:"
|
||||
@@ -7431,7 +7445,7 @@ msgstr "{course_number} {course_name} صورة الغلاف"
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_course_listing.html
|
||||
msgid "You're enrolled as a verified student"
|
||||
msgstr ""
|
||||
msgstr "تمّ تسجيلك كطالب معتمد."
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_course_listing.html
|
||||
#: lms/templates/dashboard/_dashboard_course_listing.html
|
||||
@@ -7445,7 +7459,7 @@ msgstr "تم التحقق"
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_course_listing.html
|
||||
msgid "You're enrolled as an honor code student"
|
||||
msgstr ""
|
||||
msgstr "تمّ تسجيلك بمثابة طالب في ميثاق الشرف."
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_course_listing.html
|
||||
#: lms/templates/static_templates/honor.html
|
||||
@@ -7455,11 +7469,11 @@ msgstr "شهادة شرفيّة"
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_course_listing.html
|
||||
msgid "You're auditing this course"
|
||||
msgstr ""
|
||||
msgstr "أنت مسجّل في هذا المساق كمستمع."
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_course_listing.html
|
||||
msgid "Auditing"
|
||||
msgstr ""
|
||||
msgstr "الحضور بصفة مستمع."
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_course_listing.html
|
||||
msgid "Course Completed - {end_date}"
|
||||
@@ -8698,6 +8712,8 @@ msgid ""
|
||||
"Specify the extension due date and time (in UTC; please specify "
|
||||
"{format_string})."
|
||||
msgstr ""
|
||||
"حدّد تاريخ وتوقيت التمديد (بحسب التوقيت العالمي؛ الرجاء استخدام الصيغة "
|
||||
"{شهر/يوم/سنة ساعة:دقيقة})."
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/extensions.html
|
||||
msgid "Change due date for student"
|
||||
@@ -8728,7 +8744,7 @@ msgstr "إظهار قائمة بكافة الطلاب الذين تم منحهم
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/extensions.html
|
||||
msgid "Specify a 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"
|
||||
@@ -8754,7 +8770,7 @@ msgstr "إعادة ضبط التاريخ المحدّد للطالب."
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html
|
||||
msgid "Revert to Legacy Dashboard"
|
||||
msgstr ""
|
||||
msgstr "العودة إلى شاشة المعلومات الرئيسية الموروثة "
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html
|
||||
msgid ""
|
||||
@@ -8762,6 +8778,9 @@ msgid ""
|
||||
"transition time, you can still access the old Instructor Dashboard by "
|
||||
"clicking the 'Revert to Legacy Dashboard' button above."
|
||||
msgstr ""
|
||||
"لقد قمنا بتغيير شكل وأسلوب شاشة المعلومات الرئيسية. خلال فترة التحوّل هذه، "
|
||||
"يمكنك الدخول إلى شاشة المعلومات الرئيسية للموجّه القديمة من خلال الضغط على "
|
||||
"زرّ \"العودة إلى شاشة المعلومات الرئيسية الموروثة\" أعلاه."
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html
|
||||
msgid "section_display_name"
|
||||
@@ -9012,13 +9031,54 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr "إضافة المساعد المشرف للمجموعة"
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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 "عدد الطلاب الذين قاموا بفتح قسم فرعي"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Student Opened as a CSV"
|
||||
@@ -9033,14 +9093,6 @@ msgstr "تنزيل درجات الطلاب بصيغة CSV"
|
||||
msgid "This is a partial list, to view all students download as a csv."
|
||||
msgstr "هذه قائمة جزئية، لعرض جميع الطلاب يرجى التنزيل بصيغة CSV."
|
||||
|
||||
#: 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"
|
||||
@@ -9084,17 +9136,19 @@ msgstr "إظهار سجل كافة مهمات البريد الإلكتروني
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/student_admin.html
|
||||
msgid "Student Gradebook"
|
||||
msgstr ""
|
||||
msgstr "دفتر الدرجات الخاص بالطالب"
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/student_admin.html
|
||||
msgid ""
|
||||
"Click here to view the gradebook for enrolled students. This feature is only"
|
||||
" visible to courses with a small number of total enrolled students."
|
||||
msgstr ""
|
||||
"الرجاء النقر هنا لعرض كتاب الدرجات الخاص بالطلاب المسجّلين. يمكن رؤية هذه "
|
||||
"الميزة فقط في المساقات التي يكون عدد الطلاب المسجلّين فيها قليلًا."
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/student_admin.html
|
||||
msgid "View Gradebook"
|
||||
msgstr ""
|
||||
msgstr "عرض دفتر الدرجات"
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/student_admin.html
|
||||
msgid "Student-specific grade inspection"
|
||||
@@ -9301,7 +9355,7 @@ msgstr ""
|
||||
"{p_tag}ليس لديك حالياً أية مهمّات تقييم نظراء تنتظرك. وحتى تصلك مهمّات تقييم نظراء:\n"
|
||||
"{ul_tag}\n"
|
||||
"{li_tag}يجب أن تكون قد قدّمت إجابةً على إحدى مسائل تقييم النظراء{end_li_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"
|
||||
@@ -11381,8 +11435,7 @@ msgstr ""
|
||||
"للمساعدة."
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr "استخدام أداة الآراء والملاحظات لدينا، ’تندر‘، للإسهام بملاحظاتك "
|
||||
|
||||
@@ -11919,7 +11972,7 @@ msgid ""
|
||||
"Integrating your imported content into this course. This may take a while "
|
||||
"with larger courses."
|
||||
msgstr ""
|
||||
"يتم دمج المحتوى الذي قمت باستيراده في هذا المقرر. قد يستغرق ذلك وقتاً مع "
|
||||
"يتم دمج المحتوى الذي قمت باستيراده في هذا المساق. قد يستغرق ذلك وقتاً مع "
|
||||
"المساقات الكبيرة. "
|
||||
|
||||
#: cms/templates/import.html
|
||||
@@ -12154,7 +12207,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"EDX استوديو هو حل برمجي مستضاف نوفّره لشركاء xConsortium وللضيوف المحددين. "
|
||||
"تظهر المساقات التي كنت عضواً في فريق إنشائها في الأعلى وبإمكانك تعديلها، في "
|
||||
"الأثناء التي يتم خلالها منح امتيازات صاحب المقرر من قبل EDX. سيقوم فريقنا "
|
||||
"الأثناء التي يتم خلالها منح امتيازات صاحب المساق من قبل EDX. سيقوم فريقنا "
|
||||
"بتقييم طلبك وإعطائك إجابةً بشأنه في غضون 24 ساعة خلال أسبوع العمل."
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -12178,7 +12231,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"EDX استوديو هو حل برمجي مستضاف نوفّره لشركاء xConsortium وللضيوف المحددين. "
|
||||
"تظهر المساقات التي كنت عضواً في فريق إنشائها في الأعلى وبإمكانك تعديلها، في "
|
||||
"الأثناء التي يتم خلالها منح امتيازات صاحب المقرر من قبل EDX. لقد أنهى فريقنا"
|
||||
"الأثناء التي يتم خلالها منح امتيازات صاحب المساق من قبل EDX. لقد أنهى فريقنا"
|
||||
" عملية تقييم طلبك."
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
@@ -12203,7 +12256,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"EDX استوديو هو حل برمجي مستضاف نوفّره لشركاء xConsortium وللضيوف المحددين. "
|
||||
"تظهر المساقات التي كنت عضواً في فريق إنشائها في الأعلى وبإمكانك تعديلها، في "
|
||||
"الأثناء التي يتم خلالها منح امتيازات صاحب المقرر من قبل EDX. طلبك قيد "
|
||||
"الأثناء التي يتم خلالها منح امتيازات صاحب المساق من قبل EDX. طلبك قيد "
|
||||
"التقييم الآن من قبل فريقنا."
|
||||
|
||||
#: cms/templates/index.html
|
||||
@@ -12214,25 +12267,25 @@ msgstr ""
|
||||
"طلبك حالياً قيد المراجعة والتقييم من قبل طاقم edX في الوقت الحالي وسيتم "
|
||||
"التحديث بشأنه قريباً."
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr "هل تحتاج إلى مساعدة؟"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
"إذا كنت جديداً على برنامج استوديو ولديك بعض الصعوبات في البدء، هنالك بعض "
|
||||
"الأمور التي قد تساعدك:"
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgstr "ابدأ أولاً بقراءة التوثيق الخاص ببرنامج استوديو."
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
msgstr "اطلب المساعدة ببرنامج استوديو"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
msgid "Can I create courses in Studio?"
|
||||
@@ -12280,6 +12333,10 @@ msgstr ""
|
||||
" الإلكتروني (%(email)s). ستجد رسالة التفعيل مع الخطوات القادمة التي يجب "
|
||||
"اتخاذها بانتظارك هناك."
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr "هل تحتاج إلى مساعدة؟"
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -12310,7 +12367,7 @@ msgstr "المعلومات المطلوبة لتسجيل الدخول لاستو
|
||||
msgid "Email Address"
|
||||
msgstr "عنوان البريد الإلكتروني"
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr "دعم الاستوديو"
|
||||
|
||||
@@ -12781,11 +12838,11 @@ msgid ""
|
||||
"email\" href=\"mailto:conrad@edx.org\">(conrad@edx.org)</a>."
|
||||
msgstr ""
|
||||
"تؤثر هذه التواريخ على <strong>الفترة التي يمكن فيها رؤية المنهاج</strong>، "
|
||||
"لكنها <strong>تختلف عن التواريخ التي تظهر على صفحة ملخص مقررك</strong>. "
|
||||
"ولتحديد تاريخ بدء المقرر وتواريخ التسجيل كما ستظهر على صفحة ملخص مقررك، "
|
||||
"الرجاء اتباع الإرشادات المتوفرة من قبل مدير البرنامج أو السيد كونراد وار على"
|
||||
" <a rel=\"email\" class=\"action action-email\" "
|
||||
"href=\"mailto:conrad@edx.org\">(conrad@edx.org)</a>. "
|
||||
"لكنها <strong>تختلف عن التواريخ التي تظهر على صفحة ملخص مساقك</strong>. "
|
||||
"ولتحديد تاريخ بدء المساق وتواريخ التسجيل كما ستظهر على صفحة ملخص مساقك، "
|
||||
"الرجاء اتباع الإرشادات المتوفرة من قبل <abbr title=\"Program Manager\">مدير "
|
||||
"البرنامج</abbr> أو السيد كونراد وار على <a rel=\"email\" class=\"action "
|
||||
"action-email\" href=\"mailto:conrad@edx.org\">(conrad@edx.org)</a>."
|
||||
|
||||
#: cms/templates/settings.html
|
||||
msgid "Introducing Your Course"
|
||||
@@ -13093,6 +13150,10 @@ msgstr ""
|
||||
"إذا لم يتضمّن كتابك فصول منفردة، يمكنك تحميل النص بأكمله كفصل واحد وإدخال "
|
||||
"اسم من اختيارك في حقل إسم الفصل."
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr "وحدة منفردة"
|
||||
@@ -13262,8 +13323,7 @@ msgstr "تمّ إرسال رابط تفعيل على {email}، مع التعل
|
||||
msgid "All rights reserved."
|
||||
msgstr "جميع الحقوق محفوظة."
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr "للاتصال بنا"
|
||||
|
||||
@@ -13303,18 +13363,9 @@ msgstr "تصدير"
|
||||
msgid "Help & Account Navigation"
|
||||
msgstr "المساعدة وتصفح الحساب "
|
||||
|
||||
#: cms/templates/widgets/header.html cms/templates/widgets/sock.html
|
||||
msgid "This is a PDF Document"
|
||||
msgstr "هذه وثيقة بصيغة PDF"
|
||||
|
||||
#: 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 "مركز مساعدة برنامج استوديو"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
msgid "Currently signed in as:"
|
||||
@@ -13388,46 +13439,40 @@ msgid "Label"
|
||||
msgstr "العنوان"
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgstr "هل تبحث عن مساعدة في برنامج استديو؟"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
msgstr "المساعدة الخاصة ببرنامج استوديو edX"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
"هل تحتاج مساعدة في استعمال برنامج استوديو؟ إن وضع مقررٍ ما هو أمرٌ معقد، "
|
||||
"لذلك فنحن هنا للمساعدة. استفد من التوثيق الكامل الذي نوفّره، ومن مركز "
|
||||
"المساعدة، وأيضاً من مقرر edX101 التمهيدي لمؤلفي المساقات."
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgstr "تنزيل وثائق برنامج استوديو"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgstr "كيفية استعمال برنامج استوديو لبناء مساقك"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Enroll in edX101"
|
||||
msgstr "التسجيل في مساق edX101 "
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgstr "اتصل بنا بخصوص برنامج استوديو"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
"هل يوجد لديك مشاكل، أسئلة، أو اقتراحات تتعلق ببرنامج استوديو؟ نحن هنا أيضاً "
|
||||
"للاستماع لأي آراء أو ملاحظات من قبلك تود مشاركتها."
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
msgid "name"
|
||||
|
||||
Binary file not shown.
@@ -10,6 +10,7 @@
|
||||
# abdallah.nassif <abdallah_n@hotmail.com>, 2013
|
||||
# Ahmad Abd Arrahman <mygooglizer@gmail.com>, 2013
|
||||
# Ahmad Abd Arrahman <mygooglizer@gmail.com>, 2013
|
||||
# ayshibly <ayshibly@gmail.com>, 2014
|
||||
# jkfreij <jkfreij@gmail.com>, 2014
|
||||
# khateeb <eng.elkhteeb@gmail.com>, 2013
|
||||
# khateeb <eng.elkhteeb@gmail.com>, 2013
|
||||
@@ -37,8 +38,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: edx-platform\n"
|
||||
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
|
||||
"POT-Creation-Date: 2014-05-13 09:30-0400\n"
|
||||
"PO-Revision-Date: 2014-05-12 17:46+0000\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-18 11:56+0000\n"
|
||||
"Last-Translator: nabeelqordoba <nabeel@qordoba.com>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/projects/p/edx-platform/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1551,6 +1552,18 @@ msgstr "لم تتم عملية إعادة التقييم بنجاح"
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr "لا يمكن استرجاع البيانات، الرجاء إعادة المحاولة لاحقاً"
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr "عدد الطلاب"
|
||||
@@ -1823,6 +1836,8 @@ msgid ""
|
||||
"Showing %(current_item_range)s out of %(total_items_count)s, sorted by "
|
||||
"%(sort_name)s ascending"
|
||||
msgstr ""
|
||||
"إظهار %(current_item_range)s من أصل إجمالي يبلغ %(total_items_count)s، "
|
||||
"مرتّبة وفقًا لـ %(sort_name)s تصاعدي"
|
||||
|
||||
#. Translators: sample result: "Showing 0-9 out of 25 total, sorted by Date
|
||||
#. Added descending"
|
||||
@@ -1831,12 +1846,14 @@ msgid ""
|
||||
"Showing %(current_item_range)s out of %(total_items_count)s, sorted by "
|
||||
"%(sort_name)s descending"
|
||||
msgstr ""
|
||||
"إظهار %(current_item_range)s من أصل إجمالي يبلغ %(total_items_count)s، "
|
||||
"مرتّبة وفقًا لـ %(sort_name)s تنازلي"
|
||||
|
||||
#. Translators: turns into "25 total" to be used in other sentences, e.g.
|
||||
#. "Showing 0-9 out of 25 total".
|
||||
#: cms/static/js/views/paging_header.js
|
||||
msgid "%(total_items)s total"
|
||||
msgstr ""
|
||||
msgstr "مجموع يبلغ %(total_items)s "
|
||||
|
||||
#: cms/static/js/views/section_edit.js
|
||||
msgid "Your change could not be saved"
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-0400\n"
|
||||
"PO-Revision-Date: 2014-04-07 13:46+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/edx-platform/language/az/)\n"
|
||||
@@ -919,7 +919,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1435,31 +1435,78 @@ 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})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Subsection"
|
||||
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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1832,24 +1879,6 @@ msgstr ""
|
||||
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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4468,10 +4497,6 @@ msgstr ""
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
@@ -6328,7 +6353,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6465,12 +6489,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6485,7 +6503,6 @@ 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."
|
||||
@@ -6652,10 +6669,6 @@ msgid ""
|
||||
"will be available shortly."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr ""
|
||||
@@ -8112,12 +8125,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8133,14 +8187,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10252,8 +10298,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -10978,22 +11023,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11037,6 +11084,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11064,7 +11115,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11758,6 +11809,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -11905,8 +11960,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -11946,17 +12000,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12031,26 +12076,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12058,13 +12104,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/edx-platform/language/az/)\n"
|
||||
@@ -1364,6 +1364,18 @@ msgstr ""
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-0400\n"
|
||||
"PO-Revision-Date: 2014-02-06 03:04+0000\n"
|
||||
"Last-Translator: nedbat <ned@edx.org>\n"
|
||||
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/edx-platform/language/bg_BG/)\n"
|
||||
@@ -919,7 +919,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1435,31 +1435,78 @@ 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})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Subsection"
|
||||
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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1832,24 +1879,6 @@ msgstr ""
|
||||
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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4468,10 +4497,6 @@ msgstr ""
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
@@ -6328,7 +6353,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6465,12 +6489,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6485,7 +6503,6 @@ 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."
|
||||
@@ -6652,10 +6669,6 @@ msgid ""
|
||||
"will be available shortly."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr ""
|
||||
@@ -8112,12 +8125,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8133,14 +8187,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10252,8 +10298,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -10978,22 +11023,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11037,6 +11084,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11064,7 +11115,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11758,6 +11809,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -11905,8 +11960,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -11946,17 +12000,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12031,26 +12076,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12058,13 +12104,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/edx-platform/language/bg_BG/)\n"
|
||||
@@ -1364,6 +1364,18 @@ msgstr ""
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-0400\n"
|
||||
"PO-Revision-Date: 2014-02-06 03:20+0000\n"
|
||||
"Last-Translator: nedbat <ned@edx.org>\n"
|
||||
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/edx-platform/language/bn_BD/)\n"
|
||||
@@ -922,7 +922,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1438,31 +1438,78 @@ 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})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Subsection"
|
||||
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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1835,24 +1882,6 @@ msgstr ""
|
||||
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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4471,10 +4500,6 @@ msgstr ""
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
@@ -6331,7 +6356,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6468,12 +6492,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6488,7 +6506,6 @@ 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."
|
||||
@@ -6655,10 +6672,6 @@ msgid ""
|
||||
"will be available shortly."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr ""
|
||||
@@ -8115,12 +8128,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8136,14 +8190,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10255,8 +10301,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -10981,22 +11026,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11040,6 +11087,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11067,7 +11118,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11761,6 +11812,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -11908,8 +11963,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -11949,17 +12003,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12034,26 +12079,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12061,13 +12107,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: edx-platform\n"
|
||||
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
|
||||
"POT-Creation-Date: 2014-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/edx-platform/language/bn_BD/)\n"
|
||||
@@ -1365,6 +1365,18 @@ msgstr ""
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-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"
|
||||
@@ -919,7 +919,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1435,31 +1435,78 @@ 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})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Subsection"
|
||||
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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1832,24 +1879,6 @@ msgstr ""
|
||||
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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4468,10 +4497,6 @@ msgstr ""
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
@@ -6328,7 +6353,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6465,12 +6489,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6485,7 +6503,6 @@ 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."
|
||||
@@ -6652,10 +6669,6 @@ msgid ""
|
||||
"will be available shortly."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr ""
|
||||
@@ -8112,12 +8125,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8133,14 +8187,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10252,8 +10298,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -10978,22 +11023,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11037,6 +11084,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11064,7 +11115,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11758,6 +11809,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -11905,8 +11960,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -11946,17 +12000,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12031,26 +12076,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12058,13 +12104,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: Bengali (India) (http://www.transifex.com/projects/p/edx-platform/language/bn_IN/)\n"
|
||||
@@ -1364,6 +1364,18 @@ msgstr ""
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-0400\n"
|
||||
"PO-Revision-Date: 2014-05-10 13:30+0000\n"
|
||||
"Last-Translator: Kenan Dervišević\n"
|
||||
"Language-Team: Bosnian (http://www.transifex.com/projects/p/edx-platform/language/bs/)\n"
|
||||
@@ -922,7 +922,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1438,31 +1438,78 @@ 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})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Subsection"
|
||||
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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1835,24 +1882,6 @@ msgstr ""
|
||||
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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4471,10 +4500,6 @@ msgstr ""
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
@@ -6333,7 +6358,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6470,12 +6494,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6490,7 +6508,6 @@ 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."
|
||||
@@ -6657,10 +6674,6 @@ msgid ""
|
||||
"will be available shortly."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr ""
|
||||
@@ -8119,12 +8132,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8140,14 +8194,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10259,8 +10305,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -10985,22 +11030,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11044,6 +11091,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11071,7 +11122,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11765,6 +11816,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -11912,8 +11967,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -11953,17 +12007,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12038,26 +12083,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12065,13 +12111,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: edx-platform\n"
|
||||
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
|
||||
"POT-Creation-Date: 2014-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: Bosnian (http://www.transifex.com/projects/p/edx-platform/language/bs/)\n"
|
||||
@@ -1381,6 +1381,18 @@ msgstr ""
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
@@ -49,7 +49,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: edx-platform\n"
|
||||
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
|
||||
"POT-Creation-Date: 2014-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-0400\n"
|
||||
"PO-Revision-Date: 2014-04-25 17:00+0000\n"
|
||||
"Last-Translator: mcolomer <mcmlilhity@gmail.com>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/edx-platform/language/ca/)\n"
|
||||
@@ -939,7 +939,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1457,31 +1457,78 @@ msgid "Copyright"
|
||||
msgstr "Copyright"
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: "
|
||||
"{grade:.0f}/{max_grade:.0f} {questions})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/open_ended_problems/open_ended_flagged_problems.html
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py
|
||||
#: lms/djangoapps/instructor/views/legacy.py
|
||||
#: lms/djangoapps/instructor/views/legacy.py
|
||||
#: lms/djangoapps/instructor/views/legacy.py
|
||||
#: lms/djangoapps/instructor/views/tools.py
|
||||
#: lms/templates/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr "Nom d'usuari"
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
msgid "Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Opened by this number of students"
|
||||
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})"
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1856,24 +1903,6 @@ msgstr "L'usuari no existeix."
|
||||
msgid "Task is already running."
|
||||
msgstr "La tasca ja s'està executant."
|
||||
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr "Nom d'usuari"
|
||||
|
||||
#: 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 "Nom"
|
||||
|
||||
#: lms/djangoapps/instructor/views/api.py
|
||||
#: lms/djangoapps/instructor/views/instructor_dashboard.py
|
||||
#: lms/templates/dashboard.html
|
||||
@@ -4620,10 +4649,6 @@ msgstr ""
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
@@ -6480,7 +6505,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6617,12 +6641,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6637,7 +6655,6 @@ 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."
|
||||
@@ -6804,10 +6821,6 @@ msgid ""
|
||||
"will be available shortly."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr ""
|
||||
@@ -8264,12 +8277,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8285,14 +8339,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10417,8 +10463,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -11143,22 +11188,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11202,6 +11249,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11229,7 +11280,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11923,6 +11974,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -12070,8 +12125,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -12111,17 +12165,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12196,26 +12241,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgstr "Busques ajuda amb l'Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12223,13 +12269,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-12 18:15+0000\n"
|
||||
"Last-Translator: mcolomer <mcmlilhity@gmail.com>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/projects/p/edx-platform/language/ca/)\n"
|
||||
@@ -1485,6 +1485,18 @@ msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
"No s'ha pogut obtenir les dades. Si us plau, intenta-ho més endavant."
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr "Nombre d'estudiants"
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-0400\n"
|
||||
"PO-Revision-Date: 2014-02-12 14:59+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/edx-platform/language/ca@valencia/)\n"
|
||||
@@ -919,7 +919,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1435,31 +1435,78 @@ 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})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Subsection"
|
||||
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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1832,24 +1879,6 @@ msgstr ""
|
||||
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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4468,10 +4497,6 @@ msgstr ""
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
@@ -6328,7 +6353,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6465,12 +6489,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6485,7 +6503,6 @@ 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."
|
||||
@@ -6652,10 +6669,6 @@ msgid ""
|
||||
"will be available shortly."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr ""
|
||||
@@ -8112,12 +8125,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8133,14 +8187,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10252,8 +10298,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -10978,22 +11023,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11037,6 +11084,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11064,7 +11115,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11758,6 +11809,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -11905,8 +11960,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -11946,17 +12000,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12031,26 +12076,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12058,13 +12104,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: edx-platform\n"
|
||||
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
|
||||
"POT-Creation-Date: 2014-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: Catalan (Valencian) (http://www.transifex.com/projects/p/edx-platform/language/ca@valencia/)\n"
|
||||
@@ -1365,6 +1365,18 @@ msgstr ""
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -32,6 +32,7 @@ locales:
|
||||
- gl # Galician
|
||||
- he # Hebrew
|
||||
- hi # Hindi
|
||||
- hr # Croatian
|
||||
- hu # Hungarian
|
||||
- hy_AM # Armenian (Armenia)
|
||||
- id # Indonesian
|
||||
|
||||
Binary file not shown.
@@ -54,7 +54,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: edx-platform\n"
|
||||
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
|
||||
"POT-Creation-Date: 2014-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-0400\n"
|
||||
"PO-Revision-Date: 2014-05-10 08:20+0000\n"
|
||||
"Last-Translator: m23 <black23@gmail.com>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/projects/p/edx-platform/language/cs/)\n"
|
||||
@@ -935,7 +935,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1449,31 +1449,78 @@ msgid "Copyright"
|
||||
msgstr "Copyright"
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: "
|
||||
"{grade:.0f}/{max_grade:.0f} {questions})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Subsection"
|
||||
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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1846,24 +1893,6 @@ msgstr ""
|
||||
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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4480,10 +4509,6 @@ msgstr ""
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
@@ -6342,7 +6367,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6479,12 +6503,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6499,7 +6517,6 @@ 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."
|
||||
@@ -6666,10 +6683,6 @@ msgid ""
|
||||
"will be available shortly."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr ""
|
||||
@@ -8128,12 +8141,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8149,14 +8203,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10268,8 +10314,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -10994,22 +11039,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11053,6 +11100,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11080,7 +11131,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11774,6 +11825,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -11921,8 +11976,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -11962,17 +12016,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12047,26 +12092,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12074,13 +12120,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/projects/p/edx-platform/language/cs/)\n"
|
||||
@@ -1387,6 +1387,18 @@ msgstr ""
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-0400\n"
|
||||
"PO-Revision-Date: 2014-02-06 03:04+0000\n"
|
||||
"Last-Translator: nedbat <ned@edx.org>\n"
|
||||
"Language-Team: Welsh (http://www.transifex.com/projects/p/edx-platform/language/cy/)\n"
|
||||
@@ -921,7 +921,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1437,31 +1437,78 @@ 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})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Subsection"
|
||||
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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1834,24 +1881,6 @@ msgstr ""
|
||||
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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4470,10 +4499,6 @@ msgstr ""
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
@@ -6334,7 +6359,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6471,12 +6495,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6491,7 +6509,6 @@ 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."
|
||||
@@ -6658,10 +6675,6 @@ msgid ""
|
||||
"will be available shortly."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr ""
|
||||
@@ -8122,12 +8135,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8143,14 +8197,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10262,8 +10308,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -10988,22 +11033,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11047,6 +11094,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11074,7 +11125,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11768,6 +11819,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -11915,8 +11970,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -11956,17 +12010,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12041,26 +12086,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12068,13 +12114,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: Welsh (http://www.transifex.com/projects/p/edx-platform/language/cy/)\n"
|
||||
@@ -1396,6 +1396,18 @@ msgstr ""
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-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"
|
||||
@@ -919,7 +919,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1435,31 +1435,78 @@ 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})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Subsection"
|
||||
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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1832,24 +1879,6 @@ msgstr ""
|
||||
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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4468,10 +4497,6 @@ msgstr ""
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
@@ -6328,7 +6353,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6465,12 +6489,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6485,7 +6503,6 @@ 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."
|
||||
@@ -6652,10 +6669,6 @@ msgid ""
|
||||
"will be available shortly."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr ""
|
||||
@@ -8112,12 +8125,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8133,14 +8187,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10252,8 +10298,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -10978,22 +11023,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11037,6 +11084,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11064,7 +11115,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11758,6 +11809,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -11905,8 +11960,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -11946,17 +12000,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12031,26 +12076,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12058,13 +12104,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/projects/p/edx-platform/language/da/)\n"
|
||||
@@ -1364,6 +1364,18 @@ msgstr ""
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
@@ -35,7 +35,7 @@
|
||||
#
|
||||
# Translators:
|
||||
# AlecL <alexander.lohberg@paluno.uni-due.de>, 2013
|
||||
# AlecL <alexander.lohberg@paluno.uni-due.de>, 2013
|
||||
# AlecL <alexander.lohberg@paluno.uni-due.de>, 2013-2014
|
||||
# s6lidaem <linda.daemmer@web.de>, 2014
|
||||
# ramirezterrix <maximilian@kindshofer.net>, 2014
|
||||
# ramirezterrix <maximilian@kindshofer.net>, 2014
|
||||
@@ -79,7 +79,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: edx-platform\n"
|
||||
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
|
||||
"POT-Creation-Date: 2014-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-0400\n"
|
||||
"PO-Revision-Date: 2014-04-29 12:42+0000\n"
|
||||
"Last-Translator: s6lidaem <linda.daemmer@web.de>\n"
|
||||
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/edx-platform/language/de_DE/)\n"
|
||||
@@ -970,7 +970,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1483,31 +1483,77 @@ msgid "Copyright"
|
||||
msgstr "Copyright"
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: "
|
||||
"{grade:.0f}/{max_grade:.0f} {questions})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Subsection"
|
||||
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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr "Punkte"
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1882,24 +1928,6 @@ msgstr "Benutzer existiert nicht."
|
||||
msgid "Task is already running."
|
||||
msgstr "Aufgabe läuft bereits."
|
||||
|
||||
#: 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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4578,10 +4606,6 @@ msgstr "Puzzle Bestenliste"
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr "Punkte"
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr "Über"
|
||||
@@ -6440,7 +6464,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6577,12 +6600,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6597,7 +6614,6 @@ 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."
|
||||
@@ -6764,10 +6780,6 @@ msgid ""
|
||||
"will be available shortly."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr ""
|
||||
@@ -8224,12 +8236,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8245,14 +8298,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10376,8 +10421,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -11102,22 +11146,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11161,6 +11207,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11188,7 +11238,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11882,6 +11932,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -12029,8 +12083,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -12070,17 +12123,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12155,26 +12199,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12182,13 +12227,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -28,7 +28,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: edx-platform\n"
|
||||
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
|
||||
"POT-Creation-Date: 2014-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/edx-platform/language/de_DE/)\n"
|
||||
@@ -1426,6 +1426,18 @@ msgstr ""
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr "Anzahl der Teilnehmer"
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-0400\n"
|
||||
"PO-Revision-Date: 2014-05-05 15:24+0000\n"
|
||||
"Last-Translator: multiheader <panosfyra4@yahoo.gr>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/edx-platform/language/el/)\n"
|
||||
@@ -927,7 +927,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1443,31 +1443,78 @@ 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})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Subsection"
|
||||
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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1840,24 +1887,6 @@ msgstr ""
|
||||
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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4476,10 +4505,6 @@ msgstr ""
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
@@ -6336,7 +6361,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6473,12 +6497,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6493,7 +6511,6 @@ 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."
|
||||
@@ -6660,10 +6677,6 @@ msgid ""
|
||||
"will be available shortly."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr ""
|
||||
@@ -8120,12 +8133,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8141,14 +8195,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10260,8 +10306,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -10986,22 +11031,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11045,6 +11092,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11072,7 +11123,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11766,6 +11817,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -11913,8 +11968,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -11954,17 +12008,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12039,26 +12084,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12066,13 +12112,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -17,7 +17,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: edx-platform\n"
|
||||
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
|
||||
"POT-Creation-Date: 2014-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/projects/p/edx-platform/language/el/)\n"
|
||||
@@ -1367,6 +1367,18 @@ msgstr ""
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:17-0400\n"
|
||||
"PO-Revision-Date: 2014-02-06 03:04+0000\n"
|
||||
"Last-Translator: nedbat <ned@edx.org>\n"
|
||||
"Language-Team: LOLCAT English (http://www.transifex.com/projects/p/edx-platform/language/en@lolcat/)\n"
|
||||
@@ -935,7 +935,7 @@ msgstr ""
|
||||
#. Translators: 'SymbolicResponse' is a problem type and should not be
|
||||
#. translated.
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
msgid "oops in SymbolicResponse (cfn) error {error_msg}"
|
||||
msgid "An error occurred with SymbolicResponse. The error was: {error_msg}"
|
||||
msgstr ""
|
||||
|
||||
#: common/lib/capa/capa/responsetypes.py
|
||||
@@ -1451,31 +1451,77 @@ msgid "Copyright"
|
||||
msgstr "COPYRIGHT"
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{label} {problem_name} - {count_grade} {students} ({percent:.0f}%: "
|
||||
"{grade:.0f}/{max_grade:.0f} {questions})"
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/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/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "students"
|
||||
#: 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/staff_problem_info.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "questions"
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid ""
|
||||
"{num_students} student(s) opened Subsection {subsection_num}: "
|
||||
"{subsection_name}"
|
||||
msgid "Subsection"
|
||||
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})"
|
||||
msgid "Opened by this number of students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "subsections"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/analytics.html
|
||||
msgid "Problem"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "Count of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "% of Students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr "SKOR"
|
||||
|
||||
#: lms/djangoapps/class_dashboard/dashboard_data.py
|
||||
msgid "problems"
|
||||
msgstr ""
|
||||
|
||||
#. Translators: this string includes wiki markup. Leave the ** and the _
|
||||
@@ -1848,24 +1894,6 @@ msgstr ""
|
||||
msgid "Task is already running."
|
||||
msgstr "DIS TASK IZ ALREADEH RUNNIN."
|
||||
|
||||
#: 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/staff_problem_info.html
|
||||
#: 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
|
||||
@@ -4506,10 +4534,6 @@ msgstr "PUZEL LEADRBORD"
|
||||
msgid "User"
|
||||
msgstr "UZER"
|
||||
|
||||
#: lms/templates/folditchallenge.html
|
||||
msgid "Score"
|
||||
msgstr "SKOR"
|
||||
|
||||
#: lms/templates/footer.html
|
||||
msgid "About"
|
||||
msgstr "BOUT"
|
||||
@@ -6432,7 +6456,6 @@ msgstr ""
|
||||
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/courseware/instructor_dashboard.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Section:"
|
||||
msgstr ""
|
||||
|
||||
@@ -6569,12 +6592,6 @@ msgstr ""
|
||||
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 ""
|
||||
@@ -6589,7 +6606,6 @@ 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."
|
||||
@@ -6760,10 +6776,6 @@ msgstr ""
|
||||
"FINAL COURSE DETAILS R BEAN WRAPPD UP AT DIS TIEM. UR FINAL STANDIN WILL BE "
|
||||
"AVAILABLE SHORTLEH."
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final standing is unrequested or unavailable at this time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/dashboard/_dashboard_certificate_information.html
|
||||
msgid "Your final grade:"
|
||||
msgstr "UR FINAL GRAED:"
|
||||
@@ -8225,12 +8237,53 @@ msgstr ""
|
||||
msgid "Add Community TA"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Use Reload Graphs to refresh the graphs."
|
||||
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"
|
||||
msgid "Subsection Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the number of students that opened the subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that opened the "
|
||||
"subsection."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "You can also download this data as a CSV file."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Subsection Data for all Subsections as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Grade Distribution Data"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Each bar shows the grade distribution for that problem."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid ""
|
||||
"You can click on any of the bars to list the students that attempted the "
|
||||
"problem, along with the grades they received."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
msgid "Download Problem Data for all Problems as a CSV"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/instructor/instructor_dashboard_2/metrics.html
|
||||
@@ -8246,14 +8299,6 @@ msgstr ""
|
||||
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"
|
||||
@@ -10399,8 +10444,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/error.html cms/templates/error.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Use our feedback tool, Tender, to share your feedback"
|
||||
msgstr ""
|
||||
|
||||
@@ -11125,22 +11169,24 @@ msgid ""
|
||||
"shortly."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
#: cms/templates/index.html
|
||||
msgid "New to edX Studio?"
|
||||
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:"
|
||||
"Click Help in the upper-right corner to get more more information about the "
|
||||
"Studio page you are viewing. You can also use the links at the bottom of the"
|
||||
" page to access our continously updated documentation and other Studio "
|
||||
"resources."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Get started by reading Studio's Documentation"
|
||||
msgid "Getting Started with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Request help with Studio"
|
||||
#: cms/templates/index.html cms/templates/widgets/sock.html
|
||||
msgid "Request help with edX Studio"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html cms/templates/index.html cms/templates/index.html
|
||||
@@ -11184,6 +11230,10 @@ msgid ""
|
||||
"waiting for you there."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid "Need help?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/index.html
|
||||
msgid ""
|
||||
"Please check your Junk or Spam folders in case our email isn't in your "
|
||||
@@ -11211,7 +11261,7 @@ msgstr ""
|
||||
msgid "Email Address"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/login.html cms/templates/widgets/sock.html
|
||||
#: cms/templates/login.html
|
||||
msgid "Studio Support"
|
||||
msgstr ""
|
||||
|
||||
@@ -11905,6 +11955,10 @@ msgid ""
|
||||
"Name field."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/textbooks.html
|
||||
msgid "Learn More"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/unit.html cms/templates/ux/reference/unit.html
|
||||
msgid "Individual Unit"
|
||||
msgstr ""
|
||||
@@ -12052,8 +12106,7 @@ msgstr ""
|
||||
msgid "All rights reserved."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/header.html
|
||||
#: cms/templates/widgets/sock.html
|
||||
#: cms/templates/widgets/footer.html cms/templates/widgets/sock.html
|
||||
msgid "Contact Us"
|
||||
msgstr ""
|
||||
|
||||
@@ -12093,17 +12146,8 @@ msgstr ""
|
||||
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"
|
||||
msgid "Contextual Online Help"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/header.html
|
||||
@@ -12178,26 +12222,27 @@ msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Looking for Help with Studio?"
|
||||
msgid "Looking for help with Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Help"
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "edX Studio Documentation"
|
||||
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."
|
||||
"You can click Help in the upper right corner of any page to get more "
|
||||
"information about the page you're on. You can also use the links below to "
|
||||
"download the Building and Running an edX Course PDF file, to go to the edX "
|
||||
"Author Support site, or to enroll in edX101."
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Download Studio Documentation"
|
||||
msgid "Building and Running an edX Course PDF"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html cms/templates/widgets/sock.html
|
||||
msgid "How to use Studio to build your course"
|
||||
msgid "edX Studio Author Support"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
@@ -12205,13 +12250,11 @@ msgid "Enroll in edX101"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/sock.html
|
||||
msgid "Contact us about Studio"
|
||||
msgid "How to use edX Studio to build your course"
|
||||
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."
|
||||
msgid "Have problems, questions, or suggestions about edX Studio?"
|
||||
msgstr ""
|
||||
|
||||
#: cms/templates/widgets/tabs-aggregator.html
|
||||
|
||||
Binary file not shown.
@@ -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-05-13 09:30-0400\n"
|
||||
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
|
||||
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
|
||||
"Last-Translator: sarina <sarina@edx.org>\n"
|
||||
"Language-Team: LOLCAT English (http://www.transifex.com/projects/p/edx-platform/language/en@lolcat/)\n"
|
||||
@@ -1411,6 +1411,18 @@ msgstr ""
|
||||
msgid "Unable to retrieve data, please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "student(s) opened Subsection"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "students"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "questions"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/class_dashboard/d3_stacked_bar_graph.js
|
||||
msgid "Number of Students"
|
||||
msgstr ""
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user