Commit 0d37b4b2 by Greg Price

Merge branch 'release'

Conflicts:
	cms/djangoapps/contentstore/tests/test_course_listing.py
	common/djangoapps/student/management/commands/create_random_users.py
	common/lib/xmodule/xmodule/modulestore/loc_mapper_store.py
	lms/djangoapps/bulk_email/forms.py
	lms/djangoapps/courseware/tests/test_video_handlers.py
	lms/djangoapps/courseware/views.py
	lms/djangoapps/instructor/management/commands/openended_post.py
	lms/djangoapps/instructor/management/commands/openended_stats.py
	lms/djangoapps/instructor/tests/test_spoc_gradebook.py
parents dbf4425e 85565a3d
......@@ -163,6 +163,9 @@ def _accessible_courses_list(request):
"""
Get courses to which this user has access
"""
if isinstance(course, ErrorDescriptor):
return False
if GlobalStaff().has_user(request.user):
return course.location.course != 'templates'
......@@ -189,9 +192,9 @@ def _accessible_courses_list_from_groups(request):
course_key = course_access.course_id
if course_key not in courses_list:
course = modulestore('direct').get_course(course_key)
if course is None:
raise ItemNotFoundError(course_key)
courses_list[course_key] = course
if course is not None and not isinstance(course, ErrorDescriptor):
# ignore deleted or errored courses
courses_list[course_key] = course
return courses_list.values()
......
"""
Unit tests for getting the list of courses for a user through iterating all courses and
by reversing group name formats.
"""
from mock import patch, Mock
from student.tests.factories import UserFactory
from student.roles import GlobalStaff
from xmodule.modulestore.tests.django_utils import ModuleStoreTestCase, studio_store_config
from xmodule.modulestore.tests.factories import CourseFactory
from opaque_keys.edx.locations import SlashSeparatedCourseKey
from xmodule.modulestore.django import modulestore
from xmodule.error_module import ErrorDescriptor
from django.test.client import Client
from student.models import CourseEnrollment
from student.views import get_course_enrollment_pairs
from django.conf import settings
from django.test.utils import override_settings
TEST_MODULESTORE = studio_store_config(settings.TEST_ROOT / "data")
@override_settings(MODULESTORE=TEST_MODULESTORE)
class TestCourseListing(ModuleStoreTestCase):
"""
Unit tests for getting the list of courses for a logged in user
"""
def setUp(self):
"""
Add a student & teacher
"""
super(TestCourseListing, self).setUp()
self.student = UserFactory()
self.teacher = UserFactory()
GlobalStaff().add_users(self.teacher)
self.client = Client()
self.client.login(username=self.teacher.username, password='test')
def _create_course_with_access_groups(self, course_location):
"""
Create dummy course with 'CourseFactory' and enroll the student
"""
course = CourseFactory.create(
org=course_location.org,
number=course_location.course,
run=course_location.run,
modulestore=modulestore('direct'),
)
CourseEnrollment.enroll(self.student, course.id)
return course
def tearDown(self):
"""
Reverse the setup
"""
self.client.logout()
super(TestCourseListing, self).tearDown()
def test_get_course_list(self):
"""
Test getting courses
"""
course_location = SlashSeparatedCourseKey('Org1', 'Course1', 'Run1')
self._create_course_with_access_groups(course_location)
# get dashboard
courses_list = list(get_course_enrollment_pairs(self.student, None, []))
self.assertEqual(len(courses_list), 1)
self.assertEqual(courses_list[0][0].id, course_location)
CourseEnrollment.unenroll(self.student, course_location)
# get dashboard
courses_list = list(get_course_enrollment_pairs(self.student, None, []))
self.assertEqual(len(courses_list), 0)
def test_errored_course_regular_access(self):
"""
Test the course list for regular staff when get_course returns an ErrorDescriptor
"""
course_key = SlashSeparatedCourseKey('Org1', 'Course1', 'Run1')
self._create_course_with_access_groups(course_key)
with patch('xmodule.modulestore.mongo.base.MongoKeyValueStore', Mock(side_effect=Exception)):
self.assertIsInstance(modulestore('direct').get_course(course_key), ErrorDescriptor)
# get courses through iterating all courses
courses_list = list(get_course_enrollment_pairs(self.student, None, []))
self.assertEqual(courses_list, [])
def test_course_listing_errored_deleted_courses(self):
"""
Create good courses, courses that won't load, and deleted courses which still have
roles. Test course listing.
"""
good_location = SlashSeparatedCourseKey('testOrg', 'testCourse', 'RunBabyRun')
self._create_course_with_access_groups(good_location)
course_location = SlashSeparatedCourseKey('testOrg', 'doomedCourse', 'RunBabyRun')
self._create_course_with_access_groups(course_location)
modulestore('direct').delete_course(course_location)
course_location = SlashSeparatedCourseKey('testOrg', 'erroredCourse', 'RunBabyRun')
course = self._create_course_with_access_groups(course_location)
course_db_record = modulestore('direct')._find_one(course.location)
course_db_record.setdefault('metadata', {}).get('tabs', []).append({"type": "wiko", "name": "Wiki" })
modulestore('direct').collection.update(
{'_id': course_db_record['_id']},
{'$set': {
'metadata.tabs': course_db_record['metadata']['tabs'],
}},
)
courses_list = list(get_course_enrollment_pairs(self.student, None, []))
self.assertEqual(len(courses_list), 1, courses_list)
self.assertEqual(courses_list[0][0].id, good_location)
......@@ -85,6 +85,7 @@ from util.password_policy_validators import (
)
from third_party_auth import pipeline, provider
from xmodule.error_module import ErrorDescriptor
log = logging.getLogger("edx.student")
AUDIT_LOG = logging.getLogger("audit")
......@@ -242,7 +243,7 @@ def get_course_enrollment_pairs(user, course_org_filter, org_filter_out_set):
"""
for enrollment in CourseEnrollment.enrollments_for_user(user):
course = course_from_id(enrollment.course_id)
if course:
if course and not isinstance(course, ErrorDescriptor):
# if we are in a Microsite, then filter out anything that is not
# attributed (by ORG) to that Microsite
......@@ -255,8 +256,9 @@ def get_course_enrollment_pairs(user, course_org_filter, org_filter_out_set):
yield (course, enrollment)
else:
log.error("User {0} enrolled in non-existent course {1}"
.format(user.username, enrollment.course_id))
log.error("User {0} enrolled in {2} course {1}".format(
user.username, enrollment.course_id, "broken" if course else "non-existent"
))
def _cert_info(user, course, cert_status):
......
......@@ -209,7 +209,7 @@ class CachingDescriptorSystem(MakoDescriptorSystem):
module.save()
return module
except:
log.warning("Failed to load descriptor", exc_info=True)
log.warning("Failed to load descriptor from %s", json_data, exc_info=True)
return ErrorDescriptor.from_json(
json_data,
self,
......@@ -558,7 +558,7 @@ class MongoModuleStore(ModuleStoreWriteBase):
'''
Returns a list of course descriptors.
'''
return sum(
base_list = sum(
[
self._load_items(
SlashSeparatedCourseKey(course['_id']['org'], course['_id']['course'], course['_id']['name']),
......@@ -575,6 +575,7 @@ class MongoModuleStore(ModuleStoreWriteBase):
],
[]
)
return [course for course in base_list if not isinstance(course, ErrorDescriptor)]
def _find_one(self, location):
'''Look for a given location in the collection. If revision is not
......
......@@ -70,6 +70,7 @@ from bson.objectid import ObjectId
from xmodule.modulestore.split_mongo.mongo_connection import MongoConnection
from xblock.core import XBlock
from xmodule.modulestore.loc_mapper_store import LocMapperStore
from xmodule.error_module import ErrorDescriptor
log = logging.getLogger(__name__)
#==============================================================================
......@@ -331,7 +332,9 @@ class SplitMongoModuleStore(ModuleStoreWriteBase):
'structure': entry,
}
root = entry['root']
result.extend(self._load_items(envelope, [root], 0, lazy=True))
course_list = self._load_items(envelope, [root], 0, lazy=True)
if not isinstance(course_list[0], ErrorDescriptor):
result.append(course_list[0])
return result
def get_course(self, course_id, depth=None):
......
......@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:32+0000\n"
"Last-Translator: sarina <sarina@edx.org>\n"
"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/edx-platform/language/az/)\n"
"MIME-Version: 1.0\n"
......@@ -31,12 +31,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -215,6 +214,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -270,45 +312,6 @@ msgid_plural "%(value)s seconds"
msgstr[0] ""
msgstr[1] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -540,6 +543,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1010,8 +1033,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1021,7 +1044,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1033,8 +1056,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1045,7 +1068,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1062,15 +1086,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1087,7 +1111,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1103,8 +1128,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1417,10 +1442,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1568,6 +1589,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1712,6 +1749,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:32+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"
"MIME-Version: 1.0\n"
......@@ -31,12 +31,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -215,6 +214,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -270,45 +312,6 @@ msgid_plural "%(value)s seconds"
msgstr[0] ""
msgstr[1] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -540,6 +543,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1010,8 +1033,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1021,7 +1044,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1033,8 +1056,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1045,7 +1068,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1062,15 +1086,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1087,7 +1111,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1103,8 +1128,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1417,10 +1442,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1568,6 +1589,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1712,6 +1749,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -15,8 +15,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:32+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"
"MIME-Version: 1.0\n"
......@@ -32,12 +32,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -216,6 +215,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -271,45 +313,6 @@ msgid_plural "%(value)s seconds"
msgstr[0] ""
msgstr[1] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -541,6 +544,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1011,8 +1034,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1022,7 +1045,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1034,8 +1057,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1046,7 +1069,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1063,15 +1087,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1088,7 +1112,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1104,8 +1129,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1418,10 +1443,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1569,6 +1590,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1713,6 +1750,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:32+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"
"MIME-Version: 1.0\n"
......@@ -31,12 +31,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -215,6 +214,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -270,45 +312,6 @@ msgid_plural "%(value)s seconds"
msgstr[0] ""
msgstr[1] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -540,6 +543,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1010,8 +1033,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1021,7 +1044,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1033,8 +1056,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1045,7 +1068,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1062,15 +1086,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1087,7 +1111,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1103,8 +1128,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1417,10 +1442,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1568,6 +1589,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1712,6 +1749,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -15,8 +15,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:32+0000\n"
"Last-Translator: sarina <sarina@edx.org>\n"
"Language-Team: Bosnian (http://www.transifex.com/projects/p/edx-platform/language/bs/)\n"
"MIME-Version: 1.0\n"
......@@ -32,12 +32,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -218,6 +217,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -276,45 +318,6 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -551,6 +554,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1027,8 +1050,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1038,7 +1061,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1050,8 +1073,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1062,7 +1085,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1079,15 +1103,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1104,7 +1128,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1120,8 +1145,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1434,10 +1459,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1585,6 +1606,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1729,6 +1766,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -15,8 +15,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:32+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"
"MIME-Version: 1.0\n"
......@@ -32,12 +32,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -216,6 +215,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -271,45 +313,6 @@ msgid_plural "%(value)s seconds"
msgstr[0] ""
msgstr[1] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -541,6 +544,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1011,8 +1034,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1022,7 +1045,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1034,8 +1057,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1046,7 +1069,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1063,15 +1087,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1088,7 +1112,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1104,8 +1129,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1418,10 +1443,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1569,6 +1590,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1713,6 +1750,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -30,6 +30,7 @@ locales:
- fi_FI # Finnish (Finland)
- fr # French
- gl # Galician
- gu # Gujarati
- he # Hebrew
- hi # Hindi
- hr # Croatian
......@@ -49,6 +50,7 @@ locales:
- nb # Norwegian Bokmål
- ne # Nepali
- nl_NL # Dutch (Netherlands)
- or # Oriya
- pl # Polish
- pt_BR # Portuguese (Brazil)
- pt_PT # Portuguese (Portugal)
......
......@@ -21,8 +21,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:51+0000\n"
"Last-Translator: sarina <sarina@edx.org>\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/edx-platform/language/cs/)\n"
"MIME-Version: 1.0\n"
......@@ -38,12 +38,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -224,6 +223,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -282,45 +324,6 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -557,6 +560,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1033,8 +1056,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1044,7 +1067,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1056,8 +1079,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1068,7 +1091,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1085,15 +1109,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1110,7 +1134,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1126,8 +1151,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1440,10 +1465,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1591,6 +1612,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1735,6 +1772,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:32+0000\n"
"Last-Translator: sarina <sarina@edx.org>\n"
"Language-Team: Welsh (http://www.transifex.com/projects/p/edx-platform/language/cy/)\n"
"MIME-Version: 1.0\n"
......@@ -31,12 +31,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -219,6 +218,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -280,45 +322,6 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -560,6 +563,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1042,8 +1065,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1053,7 +1076,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1065,8 +1088,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1077,7 +1100,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1094,15 +1118,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1119,7 +1143,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1135,8 +1160,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1449,10 +1474,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1600,6 +1621,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1744,6 +1781,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:32+0000\n"
"Last-Translator: sarina <sarina@edx.org>\n"
"Language-Team: Danish (http://www.transifex.com/projects/p/edx-platform/language/da/)\n"
"MIME-Version: 1.0\n"
......@@ -31,12 +31,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -215,6 +214,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -270,45 +312,6 @@ msgid_plural "%(value)s seconds"
msgstr[0] ""
msgstr[1] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -540,6 +543,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1010,8 +1033,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1021,7 +1044,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1033,8 +1056,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1045,7 +1068,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1062,15 +1086,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1087,7 +1111,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1103,8 +1128,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1417,10 +1442,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1568,6 +1589,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1712,6 +1749,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -17,8 +17,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:51+0000\n"
"Last-Translator: sarina <sarina@edx.org>\n"
"Language-Team: Greek (http://www.transifex.com/projects/p/edx-platform/language/el/)\n"
"MIME-Version: 1.0\n"
......@@ -34,12 +34,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -218,6 +217,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -273,45 +315,6 @@ msgid_plural "%(value)s seconds"
msgstr[0] ""
msgstr[1] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -543,6 +546,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1013,8 +1036,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1024,7 +1047,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1036,8 +1059,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1048,7 +1071,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1065,15 +1089,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1090,7 +1114,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1106,8 +1131,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1420,10 +1445,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1571,6 +1592,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1715,6 +1752,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:51+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"
"MIME-Version: 1.0\n"
......@@ -33,12 +33,11 @@ msgstr ""
msgid "OK"
msgstr "K"
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -219,6 +218,49 @@ msgstr ""
"SEQUENCE ERROR! WEZ CANT NAVIGATE 2 TAB %(tab_name)s IN TEH CURENT "
"SEQUENCEMODULE. PLZ CONTACT TEH COURSE STAFF."
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr "VOLUM"
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr "MUTED"
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr "BERY LOW"
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr "LOW"
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr "AVERAGE"
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr "LOWD"
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr "BERY LOWD"
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr "MAXYMUM"
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr "VIDEO SLIDR"
......@@ -274,45 +316,6 @@ msgid_plural "%(value)s seconds"
msgstr[0] "%(value)s SECUND"
msgstr[1] "%(value)s SECUNDZ"
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr "VOLUM"
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr "MUTED"
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr "BERY LOW"
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr "LOW"
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr "AVERAGE"
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr "LOWD"
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr "BERY LOWD"
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr "MAXYMUM"
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr "CAPSHUN WILL BE DISPULAYD WHEN"
......@@ -560,6 +563,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr "O HAI. R U SHUR U WANT 2 DELET DIS RESPONSE??"
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr "%s AGO"
......@@ -1050,11 +1073,9 @@ msgstr "PLZ ENTER A STUDENT EMAIL ADDRESS OR USRNAYM"
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
"O NOES!!1! THAR WUZ ERROR GETTIN TEH STUDENT PROGRESS URL 4 '<%= student_id "
"%>' D: PLZ 2 CHEK DAT TEH STUDENT IDENTYFIR IZ SPELLD CORRECT."
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1063,8 +1084,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgstr "PLZ 2 ENTER A PROBLEM URLNAYM."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
......@@ -1077,12 +1098,9 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
"O NOES!!1! THAR WUZ ERROR RESETTIN TEH PROBLM ATTMPTS 4 PROBLM '<%= "
"problem_id %>' AN STUDYNT '<%= student_id %>' D: PLZ 2 CHEK DAT TEH PROBLM "
"AN STUDENT IDENTYFIR IZ SPELLD CORRECT."
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
......@@ -1092,7 +1110,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1109,15 +1128,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1134,7 +1153,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1150,8 +1170,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1464,10 +1484,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1615,6 +1631,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1759,6 +1791,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:32+0000\n"
"Last-Translator: sarina <sarina@edx.org>\n"
"Language-Team: Pirate English (http://www.transifex.com/projects/p/edx-platform/language/en@pirate/)\n"
"MIME-Version: 1.0\n"
......@@ -33,12 +33,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -217,6 +216,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -272,45 +314,6 @@ msgid_plural "%(value)s seconds"
msgstr[0] ""
msgstr[1] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -542,6 +545,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1015,8 +1038,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1026,7 +1049,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1038,8 +1061,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1050,7 +1073,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1067,15 +1091,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1092,7 +1116,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1108,8 +1133,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1422,10 +1447,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1573,6 +1594,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1717,6 +1754,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -17,8 +17,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:51+0000\n"
"Last-Translator: sarina <sarina@edx.org>\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/edx-platform/language/es_AR/)\n"
"MIME-Version: 1.0\n"
......@@ -34,12 +34,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -218,6 +217,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -273,45 +315,6 @@ msgid_plural "%(value)s seconds"
msgstr[0] ""
msgstr[1] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -543,6 +546,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1013,8 +1036,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1024,7 +1047,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1036,8 +1059,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1048,7 +1071,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1065,15 +1089,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1090,7 +1114,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1106,8 +1131,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1420,10 +1445,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1571,6 +1592,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1715,6 +1752,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
......@@ -15,8 +15,8 @@ msgid ""
msgstr ""
"Project-Id-Version: edx-platform\n"
"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n"
"POT-Creation-Date: 2014-05-19 08:16-0400\n"
"PO-Revision-Date: 2014-05-11 14:42+0000\n"
"POT-Creation-Date: 2014-05-26 20:45-0400\n"
"PO-Revision-Date: 2014-05-25 02:32+0000\n"
"Last-Translator: sarina <sarina@edx.org>\n"
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/projects/p/edx-platform/language/es_EC/)\n"
"MIME-Version: 1.0\n"
......@@ -32,12 +32,11 @@ msgstr ""
msgid "OK"
msgstr ""
#: cms/static/coffee/src/views/tabs.js cms/static/coffee/src/views/unit.js
#: cms/static/js/base.js cms/static/js/views/asset.js
#: cms/static/coffee/src/views/tabs.js cms/static/js/base.js
#: cms/static/js/views/asset.js cms/static/js/views/baseview.js
#: cms/static/js/views/course_info_update.js
#: cms/static/js/views/show_textbook.js cms/static/js/views/validation.js
#: cms/static/js/views/modals/base_modal.js
#: cms/static/js/views/pages/container.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
#: lms/static/admin/js/admin/DateTimeShortcuts.js
msgid "Cancel"
......@@ -216,6 +215,49 @@ msgid ""
"SequenceModule. Please contact the course staff."
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range ]0,20]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range ]20,40]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range ]40,60]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range ]60,80]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range ]80,99]%
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js
msgid "This browser cannot play .mp4, .ogg, or "
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/04_video_control.js
msgid "Video slider"
msgstr ""
......@@ -271,45 +313,6 @@ msgid_plural "%(value)s seconds"
msgstr[0] ""
msgstr[1] ""
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Volume"
msgstr ""
#. Translators: Volume level equals 0%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Muted"
msgstr ""
#. Translators: Volume level in range (0,20]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very low"
msgstr ""
#. Translators: Volume level in range (20,40]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Low"
msgstr ""
#. Translators: Volume level in range (40,60]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Average"
msgstr ""
#. Translators: Volume level in range (60,80]%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Loud"
msgstr ""
#. Translators: Volume level in range (80,100)%
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Very loud"
msgstr ""
#. Translators: Volume level equals 100%.
#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js
msgid "Maximum"
msgstr ""
#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js
msgid "Caption will be displayed when "
msgstr ""
......@@ -541,6 +544,26 @@ msgstr ""
msgid "Are you sure you want to delete this response?"
msgstr ""
#: common/static/js/capa/drag_and_drop/base_image.js
msgid "Drop target image"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging out of slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dragging"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped in slider"
msgstr ""
#: common/static/js/capa/drag_and_drop/draggable_events.js
msgid "dropped on target"
msgstr ""
#: common/static/js/src/jquery.timeago.locale.js
msgid "%s ago"
msgstr ""
......@@ -1011,8 +1034,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting student progress url for '<%= student_id %>'. Check that the "
"student identifier is spelled correctly."
"Error getting student progress url for '<%= student_id %>'. Make sure that "
"the student identifier is spelled correctly."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1022,7 +1045,7 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid "Please enter a problem urlname."
msgid "Please enter a problem location."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1034,8 +1057,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error resetting problem attempts for problem '<%= problem_id %>' and student"
" '<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
" '<%= student_id %>'. Make sure that the problem and student identifiers are"
" complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1046,7 +1069,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error deleting student '<%= student_id %>'s state on problem '<%= problem_id"
" %>'. Check that the problem and student identifiers are spelled correctly."
" %>'. Make sure that the problem and student identifiers are complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1063,15 +1087,15 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>' for student "
"'<%= student_id %>'. Check that the problem and student identifiers are "
"spelled correctly."
"'<%= student_id %>'. Make sure that the the problem and student identifiers "
"are complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error getting task history for problem '<%= problem_id %>' and student '<%= "
"student_id %>'. Check that the problem and student identifiers are spelled "
"correctly."
"student_id %>'. Make sure that the problem and student identifiers are "
"complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1088,7 +1112,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to reset attempts for all students on problem '<%= "
"problem_id %>'. Check that the problem identifier is spelled correctly."
"problem_id %>'. Make sure that the problem identifier is complete and "
"correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1104,8 +1129,8 @@ msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
msgid ""
"Error starting a task to rescore problem '<%= problem_id %>'. Check that the"
" problem identifier is spelled correctly."
"Error starting a task to rescore problem '<%= problem_id %>'. Make sure that"
" the problem identifier is complete and correct."
msgstr ""
#: lms/static/coffee/src/instructor_dashboard/student_admin.js
......@@ -1418,10 +1443,6 @@ msgstr ""
msgid "Deleting&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/coffee/src/views/unit.js cms/static/js/views/pages/container.js
msgid "Duplicating&hellip;"
msgstr ""
......@@ -1569,6 +1590,22 @@ msgstr ""
msgid "Date Added"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Uploading…"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Choose File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Upload New File"
msgstr ""
#: cms/static/js/views/assets.js
msgid "Load Another File"
msgstr ""
#: cms/static/js/views/course_info_update.js
msgid "Are you sure you want to delete this update?"
msgstr ""
......@@ -1713,6 +1750,10 @@ msgstr ""
msgid "Settings"
msgstr ""
#: cms/static/js/views/components/add_xblock.js
msgid "Adding&hellip;"
msgstr ""
#: cms/static/js/views/modals/base_modal.js
msgid "Save"
msgstr ""
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment