From: moodler Date: Tue, 10 Dec 2002 09:57:59 +0000 (+0000) Subject: New Turkish translation from M. Cuneyt Birkok, http://birkok.net ! X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=0fa6f59fbdd6c9b084084be7e015cc9873d56317;p=moodle.git New Turkish translation from M. Cuneyt Birkok, http://birkok.net ! --- diff --git a/lang/tr/README b/lang/tr/README new file mode 100644 index 0000000000..2f84dbc7e8 --- /dev/null +++ b/lang/tr/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/tr/assignment.php b/lang/tr/assignment.php new file mode 100644 index 0000000000..a6423d6687 --- /dev/null +++ b/lang/tr/assignment.php @@ -0,0 +1,40 @@ + diff --git a/lang/tr/auth.php b/lang/tr/auth.php new file mode 100644 index 0000000000..5995e22896 --- /dev/null +++ b/lang/tr/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. 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/tr/choice.php b/lang/tr/choice.php new file mode 100644 index 0000000000..68c55b0e38 --- /dev/null +++ b/lang/tr/choice.php @@ -0,0 +1,17 @@ + diff --git a/lang/tr/docs/module_files.txt b/lang/tr/docs/module_files.txt new file mode 100644 index 0000000000..cd1cc03f14 --- /dev/null +++ b/lang/tr/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/tr/forum.php b/lang/tr/forum.php new file mode 100644 index 0000000000..5916857d19 --- /dev/null +++ b/lang/tr/forum.php @@ -0,0 +1,119 @@ +name - \$a->date"; +$string['couldnotadd'] = "Bilinmeyen bir nedenle mesajýnýz eklenemedi"; +$string['couldnotdeleteratings'] = "Bir kullanýcý bunu oranladýðý için silinemez"; +$string['couldnotdeletereplies'] = "Bir kullanýcý bunu yanýtladýðý silinemez"; +$string['couldnotupdate'] = "Bilinmeyen bir nedenle mesajýnýz güncellenemedi"; +$string['delete'] = "Sil"; +$string['deleteddiscussion'] = "Bu tartýþma konusu silindi"; +$string['deletedpost'] = "Bu mesaj silindi"; +$string['deletesure'] = "Bu mesajý silmek istediðinizden emin misiniz?"; +$string['discussion'] = "Tartýþma"; +$string['discussions'] = "Tartýþmalar"; +$string['discussionsstartedby'] = "\$a tarafýndan baþlatýlan tartýþmalar"; +$string['discussthistopic'] = "Bu konuyu tartýþ"; +$string['eachuserforum'] = "Bu tartýþmaya herkes tek measaj gönderebilir"; +$string['edit'] = "Düzelt"; +$string['editing'] = "Düzenleme"; +$string['emptymessage'] = "Mesajýnýzda bir sorun var. Muhtemelen metin yazmadýnýz yada ekiniz çok büyük. Deðiþiklikleriniz KAYDEDÝLMEDÝ."; +$string['everyonecanchoose'] = "Herkes abone olabilir"; +$string['everyoneissubscribed'] = "Bu foruma herkes abone oldu"; +$string['forcesubscribe'] = "Herkesi abone olmaya zorunlu tut"; +$string['forcesubscribeq'] = "Herkes abone olmaya zorunlu mu?"; +$string['forum'] = "Forum"; +$string['forumintro'] = "Forum tanýtýmý"; +$string['forumname'] = "Forum adý"; +$string['forums'] = "Forumlar"; +$string['forumtype'] = "Forum türü"; +$string['generalforum'] = "Genel amaçlý standard forum"; +$string['generalforums'] = "Genel forumlar"; +$string['inforum'] = "\$a'de"; +$string['intronews'] = "Genel haberler ve duyurular"; +$string['introsocial'] = "Ýstediðiniz herhangi bir konuda konuþabileceðiniz açýk forum"; +$string['introteacher'] = "Sadece eðitmenler için not ve tartýþma forumu"; +$string['learningforums'] = "Öðretim forumlarý"; +$string['maxtimehaspassed'] = "(\$a) için düzenleme süresi doldu!"; +$string['message'] = "Mesaj"; +$string['modeflatoldestfirst'] = "Yanýtlarý düz olarak göster, eskiden yeniye sýralý"; +$string['modeflatnewestfirst'] = "Yanýtlarý düz olarak göster, yeniden eskiye sýralý"; +$string['modenested'] = "Yanýtlarý içiçe göster"; +$string['modethreaded'] = "Yanýtlarý dizin olarak göster"; +$string['more'] = "devamý"; +$string['namenews'] = "Haber forumu"; +$string['namesocial'] = "Sosyal forum"; +$string['nameteacher'] = "Eðitmen forumu"; +$string['newforumposts'] = "Yeni forum mesajý"; +$string['nodiscussions'] = "Bu forumda henüz bir tartýþma konusu yoktur"; +$string['noguestpost'] = "Kayýtsýz ziyaretçiler mesaj gönderemezler"; +$string['noposts'] = "Mesaj yok"; +$string['nopostscontaining'] = "Ýçinde '\$a' olan bir mesaj bulunamadý"; +$string['nosubscribers'] = "Bu forumun henüz bir abonesi yoktur"; +$string['nownotsubscribed'] = "Kullanýcý \$a->name, '\$a->forum' baþlýklý forumun kopyasýný epostayla ALAMAYACAKTIR."; +$string['nowsubscribed'] = "Kullanýcý \$a->name, '\$a->forum' baþlýklý forumun kopyasýný epostayla alacaktýr."; +$string['numposts'] = "\$a mesajlar"; +$string['olderdiscussions'] = "Eski tartýþmalar"; +$string['openmode0'] = "Tartýþma ve yanýt yok"; +$string['openmode1'] = "Tartýþma yok, yanýt verilebilir"; +$string['openmode2'] = "Tartýþma açýlabilir ve yanýt verilebilir"; +$string['parentofthispost'] = "Bu mesajýn yukarýsý"; +$string['postadded'] = "Mesajýnýz eklendi.

\$a mesajýnýzý deðitirebilirsiniz."; +$string['postincontext'] = "Mesajý dizin içinde görün"; +$string['postmailinfo'] = "Bu metin \$a websitesinde gönderilmiþ mesajýn bir kopyasýdýr. +Websitesi aracýlýðýyla yanýtlamak için bu baðlantýyý týklayýnýz:"; + +$string['postingtip'] = "Mesaj önerileri: +Yanýtlarken: +

+ +Yazarken: +"; + +$string['postrating1'] = "Çoðunlukla AYRI bilgiler gösteriliyor"; +$string['postrating2'] = "Eþit olarak ayrý ve ilgili bilgiler gösteriliyor"; +$string['postrating3'] = "Çoðunlukla ÝLGÝLÝ bilgiler gösteriliyor"; +$string['postupdated'] = "Mesajýnýz güncellendi"; +$string['processingpost'] = "\$a mesajý iþleniyor"; +$string['rate'] = "Sýnýflandýr"; +$string['ratings'] = "Sýnýflandýrmalar"; +$string['readtherest'] = "Devamýný oku"; +$string['re'] = "Yanýt:"; // Put in front of subjects that are replies to another post +$string['repliesmany'] = "Þu ana kadar yanýtlar \$a"; +$string['repliesone'] = "\$a toplam yanýt"; +$string['reply'] = "Yanýtla"; +$string['search'] = "Ara"; +$string['searchresults'] = "Arama sonuçlarý"; +$string['searchforums'] = "Aranacak forumlar"; +$string['sendinratings'] = "Sýnýflandýrmamý gönder"; +$string['showsubscribers'] = "Aboneleri göster"; +$string['singleforum'] = "Tek bir tartýþma"; +$string['subject'] = "Konu"; +$string['subscribe'] = "Bu foruma abone ol"; +$string['subscribed'] = "Abone oldu"; +$string['subscribers'] = "Aboneler"; +$string['subscribersto'] = "'\$a' aboneleri"; +$string['unsubscribe'] = "Bu forum aboneliðini kaldýr"; +$string['youratedthis'] = "Sýnýflandýrmanýz"; +$string['yournewtopic'] = "Yeni tartýþma konunuz"; +$string['yourreply'] = "Yanýtýnýz"; + +?> diff --git a/lang/tr/help/assignment/assignmenttype.html b/lang/tr/help/assignment/assignmenttype.html new file mode 100644 index 0000000000..6b3689764f --- /dev/null +++ b/lang/tr/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/tr/help/assignment/resubmit.html b/lang/tr/help/assignment/resubmit.html new file mode 100644 index 0000000000..1d4d3b178e --- /dev/null +++ b/lang/tr/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/tr/help/choice/options.html b/lang/tr/help/choice/options.html new file mode 100644 index 0000000000..adf2e81fed --- /dev/null +++ b/lang/tr/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/tr/help/coursecategory.html b/lang/tr/help/coursecategory.html new file mode 100644 index 0000000000..4c776f230e --- /dev/null +++ b/lang/tr/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/tr/help/courseformats.html b/lang/tr/help/courseformats.html new file mode 100644 index 0000000000..2cc26c4ac0 --- /dev/null +++ b/lang/tr/help/courseformats.html @@ -0,0 +1,24 @@ +

Moodle course formats

+ +

Weekly format

+ + +

Topics format

+ + +

Social format

+ + diff --git a/lang/tr/help/coursefullname.html b/lang/tr/help/coursefullname.html new file mode 100644 index 0000000000..171de93fac --- /dev/null +++ b/lang/tr/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/tr/help/coursenewsitems.html b/lang/tr/help/coursenewsitems.html new file mode 100644 index 0000000000..a9c18ea8e1 --- /dev/null +++ b/lang/tr/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/tr/help/coursenumsections.html b/lang/tr/help/coursenumsections.html new file mode 100644 index 0000000000..c117bb77e3 --- /dev/null +++ b/lang/tr/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/tr/help/courserecent.html b/lang/tr/help/courserecent.html new file mode 100644 index 0000000000..19add5ac72 --- /dev/null +++ b/lang/tr/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/tr/help/courseshortname.html b/lang/tr/help/courseshortname.html new file mode 100644 index 0000000000..8c3bda062d --- /dev/null +++ b/lang/tr/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/tr/help/coursestartdate.html b/lang/tr/help/coursestartdate.html new file mode 100644 index 0000000000..b843fdb383 --- /dev/null +++ b/lang/tr/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/tr/help/enrolmentkey.html b/lang/tr/help/enrolmentkey.html new file mode 100644 index 0000000000..609bcaaf76 --- /dev/null +++ b/lang/tr/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/tr/help/forum/allowdiscussions.html b/lang/tr/help/forum/allowdiscussions.html new file mode 100644 index 0000000000..fac7554c56 --- /dev/null +++ b/lang/tr/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/tr/help/forum/attachment.html b/lang/tr/help/forum/attachment.html new file mode 100644 index 0000000000..24c190f821 --- /dev/null +++ b/lang/tr/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/tr/help/forum/forumtype.html b/lang/tr/help/forum/forumtype.html new file mode 100644 index 0000000000..86eec26df8 --- /dev/null +++ b/lang/tr/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/tr/help/forum/ratings.html b/lang/tr/help/forum/ratings.html new file mode 100644 index 0000000000..397337de84 --- /dev/null +++ b/lang/tr/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/tr/help/forum/subscription.html b/lang/tr/help/forum/subscription.html new file mode 100644 index 0000000000..ea73ebbf6b --- /dev/null +++ b/lang/tr/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/tr/help/guestaccess.html b/lang/tr/help/guestaccess.html new file mode 100644 index 0000000000..23b4a31e5a --- /dev/null +++ b/lang/tr/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/tr/help/html.html b/lang/tr/help/html.html new file mode 100644 index 0000000000..e004543532 --- /dev/null +++ b/lang/tr/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/tr/help/langedit.html b/lang/tr/help/langedit.html new file mode 100644 index 0000000000..1e5b171f78 --- /dev/null +++ b/lang/tr/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/tr/help/mods.html b/lang/tr/help/mods.html new file mode 100644 index 0000000000..7f75d64439 --- /dev/null +++ b/lang/tr/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/tr/help/picture.html b/lang/tr/help/picture.html new file mode 100644 index 0000000000..f98f63a44a --- /dev/null +++ b/lang/tr/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/tr/help/questions.html b/lang/tr/help/questions.html new file mode 100644 index 0000000000..d96e3e1536 --- /dev/null +++ b/lang/tr/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/tr/help/quiz/attempts.html b/lang/tr/help/quiz/attempts.html new file mode 100644 index 0000000000..a912d92b52 --- /dev/null +++ b/lang/tr/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/tr/help/quiz/categories.html b/lang/tr/help/quiz/categories.html new file mode 100644 index 0000000000..f0a21f987f --- /dev/null +++ b/lang/tr/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/tr/help/quiz/correctanswers.html b/lang/tr/help/quiz/correctanswers.html new file mode 100644 index 0000000000..3a42e9efa4 --- /dev/null +++ b/lang/tr/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/tr/help/quiz/feedback.html b/lang/tr/help/quiz/feedback.html new file mode 100644 index 0000000000..8d16da6f65 --- /dev/null +++ b/lang/tr/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/tr/help/quiz/grademethod.html b/lang/tr/help/quiz/grademethod.html new file mode 100644 index 0000000000..fe5289c857 --- /dev/null +++ b/lang/tr/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/tr/help/quiz/maxgrade.html b/lang/tr/help/quiz/maxgrade.html new file mode 100644 index 0000000000..d3841862d4 --- /dev/null +++ b/lang/tr/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/tr/help/quiz/multichoice.html b/lang/tr/help/quiz/multichoice.html new file mode 100644 index 0000000000..52682ffa7c --- /dev/null +++ b/lang/tr/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/tr/help/quiz/questiontypes.html b/lang/tr/help/quiz/questiontypes.html new file mode 100644 index 0000000000..f3fc130160 --- /dev/null +++ b/lang/tr/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/tr/help/quiz/random.html b/lang/tr/help/quiz/random.html new file mode 100644 index 0000000000..6aaf9c38ca --- /dev/null +++ b/lang/tr/help/quiz/random.html @@ -0,0 +1,3 @@ +

Random question

+ + diff --git a/lang/tr/help/quiz/shortanswer.html b/lang/tr/help/quiz/shortanswer.html new file mode 100644 index 0000000000..39f343310b --- /dev/null +++ b/lang/tr/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/tr/help/quiz/timeopen.html b/lang/tr/help/quiz/timeopen.html new file mode 100644 index 0000000000..5bda122a35 --- /dev/null +++ b/lang/tr/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/tr/help/quiz/truefalse.html b/lang/tr/help/quiz/truefalse.html new file mode 100644 index 0000000000..7323375a24 --- /dev/null +++ b/lang/tr/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/tr/help/resource/resourcetype.html b/lang/tr/help/resource/resourcetype.html new file mode 100644 index 0000000000..7d0eae1a3a --- /dev/null +++ b/lang/tr/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/tr/help/resource/summary.html b/lang/tr/help/resource/summary.html new file mode 100644 index 0000000000..016342e192 --- /dev/null +++ b/lang/tr/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/tr/help/richtext.html b/lang/tr/help/richtext.html new file mode 100644 index 0000000000..945bfb1784 --- /dev/null +++ b/lang/tr/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/tr/help/surveys.html b/lang/tr/help/surveys.html new file mode 100644 index 0000000000..939252e08e --- /dev/null +++ b/lang/tr/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/tr/help/teachers.html b/lang/tr/help/teachers.html new file mode 100644 index 0000000000..0a482c970f --- /dev/null +++ b/lang/tr/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/tr/help/text.html b/lang/tr/help/text.html new file mode 100644 index 0000000000..d79dbfbeeb --- /dev/null +++ b/lang/tr/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/tr/help/textformat.html b/lang/tr/help/textformat.html new file mode 100644 index 0000000000..e01d9612a6 --- /dev/null +++ b/lang/tr/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/tr/journal.php b/lang/tr/journal.php new file mode 100644 index 0000000000..c6f78542fa --- /dev/null +++ b/lang/tr/journal.php @@ -0,0 +1,29 @@ + diff --git a/lang/tr/moodle.php b/lang/tr/moodle.php new file mode 100644 index 0000000000..a30307da95 --- /dev/null +++ b/lang/tr/moodle.php @@ -0,0 +1,509 @@ +what, \$a->to'e ekleniyor"; +$string['addnewcourse'] = "Yeni ders ekle"; +$string['addnewuser'] = "Yeni kullanýcý ekle"; +$string['address'] = "Adres"; +$string['addteacher'] = "Eðitmen ekle"; +$string['admin'] = "Admin"; +$string['administration'] = "Administration"; +$string['again'] = "tekrarla"; +$string['all'] = "Tümü"; +$string['alldays'] = "Bütün günler"; +$string['allfieldsrequired'] = "Tüm alanlar zorunludur"; +$string['alllogs'] = "Tüm kayýtlar"; +$string['allow'] = "Ýzinli"; +$string['allowguests'] = "Bu derse kayýtsýz kullanýcýlar girebilir"; +$string['allownot'] = "Ýzin verme"; +$string['allparticipants'] = "Tüm katýlýmcýlar"; +$string['alphanumerical'] = "Sadece latin harfleri ve rakamlar"; +$string['alreadyconfirmed'] = "Kayýt daha önce onaylanmýþtý"; +$string['answer'] = "Yanýt"; +$string['assessment'] = "Deðerlendirme"; +$string['assignteachers'] = "Eðitmen belirle"; +$string['authentication'] = "Kimlik denetimi"; +$string['availablecourses'] = "Mevcut dersler"; +$string['cancel'] = "Ýptal"; +$string['categories'] = "Ders kategorileri"; +$string['category'] = "Kategori"; +$string['categoryadded'] = "'\$a' kategorisi eklendi"; +$string['categorydeleted'] = "'\$a' kategorisi silindi"; +$string['changepassword'] = "Þifre deðiþtir"; +$string['changedpassword'] = "Þifre deðiþti"; +$string['changessaved'] = "Deðiþiklikler kaydedildi"; +$string['checklanguage'] = "Dil saðlama"; +$string['choose'] = "Seç"; +$string['choosecourse'] = "Bir ders seçiniz"; +$string['chooselivelogs'] = "Yada mevcut etkinlikleri izleyiniz"; +$string['chooselogs'] = "Hangi kayýtlarý görmek istediðinizi seçiniz"; +$string['choosetheme'] = "Tema seçiniz"; +$string['chooseuser'] = "Kullanýcý seçiniz"; +$string['city'] = "Þehir"; +$string['closewindow'] = "Bu pencereyi kapat"; +$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'] = "Kaydýnýz onaylandý"; +$string['courseupdates'] = "Ders güncellemeleri"; +$string['cookiesenabled'] = "Cookies must be enabled in your browser"; +$string['complete'] = "Tamamlandý"; +$string['copyrightnotice'] = "Yayýn haklarý"; +$string['continue'] = "Devam"; +$string['country'] = "Ülke"; +$string['course'] = "Ders"; +$string['courseformats'] = "Ders formatlarý"; +$string['courses'] = "Dersler"; +$string['createaccount'] = "Yeni hesabýmý oluþtur"; +$string['createuserandpass'] = "Giriþ yapýlacak kullanýcý adý ve þifre oluþtur"; +$string['createziparchive'] = "Zip arþivi oluþtur"; +$string['currentlanguage'] = "Geçerli dil"; +$string['currentlocaltime'] = "bölgesel saatiniz"; +$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'] = "gün"; +$string['days'] = "gün"; +$string['defaultcoursefullname'] = "Bu Dersin Tam Adý 101"; +$string['defaultcourseshortname'] = "BDTA101"; +$string['defaultcoursestudent'] = "Öðrenci"; +$string['defaultcoursestudents'] = "Öðrenciler"; +$string['defaultcoursesummary'] = "Write a concise and interesting paragraph here that explains what this course is about"; +$string['defaultcourseteacher'] = "Eðitmen"; +$string['defaultcourseteachers'] = "Eðitmenler"; +$string['delete'] = "Sil"; +$string['deletecheck'] = "\$a silinsin mi?"; +$string['deletecheckfull'] = "\$a 'i tamamen silmek istediðinizden emin misiniz?"; +$string['deletecompletely'] = "Hepsini sil"; +$string['deletecoursecheck'] = "Bu dersi ve içindeki tüm bilgileri tamamen silmek istediðinizden emin misiniz?"; +$string['deletecourse'] = "Ders sil"; +$string['deleted'] = "Silindi"; +$string['deletedactivity'] = "\$a silindi"; +$string['deletedcourse'] = "\$a tamamen silindi"; +$string['deletednot'] = "\$a silinemiyor!"; +$string['deletingcourse'] = "\$a siliniyor"; +$string['department'] = "Bölüm"; +$string['description'] = "Açýklama"; +$string['displayingusers'] = "\$a->start -den \$a->end -e kullanýcýlarý gösteriyor"; +$string['documentation'] = "Program Belgeleri"; +$string['downloadexcel'] = "Excel formatýnda indir"; +$string['downloadtext'] = "text formatýnda indir"; +$string['doyouagree'] = "Þartlarý okuyup kabul ediyor musunuz?"; +$string['edit'] = "Düzenle \$a"; +$string['editcoursesettings'] = "Ders ayarlarýný düzenle"; +$string['editinga'] = "\$a düzenleniyor"; +$string['editmyprofile'] = "Profili düzenle"; +$string['editsummary'] = "Özeti düzenle"; +$string['editthisactivity'] = "Bu etkinliði düzenle"; +$string['edituser'] = "Kullanýcý hesaplarýný düzenle"; +$string['email'] = "Eposta adresi"; +$string['emailformat'] = "Eposta formatý"; +$string['emailconfirm'] = "Hesabýnýzý onaylayýn"; +$string['emailconfirmsent'] = " +

Bu adresinize bir eposta gönderildi: \$a +

Kaydýnýzýn tamamlanmasý için bazý açýklamalar içermektedir. +

Bir sorun çýkmasý durumunda site yöneticisine baþvurunuz."; +$string['emailconfirmation'] = "Merhaba \$a->firstname, + +'\$a->sitename' Sitesinde bu eposta adresiyle yeni bir hesap açýlmýþtýr. + +Yeni hesabýnýzý onaylamak için aþaðýdaki web adresine gidiniz: + + \$a->link + +Bu baðlantýyý týkladýðýnýzda yeni sayfada site açýlacaktýr. +Eðer açýlmýyorsa gezgininizin adres satýrýna yukarýdaki baðlantýyý kopyalayýnýz. + +Selamlar +'\$a->sitename' Yönetimi, +\$a->admin"; + +$string['emaildisplay'] = "Eposta gösterimi"; +$string['emaildisplayno'] = "Gerçek adresimi gizle"; +$string['emaildisplayyes'] = "Adresimi göster"; +$string['emaildisplaycourse'] = "Sadece ders üyelerine adresimi göster"; +$string['emailexists'] = "Bu eposta adresi daha önce kaydedilmiþtir."; +$string['emailmustbereal'] = "Uyarý: eposta adresiniz gerçek olmalýdýr"; +$string['enrolmentkey'] = "Kayýt anahtarý"; +$string['enrolmentkeyfrom'] = "Bu ders kayýt olurken bir defalýðýna kullanacaðýnýz +özel bir 'Kayýt Anahtarý' gerektirmektedir.
+Eðer bu anahtarý bilmiyorsanýz \$a den isteyiniz."; +$string['enrolmentkeyhint'] = "Bu anahtar yanlýþtýr, tekrar deneyiniz
+(Ýpucu - '\$a' ile baþlýyor)"; +$string['entercourse'] = "Bu derse girmek için týklayýnýz"; +$string['enteremailaddress'] = "Þifrenizi sýfýrlamak ve yeni þifrenizi +epostayla göndermek için eposta adresinizi yazýnýz."; +$string['existingteachers'] = "Mevcut eðitmenler"; +$string['error'] = "Hata"; +$string['feedback'] = "Geribildirim"; +$string['filemissing'] = "\$a kayýptýr"; +$string['files'] = "Dosyalar"; +$string['filloutallfields'] = "Bu formdaki tüm alanlarý doldurunuz"; +$string['firstname'] = "Adýnýz"; +$string['firsttime'] = "Bu siteye ilk geliþiniz midir?"; +$string['followingoptional'] = "Aþaðýdaki maddeler seçimliktir"; +$string['followingrequired'] = "Aþaðýdaki maddeler zorunludur"; +$string['forgotten'] = "Kullanýcý adý veye þifrenizi unuttunuz mu?"; +$string['format'] = "Format"; +$string['formathtml'] = "HTML format"; +$string['formatsocial'] = "Sosya format"; +$string['formattext'] = "Program auto-format"; +$string['formattexttype'] = "Formatlýyor"; +$string['formattopics'] = "Konu formatý"; +$string['formatweeks'] = "Haftalýk format"; +$string['frontpagedescription'] = "Giriþ sayfasý açýklamalarý"; +$string['frontpageformat'] = "Giriþ sayfasý formatý"; +$string['fulllistofcourses'] = "Tüm dersler"; +$string['fullprofile'] = "Tam profil"; +$string['fullname'] = "Tam adýnýz"; +$string['fullsitename'] = "Tam site adý"; +$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'] = "Not"; +$string['grades'] = "Notlar"; +$string['guestskey'] = "Kayýt anahtarý olan konuklarýn girmesine izin ver"; +$string['guestsno'] = "Konuklarýn girmesini yasakla"; +$string['guestsnotallowed'] = "Özür dileriz, '\$a' dersine konuklarýn girmesine izin verilmemektedir."; +$string['guestsyes'] = "Anahtarsýz koknuklarýn girmesine izin ver"; +$string['guestuser'] = "Konuk Kullanýcý"; +$string['guestuserinfo'] = "Bu özel bir kullanýcýdýr ve sadece bazý derslere salt-okunur olarak girebilir."; +$string['help'] = "Yardým"; +$string['helphtml'] = "html Nasýl yazýlýr"; +$string['helppicture'] = "Resim nasýl yüklenir"; +$string['helptext'] = "Metin nasýl yazýlýr"; +$string['helprichtext'] = "Richtext HTML editörü hakkýnda"; +$string['helpquestions'] = "Soru nasýl sorulur"; +$string['hide'] = "Gizle"; +$string['hits'] = "Ýzlenmeler"; +$string['hitsoncourse'] = "\$a->username 'ün \$a->coursename dersini izlemeleri"; +$string['hitsoncoursetoday'] = "\$a->username 'ün \$a->coursename dersini bugünkü izlemeleri"; +$string['home'] = "Ana Sayfa"; +$string['hour'] = "saat"; +$string['hours'] = "saat"; +$string['htmleditor'] = "Richtext HTML editörü kullanýnýz (IE only, 5.5 or later)"; +$string['htmleditoravailable'] = "Richtext editörü var"; +$string['htmleditordisabled'] = "Kullanýcý profilinizdeki Richtext editörünü kapattýnýz"; +$string['htmleditordisabledadmin'] = "Yönetici bu sitedeki Richtext editörünü kapatmýþtýr"; +$string['htmleditordisabledbrowser'] = "Internet Explorer 5.5 ve yukarýsý olmadýðý için Richtext editörünü kullanamazsýnýz"; +$string['htmlformat'] = "Kolay HTML formatý"; +$string['icqnumber'] = "ICQ numarasý"; +$string['idnumber'] = "ID numarasý"; +$string['jumpto'] = "Geçiþ yap..."; +$string['leavetokeep'] = "Geçerli þifrenizi sürdürmek için boþ býrakýnýz"; +$string['invalidlogin'] = "Geçersiz login, tekrar deneyin"; +$string['invalidemail'] = "Geçersiz eposta adresi"; +$string['langltr'] = "Language direction left-to-right"; +$string['langrtl'] = "Language direction right-to-left"; +$string['language'] = "Dil"; +$string['languagegood'] = "This language pack is up-to-date! :-)"; +$string['lastaccess'] = "Son giriþ"; +$string['lastedited'] = "Son düzenleme"; +$string['lastmodified'] = "Son deðiþtirme"; +$string['lastname'] = "Soyadý"; +$string['latestnews'] = "Son haberler"; +$string['listofallpeople'] = "Tam kullanýcý listesi"; +$string['license'] = "GPL License"; +$string['livelogs'] = "Son bir saatteki canlý kayýtlar"; +$string['location'] = "Yer"; +$string['loggedinas'] = "\$a olarak giriþ yaptýnýz"; +$string['loggedinnot'] = "Giriþ yapmadýnýz."; +$string['login'] = "Giriþ"; +$string['loginas'] = "Farklý giriþ yap"; +$string['loginguest'] = "Konuk olarak giriþ"; +$string['loginsite'] = "Siteye giriþ"; +$string['loginto'] = "\$a'e giriþ"; +$string['loginusing'] = "Kullanýcý adý ve þifrenizle buradan giriniz"; +$string['loginsteps'] = "Merhaba! Bu sitedeki derslere tam giriþ için hesap + açmanýz gerekmektedir. Derslerden bazýlarýnýn sadece kayýt için bir + defalýðýna kullanýlan "Kayýt Anahtarý" olabilir. + Þu adýmlarý izleyiniz: +

    +
  1. Yeni Hesap formunu doldurun. +
  2. Eposta adresinize hemen bir mesaj gönderilir. +
  3. Mesajdaki web baðlantýsýný týklayýn. +
  4. Hesabýnýz onaylanýr ve giriþ yapabilirsiniz. +
  5. Þimdi, katýlmak istediðiniz dersi seçiniz. +
  6. Eðer bir "Kayýt Anahtarý" istenirse, eðitmeninizin verdiði + anahtarý yazýnýz. Böylece bu derse "kaydýnýz" yapýlacaktýr. +
  7. Artýk tüm derse girebilirsiniz. Kullanýcý adý ve þifrenizle + kaydolduðunuz derse bu sayfadan girebilirsiniz. +
"; +$string['loginstepsnone'] = "Merhaba!

Derslere tam giriþ için bir hesap açmanýz gerekmektedir. +

Bir kullanýcý adý ve þifre oluþturarak bu sayfadaki formdan giriþ yapýnýz!"; +$string['logout'] = "Çýkýþ"; +$string['logs'] = "Kayýtlar"; +$string['makeafolder'] = "Klasör oluþtur"; +$string['makeeditable'] = "Eðer '\$a' dersini sunucu tarafýndan deðiþtirilebilir yapmak isterseniz, +bu dosyayý doðrudan bu sayfada düzenlemelisiniz"; +$string['mainmenu'] = "Ana menü"; +$string['managedatabase'] = "Veritabanýný yönet"; +$string['markthistopic'] = "Bu konuyu güncel konu olarak belirle"; +$string['maximumchars'] = "En çok \$a harf"; +$string['maximumgrade'] = "En yüksek not"; +$string['maximumshort'] = "Max"; +$string['maxsize'] = "En çok: \$a"; +$string['min'] = "dk"; +$string['mins'] = "dk"; +$string['miscellaneous'] = "Çeþitli"; // Default course category +$string['missingcategory'] = "Bir kategori seçmelisiniz"; +$string['missingcity'] = "Þehir yazýlmadý"; +$string['missingcountry'] = "Ülke yazýlmadý"; +$string['missingdescription'] = "Açýklama yazýlmadý"; +$string['missingemail'] = "Eposta adresi yazýlmadý"; +$string['missingfirstname'] = "Ad yazýlmadý"; +$string['missingfullname'] = "Tam ad yazýlmadý"; +$string['missinglastname'] = "Soyadý yazýlmadý"; +$string['missingshortname'] = "Kýsa ad yazýlmadý"; +$string['missingnewpassword'] = "Yeni þifre yazýlmadý"; +$string['missingpassword'] = "Þifre yazýlmadý"; +$string['missingshortsitename'] = "Kýsa site adý yazýlmadý"; +$string['missingsitedescription'] = "Site açýklamasý yazýlmadý"; +$string['missingsitename'] = "Site adý yazýlmadý"; +$string['missingstrings'] = "Check for missing strings"; +$string['missingstudent'] = "Bir öðrenci seçmelisiniz"; +$string['missingsummary'] = "Özet yazýlmadý"; +$string['missingteacher'] = "Bir eðitmen seçmelisiniz"; +$string['missingusername'] = "Kullanýcý adý yazýlmadý"; +$string['modified'] = "Deðiþtirildi"; +$string['modulesetup'] = "module tablolarý ayarlanýyor"; +$string['modulesuccess'] = "\$a adet tablo doðru olarak kuruldu"; +$string['mostrecently'] = "en yakýn"; +$string['movedown'] = "Aþaðý taþý"; +$string['moveup'] = "Yukarý taþý"; +$string['movetoanotherfolder'] = "Baþka klasöre taþý"; +$string['movefilestohere'] = "Dosyalarý buraya taþý"; +$string['mustconfirm'] = "Giriþinizi onaylamalýsýnýz"; +$string['mycourses'] = "Derslerim"; +$string['name'] = "Ad"; +$string['namesocial'] = "bölüm"; +$string['nametopics'] = "konu"; +$string['nameweeks'] = "hafta"; +$string['new'] = "Yeni"; +$string['newaccount'] = "Yeni hesap"; +$string['newpassword'] = "Yeni þifre"; +$string['newpasswordtext'] = "Merhaba \$a->firstname, + +'\$a->sitename' sitesindeki hesap þifreniz silindi +ve geçici yeni bir þifre oluþturuldu. + +Geçerli giriþ bilgileriniz þunlardýr: + kullanýcýadý: \$a->username + þifre: \$a->newpassword + +Bu sayfaya giderek þifrenizi deðiþtiriniz: + \$a->link + +Bu baðlantýyý týkladýðýnýzda yeni sayfada site açýlacaktýr. +Eðer açýlmýyorsa yukarýdaki baðlantýyý gezgininizin adres satýrýna kopyalayýnýz. + +Selamlar +'\$a->sitename' Yönetimi, +\$a->signoff\n"; + +$string['newpicture'] = "Yeni resim"; +$string['newuser'] = "Yeni Kullanýcý"; +$string['newusers'] = "Yeni Kullanýcýlar"; +$string['newsitem'] = "haber baþlýðý"; +$string['newsitems'] = "haber baþlýklarý"; +$string['newsitemsnumber'] = "Gösterilecek haberler"; +$string['never'] = "Hiçbir zaman"; +$string['no'] = "Hayýr"; +$string['nocoursesyet'] = "Bu kategoride ders yoktur"; +$string['noexistingteachers'] = "Eðitmen yoktur"; +$string['nofilesyet'] = "Dersinize henüz bir dosya yüklenmedi"; +$string['nograde'] = "Not yok"; +$string['noimagesyet'] = "Dersinize henüz bir resim yüklenmedi"; +$string['none'] = "Hiçbiri"; +$string['nopotentialteachers'] = "Potansiyel eðitmen yoktur"; +$string['normal'] = "Normal"; +$string['nostudentsyet'] = "Bu derse henüz bir öðrenci kaydolmadý"; +$string['nosuchemail'] = "Bu eposta adresi yoktur"; +$string['noteachersyet'] = "Bu derste henüz bir eðitmen yoktur"; +$string['notenrolled'] = "\$a bu derse kaydolmadý."; +$string['nothingnew'] = "Son giriþinizden beri yeni bir þey yok"; +$string['nousersyet'] = "Henüz bir kullanýcý yok"; +$string['now'] = "þimdi"; +$string['numberweeks'] = "Hafta/Konu sayýsý"; +$string['numdays'] = "\$a gün"; +$string['numminutes'] = "\$a dakika"; +$string['numviews'] = "\$a izlenme"; +$string['numweeks'] = "\$a hafta"; +$string['numwords'] = "\$a kelime"; +$string['numyears'] = "\$a yýl"; +$string['ok'] = "Tamam"; +$string['opentoguests'] = "Konuk giriþi"; +$string['optional'] = "Seçimlik"; +$string['order'] = "Sýra"; +$string['outline'] = "Ana hatlar"; +$string['participants'] = "Katýlýmcýlar"; +$string['password'] = "Þifre"; +$string['passwordchanged'] = "Þifre deðiþtirildi"; +$string['passwordsdiffer'] = "Bu þifreler uyuþmuyor"; +$string['passwordrecovery'] = "Evet, giriþ yardýmý istiyorum"; +$string['passwordsent'] = "Þifre gönderildi"; +$string['passwordsenttext'] = " +

\$a->email adresinize bir eposta gönderildi. +

Lütfen yeni þifreniz için epostanýzý kontrol ediniz +

Otomatik olarak oluþturulan yeni þifrenizi + link>bu baðlantýdan deðiþtirebilirsiniz."; +$string['people'] = "Topluluk"; +$string['personalprofile'] = "Kiþisel profil"; +$string['phone'] = "Telefon"; +$string['potentialteachers'] = "Potansiyel eðitmenler"; +$string['preferredlanguage'] = "Tercih edilen dil"; +$string['preview'] = "Önizleme"; +$string['previeworchoose'] = "Ýzle veya bir tema seç"; +$string['question'] = "Soru"; +$string['readme'] = "BENIOKU"; // This is a file name +$string['recentactivity'] = "Son etkinlik"; +$string['removeteacher'] = "Eðitmeni çýkar"; +$string['rename'] = "Ad deðiþtir"; +$string['resources'] = "Kaynaklar"; +$string['returningtosite'] = "Bu siteye dön?"; +$string['requireskey'] = "Bu ders kayýt anahtarý gerektirmektedir"; +$string['revert'] = "Döndür"; +$string['role'] = "Rol"; +$string['savechanges'] = "Deðiþiklikleri kaydet"; +$string['search'] = "Ara"; +$string['searchagain'] = "Tekrar ara"; +$string['searchresults'] = "Arama sonuçlarý"; +$string['sec'] = "sn"; +$string['secs'] = "sn"; +$string['section'] = "Bölüm"; +$string['selectacountry'] = "Ülke seç"; +$string['senddetails'] = "Bilgilerimi epostayla gönder"; +$string['separateandconnected'] = "Ayrý ve ilgili bilgi seçeneði"; +$string['serverlocaltime'] = "Sunucunun yerel zamaný"; +$string['settings'] = "Ayarlar"; +$string['shortname'] = "Kýsa ad"; +$string['shortsitename'] = "Sitenin kýsa adý (tek sözcük)"; +$string['show'] = "Göster"; +$string['showalltopics'] = "Tüm konularý göster"; +$string['showallweeks'] = "Tüm haftalarý göster"; +$string['showlistofcourses'] = "Dersler listesini göster"; +$string['showonlytopic'] = "Sadece \$a konularýný göster"; +$string['showonlyweek'] = "Sadece \$a haftayý göster"; +$string['showrecent'] = "Son etkinlikleri göster"; +$string['showtheselogs'] = "Bu kayýtlarý göster"; +$string['socialheadline'] = "Sosyal forum - son konular"; +$string['showallcourses'] = "Tüm dersleri göster"; +$string['site'] = "Site"; +$string['sites'] = "Siteler"; +$string['sitelogs'] = "Site kayýtlarý"; +$string['sitenews'] = "Site haberleri"; +$string['sitesettings'] = "Site ayarlarý"; +$string['size'] = "Boyut"; +$string['someallowguest'] = "Bazý derslerde konuk giriþlerine izin verilmektedir"; +$string['someerrorswerefound'] = "Bazý bilgiler kayýp veya yanlýþ. Ayrýntýlar aþaðýdadýr."; +$string['startdate'] = "Dersin baþlama tarihi"; +$string['startsignup'] = "Yeni bir hesap açarak baþlayýnýz!"; +$string['status'] = "Statü"; +$string['stringsnotset'] = "Bu strings tanýmlanmadý \$a"; +$string['studentnotallowed'] = "Malesef bu derse '\$a' olarak giremezsiniz"; +$string['success'] = "Baþarýlý"; +$string['summary'] = "Özet"; +$string['summaryof'] = "\$a özeti"; +$string['supplyinfo'] = "Lütfen sizinle ilgili bilgileri veriniz"; +$string['teacheronly'] = "sadece \$a için"; +$string['textformat'] = "Plain text format"; +$string['textediting'] = "Metni düzenlerken"; +$string['texteditor'] = "Standart web formlarý kullanýnýz"; +$string['timezone'] = "Zaman dilimi"; +$string['thanks'] = "Teþekkürler"; +$string['theme'] = "Tema"; +$string['themesaved'] = "Yeni tema kaydedildi"; +$string['today'] = "Bugün"; +$string['todaylogs'] = "Bugünün kayýtlarý"; +$string['toomanytoshow'] = "Çok fazla kullannýcý var"; +$string['topic'] = "Konu"; +$string['topicoutline'] = "Konu ana hatlarý"; +$string['turneditingoff'] = "Düzenlemeyi kapat"; +$string['turneditingon'] = "Düzenlemeyi aç"; +$string['total'] = "Toplam"; +$string['undecided'] = "Kararsýz"; +$string['unenrol'] = "Unenrol"; +$string['unenrolme'] = "\$a Dersinden kaydýmý sil"; +$string['unenrolsure'] = "\$a Dersinden kaydýnýzý silmek istediðinizden emin misiniz?"; +$string['unsafepassword'] = "Güvenilmeyen þifre - baþka birini deneyin"; +$string['unusedaccounts'] = "\$a günden fazla kullanýlmayan hesaplar otomatik olarak iptal edildi"; +$string['unzip'] = "Unzip"; +$string['update'] = "Güncelle"; +$string['updated'] = "Güncelleme \$a"; +$string['updatemyprofile'] = "Profil güncelle"; +$string['updatesevery'] = "Her \$a saniyede güncellenir"; +$string['updatethiscourse'] = "Bu dersi güncelle"; +$string['updatinga'] = "Bir \$a güncelleniyor"; +$string['updatingain'] = "\$a->in deki bir \$a->what güncelleniyor"; +$string['updatethis'] = "\$a güncelle"; +$string['upload'] = "Yükle"; +$string['uploadafile'] = "Bir dosya yükle"; +$string['uploadthisfile'] = "Bu dosyayý yükle"; +$string['userdeleted'] = "Bu kullanýcýnýn hesabý silindi"; +$string['userdescription'] = "Açýklama"; +$string['username'] = "Kullanýcýadý"; +$string['usernameexists'] = "Bu kullanýcý adý var, baþkasýný seçiniz"; +$string['userprofilefor'] = "\$a'in kullanýcý profili"; +$string['users'] = "Kullanýcýlar"; +$string['webpage'] = "Web sayfasý"; +$string['week'] = "Hafta"; +$string['weeklyoutline'] = "Haftalýk taslak"; +$string['welcometocourse'] = "\$a Hoþ Geldiniz"; +$string['welcometocoursetext'] = "\$a->coursename dersine hoþ geldiniz! + +Yapmanýz gereken ilk þey ders içindeki profil sayfanýzý düzenlemektir: + + \$a->profileurl"; +$string['withchosenfiles'] = "Seçilen dosyalarla"; +$string['wordforteacher'] = "Hocanýza söyleyecekleriniz"; +$string['wordforteachereg'] = "ör. Eðitmen, Öðretim Üyesi, Hoca, Öðretmen, Asistan vs."; +$string['wordforteachers'] = "Hocalarýnýza söyleyecekleriniz"; +$string['wordforteacherseg'] = "ör. Eðitmen, Öðretim Üyesi, Hoca, Öðretmen, Asistan vs."; +$string['wordforstudent'] = "Öðrencinize söyleyecekleriniz"; +$string['wordforstudenteg'] = "ör. Öðrenci, Katýlýmcý vs."; +$string['wordforstudents'] = "Öðrencilerinize söyleyecekleriniz"; +$string['wordforstudentseg'] = "ör. Öðrenci, Katýlýmcý vs."; +$string['wrongpassword'] = "Bu kullanýcýadý için yanlýþ þifre"; +$string['yes'] = "Evet"; +$string['yourlastlogin'] = "Son giriþ tarihiniz"; +$string['yourself'] = "kendiniz"; +$string['yourteacher'] = "hocanýz \$a"; + +?> diff --git a/lang/tr/quiz.php b/lang/tr/quiz.php new file mode 100644 index 0000000000..407a03038d --- /dev/null +++ b/lang/tr/quiz.php @@ -0,0 +1,103 @@ +name' Kategorisinde \$a->count soru var. Taþýyacaðýnýz baþka kategori seçiniz."; +$string['categorymoveto'] = "Bu kategoriye taþý"; +$string['choice'] = "Seçenek"; +$string['choices'] = "Verilen seçenekler"; +$string['correctanswer'] = "Doðru yanýt"; +$string['correctanswers'] = "Doðru yanýtlar"; +$string['createnewquestion'] = "Yeni soru oluþtur"; +$string['daysavailable'] = "Mevcut günler"; +$string['default'] = "Varsayýlan"; +$string['defaultinfo'] = "Sorular için varsayýlan kategori."; +$string['deletequestioncheck'] = "Silmek istediðinizden emin misiniz '\$a'?"; +$string['editcategories'] = "Kategorileri düzenle"; +$string['editingquiz'] = "Sýnav düzenleme"; +$string['editingquestion'] = "Bir soru düzenleme"; +$string['editingshortanswer'] = "Kýsa yanýtlý soru düzenleme"; +$string['editingtruefalse'] = "Doðru/Yanlýþ sorusu düzenleme"; +$string['editingmultichoice'] = "Çok seçimli soru düzenleme"; +$string['false'] = "Yanlýþ"; +$string['feedback'] = "Geribildirim"; +$string['filloutoneanswer'] = "En az bir muhtemel yanýtý doldurmalýsýnýz. Boþ yanýtlar deðerlendirilemez."; +$string['fillouttwochoices'] = "En az iki seçenek doldurmalýsýnýz. Boþ seçenekler deðerlendirilemez."; +$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'] = "Not ortalamasý"; +$string['gradehighest'] = "En yüksek not"; +$string['grademethod'] = "Not verme metodu"; +$string['guestsno'] = "Konuklar sýnavlarý göremez ve uygulayamazlar"; +$string['imagedisplay'] = "Gösterilecek resim"; +$string['introduction'] = "Tanýtým"; +$string['marks'] = "Ýþaretler"; +$string['multichoice'] = "Çok seçimli seçenek"; +$string['noanswers'] = "Yanýtlar seçilmedi!"; +$string['noattempts'] = "Bu sýnavda hiçbir uygulama yapýlmadý"; +$string['nomoreattempts'] = "Baþka uygulamaya izin verilmemiþtir"; +$string['noquestions'] = "Henüz bir soru eklenmemiþtir"; +$string['publish'] = "Yayýnla"; +$string['question'] = "Soru"; +$string['questioninuse'] = "Soru '\$a' halihazýrda kullanýlmaktadýr:"; +$string['questions'] = "Sorular"; +$string['questionname'] = "Soru adý"; +$string['quizavailable'] = "Sýnav þu tarihe kadar açýktýr: \$a"; +$string['quizclose'] = "Sýnavý kapat"; +$string['quizclosed'] = "Bu sýnav \$a tarihinde kapandý"; +$string['quizopen'] = "Sýnav aç"; +$string['quiznotavailable'] = "Sýnav þu tarihe kadar açýk deðildir: \$a"; +$string['random'] = "Rasgele set"; +$string['regrade'] = "Tüm uygulamalarý tekrar deðerlendir"; +$string['regradecomplete'] = "Tüm uygulamalarý tekrar deðerlendirildi"; +$string['regradecount'] = "\$a->attempt uygulamadan \$a->changed deðiþiklik deðerlendirildi"; +$string['rename'] = "Ad deðiþtir"; +$string['report'] = "Raporlar"; +$string['save'] = "Kaydet"; +$string['savegrades'] = "Notlarý kaydet"; +$string['savemyanswers'] = "Yanýtlarýmý kaydet"; +$string['savequiz'] = "Tüm sýnavý kaydet"; +$string['score'] = "Notlarý sýrala"; +$string['select'] = "Seç"; +$string['selectcategoryabove'] = "Yukarýdaki bir kategoriyi seçiniz"; +$string['shortanswer'] = "Kýsa Yanýt"; +$string['show'] = "Göster"; +$string['showfeedback'] = "Yanýtladýktan sonra geribildirimi göster?"; +$string['showcorrectanswer'] = "Geribildirimde doðru yanýtlarý göster?"; +$string['time'] = "Süre"; +$string['timetaken'] = "Geçen süre"; +$string['timecompleted'] = "Tamamlandý"; +$string['true'] = "Doðru"; +$string['truefalse'] = "Doðru/Yanlýþ"; +$string['type'] = "Yazýnýz"; +$string['viewallanswers'] = "\$a tamamlanmýþ sýnavlarý göster"; +$string['yourfinalgradeis'] = "Bu sýnav için final notunuz: \$a"; diff --git a/lang/tr/resource.php b/lang/tr/resource.php new file mode 100644 index 0000000000..50e10f8eac --- /dev/null +++ b/lang/tr/resource.php @@ -0,0 +1,29 @@ +Dosya Yöneticisini kullanýnýz."; +$string['notypechosen'] = "Bir tür seçmelisiniz. Geri düðmesini kullanarak tekrar deneyiniz."; +$string['resourcetype'] = "Kaynak türü"; +$string['resourcetype1'] = "Referans"; +$string['resourcetype2'] = "Web Sayfasý"; +$string['resourcetype3'] = "Yüklenmiþ Dosya"; +$string['resourcetype4'] = "Sade Metin"; +$string['resourcetype5'] = "Web Baðlantýsý"; +$string['resourcetype6'] = "HTML Metni"; + +?> diff --git a/lang/tr/survey.php b/lang/tr/survey.php new file mode 100644 index 0000000000..d54b2f93bc --- /dev/null +++ b/lang/tr/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'] = "Tamamlandý"; +$string['download'] = "Ýndir"; +$string['downloadexcel'] = "Verileri Excel spreadsheet olarak indir"; +$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'] = "Verileri plain text dosyasý olarak indir"; +$string['editingasurvey'] = "Anket düzenleme"; +$string['helpsurveys'] = "Farklý anket türleriyle ilgili yardým"; +$string['howlong'] = "Bu anketi tamamlamanýz ne kadar zamanýnýzý aldý?"; +$string['howlongoptions'] = "1 dakikadan az,1-2 dk,2-3 dk,3-4 dk,4-5 dk,5-10 dk,10 dakikadan çok"; +$string['ifoundthat'] = "I found that"; +$string['introtext'] = "Tanýtým metni"; +$string['ipreferthat'] = "Tercihim"; +$string['name'] = "Ad"; +$string['newsurveyresponses'] = "Yeni anket cevaplarý"; +$string['nobodyyet'] = "Henüz kimse bu anketi tamamlamadý"; +$string['notdone'] = "Henüz tamamlanmadý"; +$string['notes'] = "Özel çözümlemeleriniz ve notlarýnýz"; +$string['othercomments'] = "Baþka bir yorumunuz var mý?"; +$string['peoplecompleted'] = "Þu ana kadar \$a kiþi bu anketi tamamladý"; +$string['preferred'] = "Tercih"; +$string['preferredclass'] = "Sýnýf tercihi"; +$string['preferredstudent'] = "\$a seçildi"; +$string['question'] = "Soru"; +$string['questions'] = "Sorular"; +$string['questionsnotanswered'] = "Bazý çok seçimlik sorular yanýtlanmadý."; +$string['report'] = "Anket raporu"; +$string['scales'] = "Ölçekler"; +$string['savednotes'] = "Notlarýnýz kaydedildi"; +$string['scaleagree5'] = "Kesinlikle karþý,Oldukça karþý,Ne karþý ne de taraftar,Oldukça taraftar,Tamamen taraftar"; +$string['scaletimes5'] = "Hiçbir zaman,Nadiren,Ara sýra,Sýk sýk,Her zaman"; +$string['seemoredetail'] = "Ayrýntýlarý görmek için týklayýnýz"; +$string['selectedquestions'] = "Ölçekten seçilen sorular, tüm öðrenciler"; +$string['summary'] = "Özet"; +$string['surveycompleted'] = "Bu anketi tamamladýnýz. Aþaðýdaki grafikte sýnýf ortalamasýna göre sonuçlarýnýzýn özeti gösterilmektedir."; +$string['surveyname'] = "Anket adý"; +$string['surveysaved'] = "Anket kaydedildi"; +$string['surveytype'] = "Anket türü"; +$string['thanksforanswers'] = "Bu ankete katýldýðýnýz için teþekkür ederiz, \$a"; +$string['time'] = "Süre"; +$string['viewsurveyresponses'] = "\$a Anketi sonuçlarýný göster"; + +?>