From 517f32363778b54c3f4260ea4b14847d0f0dd7f2 Mon Sep 17 00:00:00 2001 From: moodler Date: Sun, 8 Dec 2002 16:49:49 +0000 Subject: [PATCH] US flavor of English to keep the yanks happy. ;-) --- lang/en_us/README | 23 + lang/en_us/assignment.php | 40 ++ lang/en_us/auth.php | 57 ++ lang/en_us/choice.php | 17 + lang/en_us/docs/module_files.txt | 18 + lang/en_us/forum.php | 119 ++++ .../en_us/help/assignment/assignmenttype.html | 13 + lang/en_us/help/assignment/resubmit.html | 9 + lang/en_us/help/choice/options.html | 7 + lang/en_us/help/coursecategory.html | 11 + lang/en_us/help/courseformats.html | 24 + lang/en_us/help/coursefullname.html | 4 + lang/en_us/help/coursenewsitems.html | 15 + lang/en_us/help/coursenumsections.html | 14 + lang/en_us/help/courserecent.html | 16 + lang/en_us/help/courseshortname.html | 7 + lang/en_us/help/coursestartdate.html | 19 + lang/en_us/help/enrolmentkey.html | 23 + lang/en_us/help/forum/allowdiscussions.html | 20 + lang/en_us/help/forum/attachment.html | 21 + lang/en_us/help/forum/forumtype.html | 16 + lang/en_us/help/forum/ratings.html | 70 +++ lang/en_us/help/forum/subscription.html | 18 + lang/en_us/help/guestaccess.html | 21 + lang/en_us/help/html.html | 13 + lang/en_us/help/langedit.html | 12 + lang/en_us/help/mods.html | 69 +++ lang/en_us/help/picture.html | 18 + lang/en_us/help/questions.html | 94 ++++ lang/en_us/help/quiz/attempts.html | 6 + lang/en_us/help/quiz/categories.html | 17 + lang/en_us/help/quiz/correctanswers.html | 6 + lang/en_us/help/quiz/feedback.html | 5 + lang/en_us/help/quiz/grademethod.html | 25 + lang/en_us/help/quiz/maxgrade.html | 11 + lang/en_us/help/quiz/multichoice.html | 19 + lang/en_us/help/quiz/questiontypes.html | 37 ++ lang/en_us/help/quiz/random.html | 3 + lang/en_us/help/quiz/shortanswer.html | 10 + lang/en_us/help/quiz/timeopen.html | 5 + lang/en_us/help/quiz/truefalse.html | 11 + lang/en_us/help/resource/resourcetype.html | 23 + lang/en_us/help/resource/summary.html | 8 + lang/en_us/help/richtext.html | 160 ++++++ lang/en_us/help/surveys.html | 99 ++++ lang/en_us/help/teachers.html | 22 + lang/en_us/help/text.html | 144 +++++ lang/en_us/help/textformat.html | 41 ++ lang/en_us/journal.php | 29 + lang/en_us/moodle.php | 518 ++++++++++++++++++ lang/en_us/quiz.php | 103 ++++ lang/en_us/resource.php | 29 + lang/en_us/survey.php | 208 +++++++ 53 files changed, 2347 insertions(+) create mode 100644 lang/en_us/README create mode 100644 lang/en_us/assignment.php create mode 100644 lang/en_us/auth.php create mode 100644 lang/en_us/choice.php create mode 100644 lang/en_us/docs/module_files.txt create mode 100644 lang/en_us/forum.php create mode 100644 lang/en_us/help/assignment/assignmenttype.html create mode 100644 lang/en_us/help/assignment/resubmit.html create mode 100644 lang/en_us/help/choice/options.html create mode 100644 lang/en_us/help/coursecategory.html create mode 100644 lang/en_us/help/courseformats.html create mode 100644 lang/en_us/help/coursefullname.html create mode 100644 lang/en_us/help/coursenewsitems.html create mode 100644 lang/en_us/help/coursenumsections.html create mode 100644 lang/en_us/help/courserecent.html create mode 100644 lang/en_us/help/courseshortname.html create mode 100644 lang/en_us/help/coursestartdate.html create mode 100644 lang/en_us/help/enrolmentkey.html create mode 100644 lang/en_us/help/forum/allowdiscussions.html create mode 100644 lang/en_us/help/forum/attachment.html create mode 100644 lang/en_us/help/forum/forumtype.html create mode 100644 lang/en_us/help/forum/ratings.html create mode 100644 lang/en_us/help/forum/subscription.html create mode 100644 lang/en_us/help/guestaccess.html create mode 100644 lang/en_us/help/html.html create mode 100644 lang/en_us/help/langedit.html create mode 100644 lang/en_us/help/mods.html create mode 100644 lang/en_us/help/picture.html create mode 100644 lang/en_us/help/questions.html create mode 100644 lang/en_us/help/quiz/attempts.html create mode 100644 lang/en_us/help/quiz/categories.html create mode 100644 lang/en_us/help/quiz/correctanswers.html create mode 100644 lang/en_us/help/quiz/feedback.html create mode 100644 lang/en_us/help/quiz/grademethod.html create mode 100644 lang/en_us/help/quiz/maxgrade.html create mode 100644 lang/en_us/help/quiz/multichoice.html create mode 100644 lang/en_us/help/quiz/questiontypes.html create mode 100644 lang/en_us/help/quiz/random.html create mode 100644 lang/en_us/help/quiz/shortanswer.html create mode 100644 lang/en_us/help/quiz/timeopen.html create mode 100644 lang/en_us/help/quiz/truefalse.html create mode 100644 lang/en_us/help/resource/resourcetype.html create mode 100644 lang/en_us/help/resource/summary.html create mode 100644 lang/en_us/help/richtext.html create mode 100644 lang/en_us/help/surveys.html create mode 100644 lang/en_us/help/teachers.html create mode 100644 lang/en_us/help/text.html create mode 100644 lang/en_us/help/textformat.html create mode 100644 lang/en_us/journal.php create mode 100644 lang/en_us/moodle.php create mode 100644 lang/en_us/quiz.php create mode 100644 lang/en_us/resource.php create mode 100644 lang/en_us/survey.php diff --git a/lang/en_us/README b/lang/en_us/README new file mode 100644 index 0000000000..2f84dbc7e8 --- /dev/null +++ b/lang/en_us/README @@ -0,0 +1,23 @@ +README FOR LANGUAGE PLUGIN +-------------------------- + +This directory contains all the strings and texts needed +to render a Moodle site in a particular language. + +The default language is English. If a string is missing +for any reason from another language, then the English +version will be used. + +Note that each installed module should have a file here, +as well as the main file which is called "moodle.php". + +The "help" directory contains whole pages written in HTML, +and the "docs" directory contains other miscellaneous +documents. + +If you are thinking of translating Moodle to another language, +please contact me so I can help you! + +Cheers, +Martin martin@dougiamas.com + diff --git a/lang/en_us/assignment.php b/lang/en_us/assignment.php new file mode 100644 index 0000000000..00e5f63bcf --- /dev/null +++ b/lang/en_us/assignment.php @@ -0,0 +1,40 @@ + diff --git a/lang/en_us/auth.php b/lang/en_us/auth.php new file mode 100644 index 0000000000..07f1718d1d --- /dev/null +++ b/lang/en_us/auth.php @@ -0,0 +1,57 @@ +external database fields that you specify here.

If you leave these blank, then defaults will be used.

In either case, the user will be able to edit all of these fields after they log in."; +$string['auth_dbfieldpass'] = "Name of the field containing passwords"; +$string['auth_dbfielduser'] = "Name of the field containing usernames"; +$string['auth_dbhost'] = "The computer hosting the database server."; +$string['auth_dbname'] = "Name of the database itself"; +$string['auth_dbpass'] = "Password matching the above username"; +$string['auth_dbtable'] = "Name of the table in the database"; +$string['auth_dbtitle'] = "Use an external database"; +$string['auth_dbtype'] = "The database type (See the ADOdb documentation for details)"; +$string['auth_dbuser'] = "Username with read access to the database"; +$string['auth_emaildescription'] = "Email confirmation is the default authentication method. When the user signs up, choosing their own new username and password, a confirmation email is sent to the user's email address. This email contains a secure link to a page where the user can confirm their account. Future logins just check the username and password against the stored values in the Moodle database."; +$string['auth_emailtitle'] = "Email-based authentication"; +$string['auth_imapdescription'] = "This method uses an IMAP server to check whether a given username and password is valid."; +$string['auth_imaphost'] = "The IMAP server address. Use the IP number, not DNS name."; +$string['auth_imapport'] = "IMAP server port number. Usually this is 143 or 993."; +$string['auth_imaptitle'] = "Use an IMAP server"; +$string['auth_imaptype'] = "The IMAP server type. IMAP servers can have different types of authentication and negotiation."; +$string['instructions'] = "Instructions"; +$string['auth_ldap_bind_dn'] = "If you want to use bind-user to search users, specify it here. Someting like 'cn=ldapuser,ou=public,o=org'"; +$string['auth_ldap_bind_pw'] = "Password for bind-user."; +$string['auth_ldap_contexts'] = "List of contexts where users are located. Separate different contexts with ';'. For example: 'ou=users,o=org; ou=others,o=org'"; +$string['auth_ldap_host_url'] = "Specify LDAP host in URL-form like 'ldap://ldap.myorg.com/' or 'ldaps://ldap.myorg.com/' "; +$string['auth_ldap_search_sub'] = "Put value <> 0 if you like to search users from subcontexts."; +$string['auth_ldap_update_userinfo'] = "Update user information (firstname, lastname, address..) from LDAP to Moodle. Look at /auth/ldap/attr_mappings.php for mapping information"; +$string['auth_ldap_user_attribute'] = "The attribute used to name/search users. Usually 'cn'."; +$string['auth_ldapdescription'] = "This method provides authentication against an external LDAP server. + If the given username and password are valid, Moodle creates a new user + entry in its database. This module can read user attributes from LDAP and prefill + wanted fields in Moodle. For following logins only the username and + password are checked."; +$string['auth_ldapextrafields'] = "These fields are optional. You can choose to pre-fill some Moodle user fields with information from the LDAP fields that you specify here.

If you leave these fields blank, then nothing will be transferred from LDAP and Moodle defaults will be used instead.

In either case, the user will be able to edit all of these fields after they log in."; +$string['auth_ldaptitle'] = "Use an LDAP server"; +$string['auth_nntpdescription'] = "This method uses an NNTP server to check whether a given username and password is valid."; +$string['auth_nntphost'] = "The NNTP server address. Use the IP number, not DNS name."; +$string['auth_nntpport'] = "Server port (119 is the most common)"; +$string['auth_nntptitle'] = "Use an NNTP server"; +$string['auth_nonedescription'] = "Users can sign in and create valid accounts immediately, with no authentication against an external server and no confirmation via email. Be careful using this option - think of the security and administration problems this could cause."; +$string['auth_nonetitle'] = "No authentication"; +$string['auth_pop3description'] = "This method uses a POP3 server to check whether a given username and password is valid."; +$string['auth_pop3host'] = "The POP3 server address. Use the IP number, not DNS name."; +$string['auth_pop3port'] = "Server port (110 is the most common)"; +$string['auth_pop3title'] = "Use a POP3 server"; +$string['auth_pop3type'] = "Server type. If your server uses certificate security, choose pop3cert."; +$string['authenticationoptions'] = "Authentication options"; +$string['authinstructions'] = "Here you can provide instructions for your users, so they know which username and password they should be using. The text you enter here will appear on the login page. If you leave this blank then no instructions will be printed."; +$string['changepassword'] = "Change password URL"; +$string['changepasswordhelp'] = "Here you can specify a location at which your users can recover or change their username/password if they've forgotten it. This will be provided to users as a button on the login page and their user page. if you leave this blank the button will not be printed."; +$string['chooseauthmethod'] = "Choose an authentication method: "; +$string['guestloginbutton'] = "Guest login button"; +$string['showguestlogin'] = "You can hide or show the guest login button on the login page."; + +?> diff --git a/lang/en_us/choice.php b/lang/en_us/choice.php new file mode 100644 index 0000000000..2e16364dff --- /dev/null +++ b/lang/en_us/choice.php @@ -0,0 +1,17 @@ + diff --git a/lang/en_us/docs/module_files.txt b/lang/en_us/docs/module_files.txt new file mode 100644 index 0000000000..cd1cc03f14 --- /dev/null +++ b/lang/en_us/docs/module_files.txt @@ -0,0 +1,18 @@ +ABOUT THIS DIRECTORY +-------------------- + +DO NOT CHANGE, RENAME OR MOVE ANY OF THE FILES +IN THIS DIRECTORY unless you REALLY know what +you are doing. + +Changing these files could mess up your course. + +This directory contains files uploaded to your +course within particular modules (mostly by +students), such as assignment submissions and +forum attachments. + +The names of the directories and files within +this directory are very specific and are +automatically maintained by Moodle. + diff --git a/lang/en_us/forum.php b/lang/en_us/forum.php new file mode 100644 index 0000000000..fedd7cc378 --- /dev/null +++ b/lang/en_us/forum.php @@ -0,0 +1,119 @@ +name - \$a->date"; +$string['couldnotadd'] = "Could not add your post due to an unknown error"; +$string['couldnotdeleteratings'] = "Sorry, that cannot be deleted as people have already rated it"; +$string['couldnotdeletereplies'] = "Sorry, that cannot be deleted as people have already responded to it"; +$string['couldnotupdate'] = "Could not update your post due to an unknown error"; +$string['delete'] = "Delete"; +$string['deleteddiscussion'] = "The discussion topic has been deleted"; +$string['deletedpost'] = "The post has been deleted"; +$string['deletesure'] = "Are you sure you want to delete this post?"; +$string['discussion'] = "Discussion"; +$string['discussions'] = "Discussions"; +$string['discussionsstartedby'] = "Discussions started by \$a"; +$string['discussthistopic'] = "Discuss this topic"; +$string['eachuserforum'] = "Each person posts one discussion"; +$string['edit'] = "Edit"; +$string['editing'] = "Editing"; +$string['emptymessage'] = "Something was wrong with your post. Perhaps you left it blank, or the attachment was too big. Your changes have NOT been saved."; +$string['everyonecanchoose'] = "Everyone can choose to be subscribed"; +$string['everyoneissubscribed'] = "Everyone is subscribed to this forum"; +$string['forcesubscribe'] = "Force everyone to be subscribed"; +$string['forcesubscribeq'] = "Force everyone to be subscribed?"; +$string['forum'] = "Forum"; +$string['forumintro'] = "Forum introduction"; +$string['forumname'] = "Forum name"; +$string['forums'] = "Forums"; +$string['forumtype'] = "Forum type"; +$string['generalforum'] = "Standard forum for general use"; +$string['generalforums'] = "General forums"; +$string['inforum'] = "in \$a"; +$string['intronews'] = "General news and announcements"; +$string['introsocial'] = "An open forum for chatting about anything you want to"; +$string['introteacher'] = "A forum for teacher-only notes and discussion"; +$string['learningforums'] = "Learning forums"; +$string['maxtimehaspassed'] = "Sorry, but the maximum time for editing this post (\$a) has passed!"; +$string['message'] = "Message"; +$string['modeflatoldestfirst'] = "Display replies flat, with oldest first"; +$string['modeflatnewestfirst'] = "Display replies flat, with newest first"; +$string['modenested'] = "Display replies in nested form"; +$string['modethreaded'] = "Display replies in threaded form"; +$string['more'] = "more"; +$string['namenews'] = "News forum"; +$string['namesocial'] = "Social forum"; +$string['nameteacher'] = "Teacher forum"; +$string['newforumposts'] = "New forum posts"; +$string['nodiscussions'] = "There are no discussion topics yet in this forum"; +$string['noguestpost'] = "Sorry, guests are not allowed to post"; +$string['noposts'] = "No posts"; +$string['nopostscontaining'] = "No posts containing '\$a' were found"; +$string['nosubscribers'] = "There are no subscribers yet for this forum"; +$string['nownotsubscribed'] = "\$a->name will NOT receive copies of '\$a->forum' by email."; +$string['nowsubscribed'] = "\$a->name will receive copies of '\$a->forum' by email."; +$string['numposts'] = "\$a posts"; +$string['olderdiscussions'] = "Older discussions"; +$string['openmode0'] = "No discussions, no replies"; +$string['openmode1'] = "No discussions, but replies are allowed"; +$string['openmode2'] = "Discussions and replies are allowed"; +$string['parentofthispost'] = "Parent of this post"; +$string['postadded'] = "Your post was successfully added.

You have \$a to edit it if you want to make any changes."; +$string['postincontext'] = "See this post in context"; +$string['postmailinfo'] = "This is a copy of a message posted on the \$a website. +To add your reply via the website, click on this link:"; + +$string['postingtip'] = "Posting tips: +When replying: +

+ +While writing: +"; + +$string['postrating1'] = "Shows mostly SEPARATE knowing"; +$string['postrating2'] = "Equally separate and connected"; +$string['postrating3'] = "Shows mostly CONNECTED knowing"; +$string['postupdated'] = "Your post was updated"; +$string['processingpost'] = "Processing post \$a"; +$string['rate'] = "Rate"; +$string['ratings'] = "Ratings"; +$string['readtherest'] = "Read the rest of this topic"; +$string['re'] = "Re:"; // Put in front of subjects that are replies to another post +$string['repliesmany'] = "\$a replies so far"; +$string['repliesone'] = "\$a reply so far"; +$string['reply'] = "Reply"; +$string['search'] = "Search"; +$string['searchresults'] = "Search results"; +$string['searchforums'] = "Search forums"; +$string['sendinratings'] = "Send in my latest ratings"; +$string['showsubscribers'] = "Show subscribers"; +$string['singleforum'] = "A single simple discussion"; +$string['subject'] = "Subject"; +$string['subscribe'] = "Subscribe to this forum"; +$string['subscribed'] = "Subscribed"; +$string['subscribers'] = "Subscribers"; +$string['subscribersto'] = "Subscribers to '\$a'"; +$string['unsubscribe'] = "Unsubscribe from this forum"; +$string['youratedthis'] = "You rated this"; +$string['yournewtopic'] = "Your new discussion topic"; +$string['yourreply'] = "Your reply"; + +?> diff --git a/lang/en_us/help/assignment/assignmenttype.html b/lang/en_us/help/assignment/assignmenttype.html new file mode 100644 index 0000000000..6b3689764f --- /dev/null +++ b/lang/en_us/help/assignment/assignmenttype.html @@ -0,0 +1,13 @@ +

Assignment Type

+ +

There are different types of assignments

+ +

Offline activity - this is useful when the assignment is performed outside +of Moodle. Students can see a description of the assignment, but can't upload files or anything. +Teachers can grade all students though, and students will see notifications of their grades. + +

Upload a single file - this type of assignment allows all students to upload a +single file, of any type. This might be a Word processor document, or an image, a +zipped web site, or anything you ask them to submit. Teachers can grade submitted +assignments online. + diff --git a/lang/en_us/help/assignment/resubmit.html b/lang/en_us/help/assignment/resubmit.html new file mode 100644 index 0000000000..1d4d3b178e --- /dev/null +++ b/lang/en_us/help/assignment/resubmit.html @@ -0,0 +1,9 @@ +

Resubmitting assignments

+ +

By default, students cannot resubmit assignments once the teacher has graded them

+ +

If you turn this option on, then students will be allowed to resubmit assignments + after they have been graded (for you to re-grade). This may be useful if the + teacher wants to encourage students to do better work in an iterative process.

+ +

Obviously, this option is not relevant for offline assignments.

diff --git a/lang/en_us/help/choice/options.html b/lang/en_us/help/choice/options.html new file mode 100644 index 0000000000..adf2e81fed --- /dev/null +++ b/lang/en_us/help/choice/options.html @@ -0,0 +1,7 @@ +

Choice options

+ +

Here is where you specify the options that participants + have to choose from. + +

You can fill in any number of these: it's OK to leave some blank + if you don't need the full 6 options. diff --git a/lang/en_us/help/coursecategory.html b/lang/en_us/help/coursecategory.html new file mode 100644 index 0000000000..4c776f230e --- /dev/null +++ b/lang/en_us/help/coursecategory.html @@ -0,0 +1,11 @@ +

Course Categories

+ +

Your Moodle administrator may have set up several + course categories. + +

For example, "Science", "Humanities", "Public Health" etc + +

Choose the one most applicable for your course. This + choice will affect where your course is displayed on the + course listing and may make it easier for students to + find your course. diff --git a/lang/en_us/help/courseformats.html b/lang/en_us/help/courseformats.html new file mode 100644 index 0000000000..2cc26c4ac0 --- /dev/null +++ b/lang/en_us/help/courseformats.html @@ -0,0 +1,24 @@ +

Moodle course formats

+ +

Weekly format

+ + +

Topics format

+ + +

Social format

+ + diff --git a/lang/en_us/help/coursefullname.html b/lang/en_us/help/coursefullname.html new file mode 100644 index 0000000000..171de93fac --- /dev/null +++ b/lang/en_us/help/coursefullname.html @@ -0,0 +1,4 @@ +

Course Full name

+ +

The full name of the course is displayed at the top of the screen and in the course listings.

+ diff --git a/lang/en_us/help/coursenewsitems.html b/lang/en_us/help/coursenewsitems.html new file mode 100644 index 0000000000..a9c18ea8e1 --- /dev/null +++ b/lang/en_us/help/coursenewsitems.html @@ -0,0 +1,15 @@ +

Course News Items

+ +

A special forum called "News" appears in the + "weekly" and "topics" course formats. It's + a good place to post notices for all students + to see. (By default, all students are subscribed + to this forum, and will receive your notices by + email.) + +

This setting determines how many recent items + appear on your course home page, in a news box + down the right-hand side. + +

If you set it to "0 news items" then the news + box won't even appear. diff --git a/lang/en_us/help/coursenumsections.html b/lang/en_us/help/coursenumsections.html new file mode 100644 index 0000000000..c117bb77e3 --- /dev/null +++ b/lang/en_us/help/coursenumsections.html @@ -0,0 +1,14 @@ +

Course Number of Weeks/Topics

+ +

This setting is only used by the 'weekly' and 'topics' + course formats. + +

In the 'weekly' format, it specifies the number of weeks + that the course will run for, starting from the + course starting date. + +

In the 'topics' format, it specifies the number of topics + in the course. + +

Both of these translate to the number of "boxes" down the + middle of the course page. diff --git a/lang/en_us/help/courserecent.html b/lang/en_us/help/courserecent.html new file mode 100644 index 0000000000..19add5ac72 --- /dev/null +++ b/lang/en_us/help/courserecent.html @@ -0,0 +1,16 @@ +

Recent Activity

+ +

Moodle can display "recent activity" on the course home page. + +

This shows the everything that has happened in the course since +the last time the viewer logged in to the course, including +new posts, new users, submitted journals etc. + +

It is highly recommended you leave this feature enabled in +your courses, as it helps give a sense of activity in the course. +Knowing what everyone else is doing also helps to promote a +collaborative atmosphere in the class. + +

You might want to disable this feature for extremely large or +heavily used courses, as it may slow down the display of +the course page. diff --git a/lang/en_us/help/courseshortname.html b/lang/en_us/help/courseshortname.html new file mode 100644 index 0000000000..8c3bda062d --- /dev/null +++ b/lang/en_us/help/courseshortname.html @@ -0,0 +1,7 @@ +

Course short name

+ +

Many institutions have a shorthand way of referring to a course, such as + BP102 or COMMS. Even you don't already have such a name for your course, + make one up here. It will be used in several places where the long name + isn't appropriate (such us in the subject line of email).

+ diff --git a/lang/en_us/help/coursestartdate.html b/lang/en_us/help/coursestartdate.html new file mode 100644 index 0000000000..b843fdb383 --- /dev/null +++ b/lang/en_us/help/coursestartdate.html @@ -0,0 +1,19 @@ +

Course Start Date

+ +

This is where you specify the starting time of the + course (in your own timezone). + +

If you are using a 'weekly' course format, this will + affect the display of the weeks. The first week will + start on the date you set here. + +

This setting will not affect courses using the + 'social' or 'topics' formats. + +

However, one place this setting will be affect is + the display of logs, which use this date as the earliest + possible date you can display. + +

In general, if your course does have a real starting date + then it makes sense to set this date to that, no matter + what course formats you are using. diff --git a/lang/en_us/help/enrolmentkey.html b/lang/en_us/help/enrolmentkey.html new file mode 100644 index 0000000000..609bcaaf76 --- /dev/null +++ b/lang/en_us/help/enrolmentkey.html @@ -0,0 +1,23 @@ +

Course Enrolment Key

+ +

A course enrolment key is what keeps unwanted people + out of your course. + +

If you leave this blank, then anyone who has created + a Moodle username on this site will be able to enrol + in your course simply by going in to it. + +

If you put something here, then students who are trying + to get in for the FIRST TIME ONLY will be asked to supply + this word or phrase. + +

The idea is that you will supply the key to authorised + people using another means like private email, snail mail, + on the phone or even verbally in a face to face class. + +

If this password "gets out" and you have unwanted people + enrolling, you can unenrol them (see their user profile page) + and change this key. Any legitimate students who have already + enrolled will not be affected, but the unwanted people won't be + able to get back in. + diff --git a/lang/en_us/help/forum/allowdiscussions.html b/lang/en_us/help/forum/allowdiscussions.html new file mode 100644 index 0000000000..fac7554c56 --- /dev/null +++ b/lang/en_us/help/forum/allowdiscussions.html @@ -0,0 +1,20 @@ +

Allowing new posts

+ +

This option allows you to restrict students from posting + new content in this forum. + +

For most forums you will want to leave students unrestricted + and choose the first option to allow them to start new discussion + topics (threads), and also to post replies within those threads. + +

Sometimes, however, you will want to disable this ability. For + example, this is useful for the News forum when you only want + teachers to post new items that appear on the course main page. + In this case you might choose the third option "No discussions, no replies". + +

Sometimes you might want to only allow teachers to start new + discussions, but still allow students to reply within those + threads (for example within the news forum on the site home page). + In this case you would choose the second option, "No discussions, but + replies are allowed". + diff --git a/lang/en_us/help/forum/attachment.html b/lang/en_us/help/forum/attachment.html new file mode 100644 index 0000000000..24c190f821 --- /dev/null +++ b/lang/en_us/help/forum/attachment.html @@ -0,0 +1,21 @@ +

Attachments for posts

+ +

You can optionally attach ONE file from your own computer + to any post in the forums. This file is uploaded to the + server and stored with your post. + +

This is useful when you want to share a picture, for example, + or a Word document. + +

This file can be of any type, however it is highly recommended + that the file is named using standard 3-letter internet + suffixes such as .doc for a Word document, .jpg or .png + for an image, and so on. This will make it easier for others + to download and view your attachment in their browsers. + +

If you re-edit a posting and attach a new file, then any + previous attached files for that post will be replaced. + +

If you re-edit a posting with an attachment and leave + this space blank, then the original attachment will be + retained. diff --git a/lang/en_us/help/forum/forumtype.html b/lang/en_us/help/forum/forumtype.html new file mode 100644 index 0000000000..86eec26df8 --- /dev/null +++ b/lang/en_us/help/forum/forumtype.html @@ -0,0 +1,16 @@ +

Forum Types

+ +

There are several different types of forum to choose from: + +

A single simple discussion - is just a single topic, all on one page. +Useful for short, focussed discussions. + +

Standard forum for general use - is an open forum where any one can +start a new topic at any time. This is the best general-purpose forum. + +

Each person posts one discussion - Each person can post exactly one +new discussion topic (everyone can reply to them though). This is useful when +you want each student to start a discussion about, say, their reflections on +the week's topic, and everyone else responds to these. + +

(More development to come in future versions of Moodle) diff --git a/lang/en_us/help/forum/ratings.html b/lang/en_us/help/forum/ratings.html new file mode 100644 index 0000000000..397337de84 --- /dev/null +++ b/lang/en_us/help/forum/ratings.html @@ -0,0 +1,70 @@ +

Forum Ratings

+ +

Individual posts can be rated using a scale based on the theory of +separate and connected knowing. + +

This theory may help you to look at human interactions + in a new way. It describes two different ways that we can evaluate and learn + about the things we see and hear. + +

Although each of us may use these two methods in different amounts at different + times, it may be useful to imagine two people as examples, one who is a mostly + separate knower (Jim) and the other a mostly connected knower (Mary).

+ +

Did you notice in these examples that the separate knower is male and the connected + knower is female? Some studies have shown that statistically this tends to be + the case, however individual people can be anywhere in the spectrum between + these two extremes.

+

For a collaborative and effective group of learners it may be best if everyone + were able to use BOTH ways of knowing.

+

In a particular situation like an online forum, a single post by a person may + exhibit either of these characteristics, or even both. Someone who is generally + very connected may post a very separate-sounding message, and vice versa. The + purpose of rating each post using this scale is to:

+
+

a) help you think about these issues when reading other posts
+ b) provide feedback to each author on how they are being seen by others

+
+

The results are not used towards student assessment in any way, they are just + to help improve communication and learning.

+
+


+ In case you're interested, here are some references to papers by the authors + who originally developed these ideas:

+ + diff --git a/lang/en_us/help/forum/subscription.html b/lang/en_us/help/forum/subscription.html new file mode 100644 index 0000000000..ea73ebbf6b --- /dev/null +++ b/lang/en_us/help/forum/subscription.html @@ -0,0 +1,18 @@ +

Forum Subscription

+ +

When a person is subscribed to a forum it means that +they will be sent email copies of every post in that forum +(posts are sent about 30 minutes after the post was first +written). + +

People can usually choose whether or not they want to be +subscribed to each forum. + +

However, if a teacher forces subscription on a particular forum +then this choice is taken away and everyone in the class will get +email copies. + +

This is especially useful in the News forum and in forums +towards the beginning of the course (before everyone has +worked out that they can subscribe to these emails themselves). + diff --git a/lang/en_us/help/guestaccess.html b/lang/en_us/help/guestaccess.html new file mode 100644 index 0000000000..23b4a31e5a --- /dev/null +++ b/lang/en_us/help/guestaccess.html @@ -0,0 +1,21 @@ +

Guest Access

+ +

You have the choice of allowing "guests" into your course. + +

People can log in as guests using the "Login as a guest" button + on the login screen. + +

Guests ALWAYS have "read-only" access - meaning they can't leave + any posts or otherwise mess up the course for real students. + +

This can be handy when you want to let a colleague in to + look around at your work, or to let students see a course before + they have decided to enrol. + +

Note that you have a choice between two types of guest access: + with the enrolment key or without. If you choose to allow + guests who have the key, then the guest will need to provide + the current enrolment key EVERY TIME they log in (unlike + students who only need to do it once). This lets you restrict + your guests. If you choose to allow guests without a key, then + anyone can get straight into your course. diff --git a/lang/en_us/help/html.html b/lang/en_us/help/html.html new file mode 100644 index 0000000000..e004543532 --- /dev/null +++ b/lang/en_us/help/html.html @@ -0,0 +1,13 @@ +

Help on writing html

+ +

When writing HTML in Moodle, you are free to use any HTML tags you like + to produce the effect you want. + +

Your code will normally be printed on the page within a table cell, + so: + +

+ diff --git a/lang/en_us/help/langedit.html b/lang/en_us/help/langedit.html new file mode 100644 index 0000000000..1e5b171f78 --- /dev/null +++ b/lang/en_us/help/langedit.html @@ -0,0 +1,12 @@ +

Language Editing

+ +

To edit languages on this page the files need to be writable + by the web server process. + +

Within some of the strings you will notice $a and $a->something. + +

These represent variables that will be replaced by names or other words from + within Moodle. + +

When there is only one variable, the $a form is used. When there are two or + more variables, then each one has a name. diff --git a/lang/en_us/help/mods.html b/lang/en_us/help/mods.html new file mode 100644 index 0000000000..7f75d64439 --- /dev/null +++ b/lang/en_us/help/mods.html @@ -0,0 +1,69 @@ +

Activity Modules

+ +

Moodle contains a wide range of activity modules that can be used to + build up any type of course.

+ +

 Forums

+ + +

 Journals

+ + +

 Resources

+ + +

 Assignments

+ + +

 Quizzes

+ + +

 Choices

+ + +

 Surveys

+ + + diff --git a/lang/en_us/help/picture.html b/lang/en_us/help/picture.html new file mode 100644 index 0000000000..f98f63a44a --- /dev/null +++ b/lang/en_us/help/picture.html @@ -0,0 +1,18 @@ +

Uploading a picture

+ +

You can upload a picture from your computer to this server, and this picture will be used in various places to represent you. +

For this reason, the best images to use are a close-up of your face, but you can use any image you like. +

The picture must be in JPG or PNG format (ie the names will usually end in .jpg or .png). +

You can get a picture file using one of four methods: + +

    +
  1. Using a digital camera, your photos will most likely already be on your computer in the right format. +
  2. You can use a scanner to scan a printed photograph. Make sure you save it as JPG or PNG format. +
  3. If you're artistic, you might draw a picture using a paint program. +
  4. Lastly, you can "steal" images from the web. http://images.google.com is a superb place to search for images. Once you find one, you can "right-click" on them with the mouse and choose "Save this image..." from the menu (different computers may vary slightly). +
+ +

To upload the image, click the "Browse" button on this editing page, and select the image from your hard disk. +

NOTE: Make sure that the file is not larger than the maximum size listed, or it will not be uploaded. +

Then click "Update my Profile" at the bottom - the image file will be cropped to a square and resized down to 100x100 pixels. +

When you are taken back to your profile page, the image might not appear to have changed. If this is so, just use the "Reload" button in your browser. diff --git a/lang/en_us/help/questions.html b/lang/en_us/help/questions.html new file mode 100644 index 0000000000..d96e3e1536 --- /dev/null +++ b/lang/en_us/help/questions.html @@ -0,0 +1,94 @@ +

Asking questions

+

Socratic questions are open-ended, probing questions designed to promote critical + evaluation of ideas, as well as encourage the creation of new ideas. Below are + some examples of such questions:

+

Questions of Clarification

+ +

Questions that probe assumptions

+ +

Questions that probe reasons and evidence

+ +

Questions about Viewpoints or Perspectives

+ +

Questions that Probe Implications and Consequences

+ + +
+Questions adapted from Paul, R. (1993). Critical Thinking: How To Prepare Students for a Rapidly Changing World: Foundation for Critical Thinking, Santa Rosa, CA. diff --git a/lang/en_us/help/quiz/attempts.html b/lang/en_us/help/quiz/attempts.html new file mode 100644 index 0000000000..a912d92b52 --- /dev/null +++ b/lang/en_us/help/quiz/attempts.html @@ -0,0 +1,6 @@ +

Quiz attempts

+ +

Students may be allowed to have multiple attempts at a quiz. + +

This can help make the process of taking the quiz more of + an educational activity rather than simply an assessment. diff --git a/lang/en_us/help/quiz/categories.html b/lang/en_us/help/quiz/categories.html new file mode 100644 index 0000000000..f0a21f987f --- /dev/null +++ b/lang/en_us/help/quiz/categories.html @@ -0,0 +1,17 @@ +

Question categories

+ +

Rather than keeping all your questions in one big list, + you can create categories to keep them in. + +

Each category consists of a name and a short description. + +

Each category can also be "published", which means + that the category (and all questions in it) will be + available to all courses on this server, so that + other courses can use your questions in their quizzes. + +

Categories can also be created or deleted at will. + However, if you try to delete a category containing + questions, then you will be asked to specify another + category to move them to. + diff --git a/lang/en_us/help/quiz/correctanswers.html b/lang/en_us/help/quiz/correctanswers.html new file mode 100644 index 0000000000..3a42e9efa4 --- /dev/null +++ b/lang/en_us/help/quiz/correctanswers.html @@ -0,0 +1,6 @@ +

Show correct answers

+ +

If you enable correct answers, then the +feedback will show also show the correct answer +for each question (highlighted in a bright colour). +

diff --git a/lang/en_us/help/quiz/feedback.html b/lang/en_us/help/quiz/feedback.html new file mode 100644 index 0000000000..8d16da6f65 --- /dev/null +++ b/lang/en_us/help/quiz/feedback.html @@ -0,0 +1,5 @@ +

Feedback

+ +

If you enable quiz feedback, then students will receive + question feedback on every answer (right or wrong).

+ diff --git a/lang/en_us/help/quiz/grademethod.html b/lang/en_us/help/quiz/grademethod.html new file mode 100644 index 0000000000..fe5289c857 --- /dev/null +++ b/lang/en_us/help/quiz/grademethod.html @@ -0,0 +1,25 @@ +

Grading method

+ +

When multiple attempts are allowed, there are different ways + you can use the grades to calculate the student's final + grade for the quiz. + +

Highest grade

+

+ +

Average grade

+

+ +

First grade

+

+ +

Last grade

+

diff --git a/lang/en_us/help/quiz/maxgrade.html b/lang/en_us/help/quiz/maxgrade.html new file mode 100644 index 0000000000..d3841862d4 --- /dev/null +++ b/lang/en_us/help/quiz/maxgrade.html @@ -0,0 +1,11 @@ +

Maximum grade

+ +

The maximum grade you set for a quiz is what all grades + are scaled to. + +

For example, you might set the max grade to 20, because the + quiz is worth 20% of the whole course. + +

Even though you might have 10 questions in your quiz + worth a total of 50 marks, all grades out of 50 will be + "scaled down" to the quiz max grade of 20. diff --git a/lang/en_us/help/quiz/multichoice.html b/lang/en_us/help/quiz/multichoice.html new file mode 100644 index 0000000000..52682ffa7c --- /dev/null +++ b/lang/en_us/help/quiz/multichoice.html @@ -0,0 +1,19 @@ +

Multiple Choice questions

+ +

In response to a question (that may include a image) the respondent + chooses from multiple answers. There are two types of multiple choice + questions - single answer and multiple answer. + +

Single-answer questions allow one and only one answer to be chosen. + Generally all the grades for such a question should be positive. + +

Multiple-answer questions allow one or more answers to be chosen - each answer + may carry a positive or negative grade, so that choosing ALL the options + will not necessarily result in good grade. If the total grade is negative + then the total grade for this question will be zero. Careful, it is + possible to create questions that have scores greater than 100%. + +

Finally, each answer (right or wrong) should include feedback - this feedback + will be shown to the respondent next to each of their answers (if the quiz + itself is configured to show feedback). +

diff --git a/lang/en_us/help/quiz/questiontypes.html b/lang/en_us/help/quiz/questiontypes.html new file mode 100644 index 0000000000..f3fc130160 --- /dev/null +++ b/lang/en_us/help/quiz/questiontypes.html @@ -0,0 +1,37 @@ +

Creating a new question

+ +

You can add a variety of different types of questions to a category:

+ +

Multiple Choice

+ + +

Short Answer

+ + +

True/False

+ + +

Random

+ + diff --git a/lang/en_us/help/quiz/random.html b/lang/en_us/help/quiz/random.html new file mode 100644 index 0000000000..6aaf9c38ca --- /dev/null +++ b/lang/en_us/help/quiz/random.html @@ -0,0 +1,3 @@ +

Random question

+ + diff --git a/lang/en_us/help/quiz/shortanswer.html b/lang/en_us/help/quiz/shortanswer.html new file mode 100644 index 0000000000..39f343310b --- /dev/null +++ b/lang/en_us/help/quiz/shortanswer.html @@ -0,0 +1,10 @@ +

Short Answer questions

+ +

In response to a question (that may include a image) the respondent + types a word or short phrase. + +

There may be several possible correct answers, each with a different + grade. If the "Case sensitive" option is selected, then you can + have different scores for "Word" or "word". + +

Answers are compared exactly, so be careful with your spelling! diff --git a/lang/en_us/help/quiz/timeopen.html b/lang/en_us/help/quiz/timeopen.html new file mode 100644 index 0000000000..5bda122a35 --- /dev/null +++ b/lang/en_us/help/quiz/timeopen.html @@ -0,0 +1,5 @@ +

Opening and closing the quiz

+ +

You can specify times when the quiz is accessible for people to make attempts. + +

Before the opening time, and after the closing time, the quiz will be unavailable. diff --git a/lang/en_us/help/quiz/truefalse.html b/lang/en_us/help/quiz/truefalse.html new file mode 100644 index 0000000000..7323375a24 --- /dev/null +++ b/lang/en_us/help/quiz/truefalse.html @@ -0,0 +1,11 @@ +

True/False questions

+ + +

In response to a question (that may include a image) the respondent + chooses from True or False. + +

If feedback is enabled, then the appropriate feedback message is + shown to the respondent after answering the quiz. For example, + if the correct answer is "False", but they answer "True" (getting + it wrong) then the "True" feedback is shown. +

diff --git a/lang/en_us/help/resource/resourcetype.html b/lang/en_us/help/resource/resourcetype.html new file mode 100644 index 0000000000..7d0eae1a3a --- /dev/null +++ b/lang/en_us/help/resource/resourcetype.html @@ -0,0 +1,23 @@ +

Resource Type

+ +

Resources are any content you can dream up. These are the + different types, which mostly specify how the content is + to be accessed: + +

Plain text - the easiest type. You can just type (edit) the page into a form +on the following page. Some things you type will be automatically formatted, just like +forum postings. See help on typing text: + +

HTML text - for more advanced users. No automatic formatting is performed, +you need to do it all manually using HTML codes. + +

Reference - a scholarly reference to a journal or book. + +

Uploaded file - displays any file you have uploaded into the course. See the 'Files' section. + +

Web link - A URL to somewhere on the web. When anyone clicks on this resource +activity they will be taken out of the course (the page you've specified will fill the browser window). + +

Web page - A URL to somewhere on the web. Like the previous type, this +will display a web page. Unlike the previous type, though, the page will displayed +within a frame, as if it is integrated within the course. diff --git a/lang/en_us/help/resource/summary.html b/lang/en_us/help/resource/summary.html new file mode 100644 index 0000000000..016342e192 --- /dev/null +++ b/lang/en_us/help/resource/summary.html @@ -0,0 +1,8 @@ +

Reading Summary

+ +

The summary is a very short description of the resource. + +

Do not be tempted to write too much here, or to include the + resource itself! + +

You'll get a chance to specify the content on the next page. diff --git a/lang/en_us/help/richtext.html b/lang/en_us/help/richtext.html new file mode 100644 index 0000000000..945bfb1784 --- /dev/null +++ b/lang/en_us/help/richtext.html @@ -0,0 +1,160 @@ +

About the Richtext HTML editor

+ +

Availability: +htmleditor) { + print_string("htmleditordisabledadmin"); + } else if (!$USER->htmleditor) { + print_string("htmleditordisabled"); + } else if (!can_use_richtext_editor()) { + print_string("htmleditordisabledbrowser"); + } else { + print_string("htmleditoravailable"); + } +?> +

+ +

The Richtext HTML editor provides a word-processor interface embedded in your web page to allow you to edit text in an intuitive way, and produces normal HTML code. + +

In addition to formatting text, this editor provides a number of extra features you may find useful. + +

Paste text in from other Applications

+ + +

Inserting images

+ + +

Inserting Tables

+ + +

Inserting Links

+ + + +

Inserting smilies (emoticons)

+ + + diff --git a/lang/en_us/help/surveys.html b/lang/en_us/help/surveys.html new file mode 100644 index 0000000000..939252e08e --- /dev/null +++ b/lang/en_us/help/surveys.html @@ -0,0 +1,99 @@ +

Available surveys

+ +

Currently, Moodle only offers specific types of surveys (future versions +will enable you to create your own).

+ +

The available surveys have been chosen as being particularly useful for +evaluating online learning environments that use a constructivist pedagogy. +They are useful to identify certain trends that may be happening among +your participants. + +(To see a paper where these are used in a detailed analysis, see: +http://dougiamas.com/writing/herdsa2002)

+ +
+

COLLES - Constructivist On-Line Learning Environment Survey

+ + + +
+

ATTLS - Attitudes to Thinking and Learning Survey

+ diff --git a/lang/en_us/help/teachers.html b/lang/en_us/help/teachers.html new file mode 100644 index 0000000000..0a482c970f --- /dev/null +++ b/lang/en_us/help/teachers.html @@ -0,0 +1,22 @@ +

Teachers

+ +

This page shows the list of people who are assigned to be + "teachers" in this course (by the system administrator). + +

You can use this form to assign a role (title) to each person + such as "Professor", "Tutor", "Assistant" and so on. These + will appear on the site's course listing and also on the + list of participants for your course. If you leave the + role empty then the default word for teacher will be used + (the one you set in the Course Settings page). + +

You can also order this list (to put the main teacher at the + top, for example). Simply select numbers from the menus + in the "Order" column. After pressing "Save changes" you will + see the new order. + +

NOTE: A special case occurs if you use select "Hide" + for a teacher. In this case, the teacher will + NOT BE SHOWN on the course listings or the list of + participants. They will be "hidden" from students + (unless they post messages to the forums etc) diff --git a/lang/en_us/help/text.html b/lang/en_us/help/text.html new file mode 100644 index 0000000000..d79dbfbeeb --- /dev/null +++ b/lang/en_us/help/text.html @@ -0,0 +1,144 @@ +

Help on writing text

+ +Writing text in Moodle works pretty much the way you would expect, but you also have the ability to include "smilies", "URL addresses" and some HTML tags in your text. + +

Smilies (emoticons)

+ + +

URLs

+ + +

HTML tags

+ + + diff --git a/lang/en_us/help/textformat.html b/lang/en_us/help/textformat.html new file mode 100644 index 0000000000..e01d9612a6 --- /dev/null +++ b/lang/en_us/help/textformat.html @@ -0,0 +1,41 @@ +

Formatting text

+ +

When writing text in Moodle there are currently two formats you can choose + to produce your text, depending on your expertise and the type of browser + you are using. + +

Usually you can just leave this setting alone and things should + work as you expect. + +

1. Moodle auto-format

+ + + +

2. HTML format

+ + diff --git a/lang/en_us/journal.php b/lang/en_us/journal.php new file mode 100644 index 0000000000..777e64eab1 --- /dev/null +++ b/lang/en_us/journal.php @@ -0,0 +1,29 @@ + diff --git a/lang/en_us/moodle.php b/lang/en_us/moodle.php new file mode 100644 index 0000000000..9e62df9b0c --- /dev/null +++ b/lang/en_us/moodle.php @@ -0,0 +1,518 @@ +what to \$a->to"; +$string['addnewcourse'] = "Add a new course"; +$string['addnewuser'] = "Add a new user"; +$string['address'] = "Address"; +$string['addteacher'] = "Add teacher"; +$string['admin'] = "Admin"; +$string['administration'] = "Administration"; +$string['again'] = "again"; +$string['all'] = "All"; +$string['alldays'] = "All days"; +$string['allfieldsrequired'] = "All fields are required"; +$string['alllogs'] = "All logs"; +$string['allow'] = "Allow"; +$string['allowguests'] = "This course allows guest users to enter"; +$string['allownot'] = "Do not allow"; +$string['allparticipants'] = "All participants"; +$string['alphanumerical'] = "Can only contain alphabetical letters or numbers"; +$string['alreadyconfirmed'] = "Registration has already been confirmed"; +$string['answer'] = "Answer"; +$string['assessment'] = "Assessment"; +$string['assignteachers'] = "Assign teachers"; +$string['authentication'] = "Authentication"; +$string['availablecourses'] = "Available Courses"; +$string['cancel'] = "Cancel"; +$string['categories'] = "Course categories"; +$string['category'] = "Category"; +$string['categoryadded'] = "The category '\$a' was added"; +$string['categorydeleted'] = "The category '\$a' was deleted"; +$string['changepassword'] = "Change password"; +$string['changedpassword'] = "Changed password"; +$string['changessaved'] = "Changes saved"; +$string['checklanguage'] = "Check language"; +$string['choose'] = "Choose"; +$string['choosecourse'] = "Choose a course"; +$string['chooselivelogs'] = "Or watch current activity"; +$string['chooselogs'] = "Choose which logs you want to see"; +$string['choosetheme'] = "Choose theme"; +$string['chooseuser'] = "Choose a user"; +$string['city'] = "City/town"; +$string['closewindow'] = "Close this window"; +$string['comparelanguage'] = "Compare and edit current language"; +$string['configgdversion'] = "Indicate the version of GD that is installed. The version shown by default is the one that has been auto-detected. Don't change this unless you really know what you're doing."; +$string['configerrorlevel'] = "Choose the amount of PHP warnings that you want to be displayed. Normal is usually the best choice."; +$string['confightmleditor'] = "Choose whether or not to allow use of the embedded HTML text editor. Even if you choose allow, this editor will only appear when the user is using a compatible browser (IE 5.5 or later). Users can also choose not to use it."; +$string['configintro'] = "On this page you can specify a number of configuration variables that help make Moodle work properly on your server. Don't worry too much about it - the defaults will usually work fine and you can always come back to this page later and change these settings."; +$string['configlang'] = "Choose a default language for the whole site. Users can override this setting later."; +$string['configlangdir'] = "Most languages are printed left-to-right, but some, like Arabic and Hebrew, are printed right-to-left."; +$string['configlocale'] = "Choose a sitewide locale - this will affect the format and language of dates. You need to have this locale data installed on your operating system. (eg en_US or es_ES). If you don't know what to choose leave it blank."; +$string['configlongtimenosee'] = "If students haven't logged in for a very long time, then they are automatically unsubscribed from courses. This parameter specifies that time limit."; +$string['configmaxeditingtime'] = "This specifies the amount of time people have to re-edit forum postings, journal feedback etc. Usually 30 minutes is a good value."; +$string['configproxyhost'] = "If this server needs to use a proxy computer (eg a firewall) to access the Internet, then provide the proxy hostname and port here. Otherwise leave it blank."; +$string['configslasharguments'] = "Files (images, uploads etc) are provided via a script using 'slash arguments' (the second option here). This method allows files to be more easily cached in web browsers, proxy servers etc. Unfortunately, some PHP servers don't allow this method, so if you have trouble viewing uploaded files or images (eg user pictures), set this variable to the first option"; +$string['configsmtphosts'] = "Give the full name of one or more local SMTP servers that Moodle should use to send mail (eg 'mail.a.com' or 'mail.a.com;mail.b.com'). If you leave it blank, Moodle will use the PHP default method of sending mail."; +$string['configsmtpuser'] = "If you have specified an SMTP server above, and the server requires authentication, then enter the username and password here."; +$string['configunzip'] = "Indicate the location of your unzip program (Unix only). This is needed to unpack zip archives on the server."; +$string['configvariables'] = "Configure variables"; +$string['configzip'] = "Indicate the location of your zip program (Unix only). This is needed to create zip archives on the server."; +$string['confirmed'] = "Your registration has been confirmed"; +$string['courseupdates'] = "Course updates"; +$string['cookiesenabled'] = "Cookies must be enabled in your browser"; +$string['complete'] = "Complete"; +$string['copyrightnotice'] = "Copyright notice"; +$string['continue'] = "Continue"; +$string['country'] = "Country"; +$string['course'] = "Course"; +$string['courseformats'] = "Course formats"; +$string['courses'] = "Courses"; +$string['createaccount'] = "Create my new account"; +$string['createuserandpass'] = "Create a new username and password to log in with"; +$string['createziparchive'] = "Create zip archive"; +$string['currentlanguage'] = "Current language"; +$string['currentlocaltime'] = "your current local time"; +$string['databasechecking'] = "Upgrading Moodle database from version \$a->oldversion to \$a->newversion..."; +$string['databasesetup'] = "Setting up database"; +$string['databasesuccess'] = "Database was successfully upgraded"; +$string['databaseupgrades'] = "Upgrading database"; +$string['day'] = "day"; +$string['days'] = "days"; +$string['defaultcoursefullname'] = "Course Fullname 101"; +$string['defaultcourseshortname'] = "CF101"; +$string['defaultcoursestudent'] = "Student"; +$string['defaultcoursestudents'] = "Students"; +$string['defaultcoursesummary'] = "Write a concise and interesting paragraph here that explains what this course is about"; +$string['defaultcourseteacher'] = "Teacher"; +$string['defaultcourseteachers'] = "Teachers"; +$string['delete'] = "Delete"; +$string['deletecheck'] = "Delete \$a ?"; +$string['deletecheckfull'] = "Are you absolutely sure you want to completely delete \$a ?"; +$string['deletecompletely'] = "Delete completely"; +$string['deletecoursecheck'] = "Are you absolutely sure you want to completely delete this course and all the data it contains?"; +$string['deletecourse'] = "Delete a course"; +$string['deleted'] = "Deleted"; +$string['deletedactivity'] = "Deleted \$a"; +$string['deletedcourse'] = "\$a has been completely deleted"; +$string['deletednot'] = "Could not delete \$a !"; +$string['deletingcourse'] = "Deleting \$a"; +$string['department'] = "Department"; +$string['description'] = "Description"; +$string['displayingusers'] = "Displaying users \$a->start to \$a->end"; +$string['documentation'] = "Moodle Documentation"; +$string['downloadexcel'] = "Download in Excel format"; +$string['downloadtext'] = "Download in text format"; +$string['doyouagree'] = "Have you read these conditions and understood them?"; +$string['edit'] = "Edit \$a"; +$string['editcoursesettings'] = "Edit course settings"; +$string['editinga'] = "Editing a \$a"; +$string['editmyprofile'] = "Edit profile"; +$string['editsummary'] = "Edit summary"; +$string['editthisactivity'] = "Edit this activity"; +$string['edituser'] = "Edit user accounts"; +$string['email'] = "Email address"; +$string['emailformat'] = "Email format"; +$string['emailconfirm'] = "Confirm your account"; +$string['emailconfirmsent'] = " +

An email should have been sent to your address at \$a +

It contains easy instructions to complete your registration. +

If you continue to have difficulty, contact the site administrator."; +$string['emailconfirmation'] = "Hi \$a->firstname, + +A new account has been requested at '\$a->sitename' +using your email address. + +To confirm your new account, please go to the +following web address: + + \$a->link + +In most mail programs, this should appear as a blue link +which you can just click on. If that doesn't work, +then cut and paste the address into the address +line at the top of your web browser window. + +Cheers from the '\$a->sitename' administrator, +\$a->admin"; + +$string['emaildisplay'] = "Email display"; +$string['emaildisplayno'] = "Hide my real email address from everyone"; +$string['emaildisplayyes'] = "Allow everyone to see my email address"; +$string['emaildisplaycourse'] = "Allow only other course members to see my email address"; +$string['emailexists'] = "This email address is already registered."; +$string['emailmustbereal'] = "Note: your email address must be a real one"; +$string['enrolmentkey'] = "Enrollment key"; +$string['enrolmentkeyfrom'] = "This course requires an 'enrollment key' - a one-time
+password that you should have got from \$a"; +$string['enrolmentkeyhint'] = "That enrollment key was incorrect, please try again
+(Here's a hint - it starts with '\$a')"; +$string['entercourse'] = "Click to enter this course"; +$string['enteremailaddress'] = "Enter in your email address to reset your + password and have the new password sent to you via email."; +$string['existingteachers'] = "Existing teachers"; +$string['error'] = "Error"; +$string['feedback'] = "Feedback"; +$string['filemissing'] = "\$a is missing"; +$string['files'] = "Files"; +$string['filloutallfields'] = "Please fill out all fields in this form"; +$string['firstname'] = "First name"; +$string['firsttime'] = "Is this your first time here?"; +$string['followingoptional'] = "The following items are optional"; +$string['followingrequired'] = "The following items are required"; +$string['forgotten'] = "Forgotten your username or password?"; +$string['format'] = "Format"; +$string['formathtml'] = "HTML format"; +$string['formatsocial'] = "Social format"; +$string['formattext'] = "Moodle auto-format"; +$string['formattexttype'] = "Formatting"; +$string['formattopics'] = "Topics format"; +$string['formatweeks'] = "Weekly format"; +$string['frontpagedescription'] = "Front page description"; +$string['frontpageformat'] = "Front page format"; +$string['fulllistofcourses'] = "All courses"; +$string['fullprofile'] = "Full profile"; +$string['fullname'] = "Full name"; +$string['fullsitename'] = "Full site name"; +$string['gd1'] = "GD 1.x is installed"; +$string['gd2'] = "GD 2.x is installed"; +$string['gdnot'] = "GD is not installed"; +$string['gpl'] = "Copyright (C) 2001-2002 Martin Dougiamas (http://dougiamas.com) + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details: + +http://www.gnu.org/copyleft/gpl.html"; +$string['grade'] = "Grade"; +$string['grades'] = "Grades"; +$string['guestskey'] = "Allow guests who have the key"; +$string['guestsno'] = "Do not allow guests in"; +$string['guestsnotallowed'] = "Sorry, '\$a' does not allow guests to enter."; +$string['guestsyes'] = "Allow guests without the key"; +$string['guestuser'] = "Guest User"; +$string['guestuserinfo'] = "This user is a special user that allows read-only access to some courses."; +$string['help'] = "Help"; +$string['helphtml'] = "How to write html"; +$string['helppicture'] = "How to upload a picture"; +$string['helptext'] = "How to write text"; +$string['helprichtext'] = "About the Richtext HTML editor"; +$string['helpquestions'] = "How to ask questions"; +$string['hide'] = "Hide"; +$string['hits'] = "Hits"; +$string['hitsoncourse'] = "Hits on \$a->coursename by \$a->username"; +$string['hitsoncoursetoday'] = "Today's hits on \$a->coursename by \$a->username"; +$string['home'] = "Home"; +$string['hour'] = "hour"; +$string['hours'] = "hours"; +$string['htmleditor'] = "Use Richtext HTML editor (IE only, 5.5 or later)"; +$string['htmleditoravailable'] = "The Richtext editor is available"; +$string['htmleditordisabled'] = "You have disabled the Richtext editor in your user profile"; +$string['htmleditordisabledadmin'] = "The administrator has disabled the Richtext editor on this site"; +$string['htmleditordisabledbrowser'] = "The Richtext editor is unavailable because you are not using Internet Explorer 5.5 or better"; +$string['htmlformat'] = "Pretty HTML format"; +$string['icqnumber'] = "ICQ number"; +$string['idnumber'] = "ID number"; +$string['jumpto'] = "Jump to..."; +$string['leavetokeep'] = "Leave blank to keep current password"; +$string['invalidlogin'] = "Invalid login, please try again"; +$string['invalidemail'] = "Invalid email address"; +$string['langltr'] = "Language direction left-to-right"; +$string['langrtl'] = "Language direction right-to-left"; +$string['language'] = "Language"; +$string['languagegood'] = "This language pack is up-to-date! :-)"; +$string['lastaccess'] = "Last access"; +$string['lastedited'] = "Last edited"; +$string['lastmodified'] = "Last modified"; +$string['lastname'] = "Last name"; +$string['latestnews'] = "Latest news"; +$string['listofallpeople'] = "List of all people"; +$string['license'] = "GPL License"; +$string['livelogs'] = "Live logs from the past hour"; +$string['locale'] = "en_US"; +$string['location'] = "Location"; +$string['loggedinas'] = "You are logged in as \$a "; +$string['loggedinnot'] = "You are not logged in."; +$string['login'] = "Login"; +$string['loginas'] = "Login as"; +$string['loginguest'] = "Login as a guest"; +$string['loginsite'] = "Login to the site"; +$string['loginto'] = "Login to \$a"; +$string['loginusing'] = "Login here using your username and password"; +$string['loginsteps'] = "Hi! For full access to courses you'll need to take + a minute to create a new account for yourself on this web site. + Each of the individual courses may also have a one-time + "enrollment key", which you won't need until later. Here are + the steps: +

    +
  1. Fill out the New Account form with your details. +
  2. An email will be immediately sent to your email address. +
  3. Read your email, and click on the web link it contains. +
  4. Your account will be confirmed and you will be logged in. +
  5. Now, select the course you want to participate in. +
  6. If you are prompted for a "enrollment key" - use the one + that your teacher has given you. This will "enrol" you in the + course. +
  7. You can now access the full course. From now on you will only need + to enter your personal username and password (in the form on this page) + to log in and access any course you have enrolled in. +
"; +$string['loginstepsnone'] = "Hi!

For full access to courses you'll need to create +yourself an account.

All you need to do is make up a username and password and use it in +the form on this page!

If someone else has already chosen your username +then you'll have to try again using a different username."; +$string['logout'] = "Logout"; +$string['logs'] = "Logs"; +$string['makeafolder'] = "Make a folder"; +$string['makeeditable'] = "If you make '\$a' editable by the web server process (eg apache) then you could edit this file directly from this page"; +$string['mainmenu'] = "Main menu"; +$string['managedatabase'] = "Manage database"; +$string['markthistopic'] = "Mark this topic as the current topic"; +$string['maximumchars'] = "Maximum of \$a characters"; +$string['maximumgrade'] = "Maximum grade"; +$string['maximumshort'] = "Max"; +$string['maxsize'] = "Max size: \$a"; +$string['min'] = "min"; +$string['mins'] = "mins"; +$string['miscellaneous'] = "Miscellaneous"; // Default course category +$string['missingcategory'] = "You need to choose a category"; +$string['missingcity'] = "Missing city/town"; +$string['missingcountry'] = "Missing country"; +$string['missingdescription'] = "Missing description"; +$string['missingemail'] = "Missing email address"; +$string['missingfirstname'] = "Missing first name"; +$string['missingfullname'] = "Missing full name"; +$string['missinglastname'] = "Missing last name"; +$string['missingshortname'] = "Missing short name"; +$string['missingnewpassword'] = "Missing new password"; +$string['missingpassword'] = "Missing password"; +$string['missingshortsitename'] = "Missing short site name"; +$string['missingsitedescription'] = "Missing site description"; +$string['missingsitename'] = "Missing site name"; +$string['missingstrings'] = "Check for missing strings"; +$string['missingstudent'] = "Must choose something"; +$string['missingsummary'] = "Missing summary"; +$string['missingteacher'] = "Must choose something"; +$string['missingusername'] = "Missing username"; +$string['modified'] = "Modified"; +$string['modulesetup'] = "Setting up module tables"; +$string['modulesuccess'] = "\$a tables have been set up correctly"; +$string['mostrecently'] = "most recently"; +$string['movedown'] = "Move down"; +$string['moveup'] = "Move up"; +$string['movetoanotherfolder'] = "Move to another folder"; +$string['movefilestohere'] = "Move files to here"; +$string['mustconfirm'] = "You need to confirm your login"; +$string['mycourses'] = "My courses"; +$string['name'] = "Name"; +$string['namesocial'] = "section"; +$string['nametopics'] = "topic"; +$string['nameweeks'] = "week"; +$string['new'] = "New"; +$string['newaccount'] = "New account"; +$string['newpassword'] = "New password"; +$string['newpasswordtext'] = "Hi \$a->firstname, + +Your account password at '\$a->sitename' has been reset +and you have been issued with a new temporary password. + +Your current login information is now: + username: \$a->username + password: \$a->newpassword + +Please go to this page to change your password: + \$a->link + +In most mail programs, this should appear as a blue link +which you can just click on. If that doesn't work, +then cut and paste the address into the address +line at the top of your web browser window. + +Cheers from the '\$a->sitename' administrator, +\$a->signoff\n"; + +$string['newpicture'] = "New picture"; +$string['newuser'] = "New user"; +$string['newusers'] = "New users"; +$string['newsitem'] = "news item"; +$string['newsitems'] = "news items"; +$string['newsitemsnumber'] = "News items to show"; +$string['never'] = "Never"; +$string['no'] = "No"; +$string['nocoursesyet'] = "No courses in this category"; +$string['noexistingteachers'] = "No existing teachers"; +$string['nofilesyet'] = "No files have been uploaded to your course yet"; +$string['nograde'] = "No grade"; +$string['noimagesyet'] = "No images have been uploaded to your course yet"; +$string['none'] = "None"; +$string['nopotentialteachers'] = "No potential teachers"; +$string['normal'] = "Normal"; +$string['nostudentsyet'] = "No students enrolled in this course yet"; +$string['nosuchemail'] = "No such email address"; +$string['noteachersyet'] = "No teachers in this course yet"; +$string['notenrolled'] = "\$a is not enrolled in this course."; +$string['nothingnew'] = "Nothing new since your last login"; +$string['nousersyet'] = "There are no users yet"; +$string['now'] = "now"; +$string['numberweeks'] = "Number of weeks/topics"; +$string['numdays'] = "\$a days"; +$string['numminutes'] = "\$a minutes"; +$string['numviews'] = "\$a views"; +$string['numweeks'] = "\$a weeks"; +$string['numwords'] = "\$a words"; +$string['numyears'] = "\$a years"; +$string['ok'] = "OK"; +$string['opentoguests'] = "Guest access"; +$string['optional'] = "optional"; +$string['order'] = "Order"; +$string['outline'] = "Outline"; +$string['participants'] = "Participants"; +$string['password'] = "Password"; +$string['passwordchanged'] = "Password has been changed"; +$string['passwordsdiffer'] = "These passwords do not match"; +$string['passwordrecovery'] = "Yes, help me log in"; +$string['passwordsent'] = "Password has been sent"; +$string['passwordsenttext'] = " +

An email has been sent to your address at \$a->email. +

Please check your email for your new password +

The new password was automatically generated, so you might like to + link>change it to something easier to remember."; +$string['people'] = "People"; +$string['personalprofile'] = "Personal profile"; +$string['phone'] = "Phone"; +$string['potentialteachers'] = "Potential teachers"; +$string['preferredlanguage'] = "Preferred language"; +$string['preview'] = "Preview"; +$string['previeworchoose'] = "Preview or choose a theme"; +$string['question'] = "Question"; +$string['readme'] = "README"; // This is a file name +$string['recentactivity'] = "Recent activity"; +$string['removeteacher'] = "Remove teacher"; +$string['rename'] = "Rename"; +$string['resources'] = "Resources"; +$string['returningtosite'] = "Returning to this web site?"; +$string['requireskey'] = "This course requires an enrollment key"; +$string['revert'] = "Revert"; +$string['role'] = "Role"; +$string['savechanges'] = "Save changes"; +$string['search'] = "Search"; +$string['searchagain'] = "Search again"; +$string['searchresults'] = "Search results"; +$string['sec'] = "sec"; +$string['secs'] = "secs"; +$string['section'] = "Section"; +$string['selectacountry'] = "Select a country"; +$string['senddetails'] = "Send my details via email"; +$string['separateandconnected'] = "Separate and Connected ways of knowing"; +$string['serverlocaltime'] = "Server's local time"; +$string['settings'] = "Settings"; +$string['shortname'] = "Short name"; +$string['shortsitename'] = "Short name for site (eg single word)"; +$string['show'] = "Show"; +$string['showalltopics'] = "Show all topics"; +$string['showallweeks'] = "Show all weeks"; +$string['showlistofcourses'] = "Show list of courses"; +$string['showonlytopic'] = "Show only topic \$a"; +$string['showonlyweek'] = "Show only week \$a"; +$string['showrecent'] = "Show recent activity"; +$string['showtheselogs'] = "Show these logs"; +$string['socialheadline'] = "Social forum - latest topics"; +$string['showallcourses'] = "Show all courses"; +$string['site'] = "Site"; +$string['sites'] = "Sites"; +$string['sitelogs'] = "Site logs"; +$string['sitenews'] = "Site news"; +$string['sitesettings'] = "Site settings"; +$string['size'] = "Size"; +$string['someallowguest'] = "Some courses may allow guest access"; +$string['someerrorswerefound'] = "Some information was missing or incorrect. Look below for details."; +$string['startdate'] = "Course start date"; +$string['startsignup'] = "Start now by creating a new account!"; +$string['status'] = "Status"; +$string['stringsnotset'] = "The following strings are not defined in \$a"; +$string['studentnotallowed'] = "Sorry, but you can not enter this course as '\$a'"; +$string['success'] = "Success"; +$string['summary'] = "Summary"; +$string['summaryof'] = "Summary of \$a"; +$string['supplyinfo'] = "Please supply some information about yourself"; +$string['teacheronly'] = "for the \$a only"; +$string['textformat'] = "Plain text format"; +$string['textediting'] = "When editing text"; +$string['texteditor'] = "Use standard web forms"; +$string['timezone'] = "Timezone"; +$string['thanks'] = "Thanks"; +$string['theme'] = "Theme"; +$string['themesaved'] = "New theme saved"; +$string['today'] = "Today"; +$string['todaylogs'] = "Today's logs"; +$string['toomanytoshow'] = "There are too many users to show"; +$string['topic'] = "Topic"; +$string['topicoutline'] = "Topic outline"; +$string['turneditingoff'] = "Turn editing off"; +$string['turneditingon'] = "Turn editing on"; +$string['total'] = "Total"; +$string['undecided'] = "Undecided"; +$string['unenrol'] = "Unenrol"; +$string['unenrolme'] = "Unenrol me from \$a"; +$string['unenrolsure'] = "Are you sure you want to unenrol \$a from this course?"; +$string['unsafepassword'] = "Unsafe password - try something else"; +$string['unusedaccounts'] = "Accounts unused for more than \$a days are automatically unenrolled"; +$string['unzip'] = "Unzip"; +$string['update'] = "Update"; +$string['updated'] = "Updated \$a"; +$string['updatemyprofile'] = "Update profile"; +$string['updatesevery'] = "Updates every \$a seconds"; +$string['updatethiscourse'] = "Update this course"; +$string['updatinga'] = "Updating a \$a"; +$string['updatingain'] = "Updating a \$a->what in \$a->in"; +$string['updatethis'] = "Update this \$a"; +$string['upload'] = "Upload"; +$string['uploadafile'] = "Upload a file"; +$string['uploadthisfile'] = "Upload this file"; +$string['userdeleted'] = "This user account has been deleted"; +$string['userdescription'] = "Description"; +$string['username'] = "Username"; +$string['usernameexists'] = "This username already exists, choose another"; +$string['userprofilefor'] = "User profile for \$a"; +$string['users'] = "Users"; +$string['webpage'] = "Web page"; +$string['week'] = "Week"; +$string['weeklyoutline'] = "Weekly outline"; +$string['welcometocourse'] = "Welcome to \$a"; +$string['welcometocoursetext'] = "Welcome to \$a->coursename! + +One of the first things you should do is edit your profile page +within the course so that we can learn more about you: + + \$a->profileurl"; +$string['withchosenfiles'] = "With chosen files"; +$string['wordforteacher'] = "Your word for Teacher"; +$string['wordforteachereg'] = "eg Teacher, Tutor, Facilitator etc"; +$string['wordforteachers'] = "Your word for Teachers"; +$string['wordforteacherseg'] = "eg Teachers, Tutors, Facilitators etc"; +$string['wordforstudent'] = "Your word for Student"; +$string['wordforstudenteg'] = "eg Student, Participant etc"; +$string['wordforstudents'] = "Your word for Students"; +$string['wordforstudentseg'] = "eg Students, Participants etc"; +$string['wrongpassword'] = "Incorrect password for this username"; +$string['yes'] = "Yes"; +$string['yourlastlogin'] = "Your last login was"; +$string['yourself'] = "yourself"; +$string['yourteacher'] = "your \$a"; + +?> diff --git a/lang/en_us/quiz.php b/lang/en_us/quiz.php new file mode 100644 index 0000000000..ba4753a0a5 --- /dev/null +++ b/lang/en_us/quiz.php @@ -0,0 +1,103 @@ +name' contains \$a->count questions. Please choose another category to move them to."; +$string['categorymoveto'] = "Move them to this category"; +$string['choice'] = "Choice"; +$string['choices'] = "Available choices"; +$string['correctanswer'] = "Correct answer"; +$string['correctanswers'] = "Correct answers"; +$string['createnewquestion'] = "Create new question"; +$string['daysavailable'] = "Days available"; +$string['default'] = "Default"; +$string['defaultinfo'] = "The default category for questions."; +$string['deletequestioncheck'] = "Are you absolutely sure you want to delete '\$a'?"; +$string['editcategories'] = "Edit categories"; +$string['editingquiz'] = "Editing quiz"; +$string['editingquestion'] = "Editing a question"; +$string['editingshortanswer'] = "Editing a short answer question"; +$string['editingtruefalse'] = "Editing a true/false question"; +$string['editingmultichoice'] = "Editing a multiple choice question"; +$string['false'] = "False"; +$string['feedback'] = "Feedback"; +$string['filloutoneanswer'] = "You must fill out at least one possible answer. Answers left blank will not be used."; +$string['fillouttwochoices'] = "You must fill out at least two choices. Choices left blank will not be used."; +$string['fractionsaddwrong'] = "The positive grades you have chosen do not add up to 100%% +
Instead, they add up to \$a%% +
Do you want to go back and fix this question?"; +$string['fractionsnomax'] = "One of the answers should be 100%%, so that it is +
possible to get a full grade for this question. +
Do you want to go back and fix this question?"; +$string['gradeaverage'] = "Average grade"; +$string['gradehighest'] = "Highest grade"; +$string['grademethod'] = "Grading method"; +$string['guestsno'] = "Sorry, guests can not see or attempt quizzes"; +$string['imagedisplay'] = "Image to display"; +$string['introduction'] = "Introduction"; +$string['marks'] = "Marks"; +$string['multichoice'] = "Multiple Choice"; +$string['noanswers'] = "No answers were selected!"; +$string['noattempts'] = "No attempts have been made on this quiz"; +$string['nomoreattempts'] = "No more attempts are allowed"; +$string['noquestions'] = "No questions have been added yet"; +$string['publish'] = "Publish"; +$string['question'] = "Question"; +$string['questioninuse'] = "The question '\$a' is currently being used:"; +$string['questions'] = "Questions"; +$string['questionname'] = "Question name"; +$string['quizavailable'] = "The quiz is available until: \$a"; +$string['quizclose'] = "Close the quiz"; +$string['quizclosed'] = "This quiz closed on \$a"; +$string['quizopen'] = "Open the quiz"; +$string['quiznotavailable'] = "The quiz will not be available until: \$a"; +$string['random'] = "Random set"; +$string['regrade'] = "Regrade all attempts"; +$string['regradecomplete'] = "All attempts have been regraded"; +$string['regradecount'] = "\$a->changed out of \$a->attempt grades were changed"; +$string['rename'] = "Rename"; +$string['report'] = "Reports"; +$string['save'] = "Save"; +$string['savegrades'] = "Save grades"; +$string['savemyanswers'] = "Save my answers"; +$string['savequiz'] = "Save this whole quiz"; +$string['score'] = "Raw score"; +$string['select'] = "Select"; +$string['selectcategoryabove'] = "Select a category above"; +$string['shortanswer'] = "Short Answer"; +$string['show'] = "Show"; +$string['showfeedback'] = "After answering, show feedback?"; +$string['showcorrectanswer'] = "In feedback, show correct answers?"; +$string['time'] = "Time"; +$string['timetaken'] = "Time taken"; +$string['timecompleted'] = "Completed"; +$string['true'] = "True"; +$string['truefalse'] = "True/False"; +$string['type'] = "Type"; +$string['viewallanswers'] = "View \$a completed quizzes"; +$string['yourfinalgradeis'] = "Your final grade for this quiz is \$a"; diff --git a/lang/en_us/resource.php b/lang/en_us/resource.php new file mode 100644 index 0000000000..b1e1d3f5e4 --- /dev/null +++ b/lang/en_us/resource.php @@ -0,0 +1,29 @@ +File Manager."; +$string['notypechosen'] = "You need to choose a type. Use your back button to go back and retry."; +$string['resourcetype'] = "Type of resource"; +$string['resourcetype1'] = "Reference"; +$string['resourcetype2'] = "Web Page"; +$string['resourcetype3'] = "Uploaded File"; +$string['resourcetype4'] = "Plain text"; +$string['resourcetype5'] = "Web Link"; +$string['resourcetype6'] = "HTML text"; + +?> diff --git a/lang/en_us/survey.php b/lang/en_us/survey.php new file mode 100644 index 0000000000..e6c031aea9 --- /dev/null +++ b/lang/en_us/survey.php @@ -0,0 +1,208 @@ +preferred (ideal) and actual experience in this unit. + +There are no 'right' or 'wrong' answers; we are interested only in your opinion. Please be assured that your responses will be treated with a high degree of confidentiality, and will not affect your assessment. + +Your carefully considered responses will help us improve the way this unit is presented online in the future. + +Thanks very much."; + +$string['collespname'] = "COLLES (Preferred)"; +$string['collespintro'] = "The purpose of this survey is to help us understand what you value in an online learning experience. + +Each one of the 24 statements below asks about your preferred (ideal) experience in this unit. + +There are no 'right' or 'wrong' answers; we are interested only in your opinion. Please be assured that your responses will be treated with a high degree of confidentiality, and will not affect your assessment. + +Your carefully considered responses will help us improve the way this unit is presented online in the future. + +Thanks very much."; + + +$string['collesm1'] = "Relevance"; +$string['collesm1short'] = "Relevance"; +$string['collesm2'] = "Reflective Thinking"; +$string['collesm2short'] = "Reflective Thinking"; +$string['collesm3'] = "Interactivity"; +$string['collesm3short'] = "Interactivity"; +$string['collesm4'] = "Tutor Support"; +$string['collesm4short'] = "Tutor Support"; +$string['collesm5'] = "Peer Support"; +$string['collesm5short'] = "Peer Support"; +$string['collesm6'] = "Interpretation"; +$string['collesm6short'] = "Interpretation"; + +$string['collesmintro'] = "In this online unit..."; + +$string['done'] = "Done"; +$string['download'] = "Download"; +$string['downloadexcel'] = "Download data as Excel spreadsheet"; +$string['downloadinfo'] = "You can download the complete raw data for this survey in a form suitable for analysis in Excel, SPSS or other package."; +$string['downloadtext'] = "Download data as a plain text file"; +$string['editingasurvey'] = "Editing a survey"; +$string['helpsurveys'] = "Help on the different types of surveys"; +$string['howlong'] = "How long did this survey take you to complete?"; +$string['howlongoptions'] = "under 1 min,1-2 min,2-3 min,3-4 min,4-5-min,5-10 min,more than 10"; +$string['ifoundthat'] = "I found that"; +$string['introtext'] = "Introduction text"; +$string['ipreferthat'] = "I prefer that"; +$string['name'] = "Name"; +$string['newsurveyresponses'] = "New survey responses"; +$string['nobodyyet'] = "Nobody has yet completed this survey"; +$string['notdone'] = "Not done yet"; +$string['notes'] = "Your private analysis and notes"; +$string['othercomments'] = "Do you have any other comments?"; +$string['peoplecompleted'] = "\$a people have completed this survey so far"; +$string['preferred'] = "Preferred"; +$string['preferredclass'] = "Class preferred"; +$string['preferredstudent'] = "\$a preferred"; +$string['question'] = "Question"; +$string['questions'] = "Questions"; +$string['questionsnotanswered'] = "Some of the multiple choice questions have not been answered."; +$string['report'] = "Survey report"; +$string['scales'] = "Scales"; +$string['savednotes'] = "Your notes were saved"; +$string['scaleagree5'] = "Strongly disagree,Somewhat disagree,Neither agree nor disagree,Somewhat agree,Strongly agree"; +$string['scaletimes5'] = "Almost Never,Seldom,Sometimes,Often,Almost Always"; +$string['seemoredetail'] = "Click here to see more detail"; +$string['selectedquestions'] = "Selected questions from a scale, all students"; +$string['summary'] = "Summary"; +$string['surveycompleted'] = "You've completed this survey. The graph below shows a summary of your results compared to the class averages."; +$string['surveyname'] = "Survey name"; +$string['surveysaved'] = "Survey saved"; +$string['surveytype'] = "Survey type"; +$string['thanksforanswers'] = "Thanks for answering this survey, \$a"; +$string['time'] = "Time"; +$string['viewsurveyresponses'] = "View \$a survey responses"; + +?> -- 2.39.5