]> git.mjollnir.org Git - moodle.git/commitdiff
*** empty log message ***
authorcompuproggy <compuproggy>
Fri, 9 May 2003 05:58:22 +0000 (05:58 +0000)
committercompuproggy <compuproggy>
Fri, 9 May 2003 05:58:22 +0000 (05:58 +0000)
lang/de/docs/files.php
lang/de/docs/upgrade.html
lang/de/help/emoticons.html [new file with mode: 0644]
lang/de/help/workshop/addingacomment.html [new file with mode: 0644]
lang/de/help/workshop/agreeassessments.html [new file with mode: 0644]
lang/de/help/workshop/editingacomment.html [new file with mode: 0644]
lang/de/quiz.php

index dae94d124eb1d40caf663c3ed00add33749a06ad..01c3a9142829f1011dbaf05e35f1e76dd4103ae9 100644 (file)
@@ -1,19 +1,20 @@
 <?PHP // $Id$
       // Names of the documentation files
 
-$string['intro.html'] = "Introduction";
-$string['background.html'] = "Background";
+$string['intro.html'] = "Einführung";
+$string['background.html'] = "Hintergrund";
 $string['features.html'] = "Features";
 $string['release.html'] = "Release Notes";
 $string['install.html'] = "Installation";
-$string['upgrade.html'] = "Upgrading";
+$string['upgrade.html'] = "Upgrade";
 $string['faq.html'] = "FAQ";
-$string['teacher.html'] = "Teacher Manual";
-$string['developer.html'] = "Developer Manual";
-$string['cvs.html'] = "Using CVS";
-$string['future.html'] = "Future";
-$string['credits.html'] = "Credits";
-$string['licence.html'] = "License";
+$string['teacher.html'] = "Lehrer-Anleitung";
+$string['developer.html'] = "Entwickler-Anleitung";
+$string['cvs.html'] = "Nutzung von CVS";
+$string['future.html'] = "Zukunft";
+$string['credits.html'] = "Danksagungen";
+$string['licence.html'] = "Licenz";
 
 
 ?>
+
index bfa6f6ddb6f90c20d9ba6293277331e8ef122dc2..93843e5a78efa76bfd1a686188a96f109cd7098e 100644 (file)
-<HEAD>\r
-    <TITLE>Moodle Docs: Upgrading</TITLE>\r
-       <LINK REL="stylesheet" HREF="../theme/standard/styles.php" TYPE="TEXT/CSS">\r
-    <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">\r
-</HEAD>\r
-\r
-<BODY BGCOLOR="#FFFFFF">\r
-<H2>Upgrading Moodle</H2>\r
-\r
-<p>Moodle is designed to upgrade cleanly from any earlier version to any later \r
-  version. </p>\r
-<p>When upgrading a Moodle installation you should follow these steps:</p>\r
-<h2>1. Backup important data</h2>\r
-<blockquote> \r
-  <p>Although it is not strictly necessary, it is always a good idea to make a \r
-    backup of any production system before a major upgrade, just in case you need \r
-    to revert back to the older version for some reason. In fact, it's a good \r
-    idea to automate your server to backup your Moodle installation daily, so \r
-    that you can skip this step.</p>\r
-  <p>There are three areas that need backing up:</p>\r
-  <blockquote> \r
-    <p><strong>1. The Moodle software directory itself</strong></p>\r
-    <blockquote> \r
-      <p>Make a separate copy of these files before the upgrade, so that you can \r
-        retrieve your config.php and any modules you have added like themes, languages \r
-        etc<strong><br>\r
-        </strong></p>\r
-    </blockquote>\r
-    <p><strong>2. Your data directory.</strong></p>\r
-    <blockquote> \r
-      <p>This is where uploaded content resides (such as course resources and \r
-        student assignments) so it is very important to have a backup of these \r
-        files anyway. Sometimes upgrades may move or rename directories within \r
-        your data directory.<strong><br>\r
-        </strong></p>\r
-    </blockquote>\r
-    <p><strong>3. Your database</strong></p>\r
-    <blockquote> \r
-      <p>Most Moodle upgrades will alter the database tables, adding or changing \r
-        fields. Each database has different ways to backup. One way of backing \r
-        up a MySQL database is to 'dump' it to a single SQL file. The following \r
-        example shows Unix commands to dump the database called &quot;moodle&quot;:</p>\r
-      <blockquote>\r
-        <p><font face="Courier New, Courier, mono">mysqldump moodle &gt; moodle-backup-2002-10-26.sql</font></p>\r
-      </blockquote>\r
-      <p>You can also use the &quot;Export&quot; feature in Moodle's &quot;Manage \r
-        Database&quot; web interface to do the same thing on all platforms.</p>\r
-    </blockquote>\r
-  </blockquote>\r
-</blockquote>\r
-<h2>&nbsp;</h2>\r
-<h2>2. Install the new Moodle software</h2>\r
-<blockquote> \r
-  <p><strong>Using a downloaded archive</strong></p>\r
-  <blockquote> \r
-    <p>Do not overwrite an old installation unless you know what you are doing \r
-      ... sometimes old files can cause problems in new installations. The best \r
-      way it to rename the current Moodle directory to something else, then unpack \r
-      the new Moodle archive into the old location.</p>\r
-    <blockquote> \r
-      <p><font face="Courier New, Courier, mono">mv moodle moodle.backup<br>\r
-        tar xvzf moodle-1.0.6.tgz</font></p>\r
-      </blockquote>\r
-    <p>Next, copy across your config.php and any other plugins such as custom \r
-      themes:</p>\r
-    <blockquote>\r
-      <p><font face="Courier New, Courier, mono">cp moodle.backup/config.php moodle<br>\r
-        cp -pr moodle.backup/theme/mytheme moodle/theme/mytheme</font></p>\r
-    </blockquote>\r
-  </blockquote>\r
-  <p><strong>Using CVS</strong></p>\r
-  <blockquote> \r
-    <p>If you are using CVS, just go into the Moodle root directory and update \r
-      to the new files:</p>\r
-    <blockquote> \r
-      <p><font face="Courier New, Courier, mono">cvs update -dP</font></p>\r
-    </blockquote>\r
-    <p>Make sure you use the &quot;d&quot; parameter to create new directories \r
-      if necessary, and the &quot;P&quot; parameter to prune empty directories.</p>\r
-    <p>If you have been editing Moodle files, watch the messages very closely \r
-      for possible conflicts. All your customised themes and non-standard plugins \r
-      will be untouched.</p>\r
-  </blockquote>\r
-  <p>&nbsp;</p>\r
-</blockquote>\r
-<h2>3. Finishing the upgrade</h2>\r
-<blockquote> \r
-  <p>The last step is to trigger the upgrade processes within Moodle.</p>\r
-  <p>To do this just visit <a target=_top href="../admin/index.php">the admin page of your \r
-    installation</a>.</p>\r
-  <blockquote> \r
-    <p><font face="Courier New, Courier, mono">http://example.com/moodle/admin</font></p>\r
-  </blockquote>\r
-  <p>It doesn't matter if you are logged in as admin or not.</p>\r
-  <p> Moodle will automatically detect the new version and perform all the database \r
-    or filesystem upgrades that are necessary. If there is anything it can't do \r
-    itself (very rare) then you will see messages telling you what you need to \r
-    do. </p>\r
-</blockquote>\r
-<p>&nbsp; </p>\r
-<p> Assuming all goes well (no error messages) then you can start using your new \r
-  version of Moodle and enjoy the new features!</p>\r
-<p>If you have trouble with the upgrade, visit <a target=_top href="http://moodle.com/">moodle.com</a> \r
-  and post on the <a target=_top href="http://moodle.com/mod/forum/view.php?id=28">Installation \r
-  Support Forum</a>.</p>\r
-<p>&nbsp;</p>\r
-<P>&nbsp;</P>\r
-<P ALIGN="CENTER"><FONT SIZE="1"><A HREF="." TARGET="_top">Moodle Documentation</A></FONT></P>\r
-<P ALIGN="CENTER"><FONT SIZE="1">Version: $Id$</FONT></P>\r
-\r
-</BODY>\r
+<HEAD>
+    <TITLE>Moodle Dokumentation: Upgrade</TITLE>
+       <LINK REL="stylesheet" HREF="../theme/standard/styles.php" TYPE="TEXT/CSS">
+    <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
+</HEAD>
+
+<BODY BGCOLOR="#FFFFFF">
+<H2> Moodle Upgrade</H2>
+
+<p>Moodle ist so designed, dass man problemlos von einer fr&uuml;heren Version 
+  auf eine sp&auml;tere Version 'upgraden' kann.</p>
+<p>Um ein Upgrade einer Moodle-Installation durchzuf&uuml;hren, sollte man folgende 
+  Schriite durchf&uuml;hren:</p>
+<h2>1. Datensicherung wichtiger Daten durchf&uuml;hren</h2>
+<blockquote> 
+  <p>Auch wenn es nicht unbedingt notwendig ist, ist es immer eine gute Idee, 
+    eine Datensicherung von einem System zu machen, bevor man ein Upgrade durchf&uuml;hrt, 
+    nur f&uuml;r den Fall, dass man aus irgendeinem Grund zu einer &auml;lteren 
+    Version zur&uuml;ckkehren m&ouml;chte. Tats&auml;chlich ist es sinnvoll, den 
+    Server so zu automatisieren, dass er t&auml;glich eine Datensicherung der 
+    Moodle-Installation durchf&uuml;hrt. Dann kann man diesen Schritt auslassen.</p>
+  <p>Es gibt drei Gebiete, die man sichern sollte:</p>
+  <blockquote>
+    <p><strong> 1. Das Moodle Systemverzeichnis</strong></p>
+    <blockquote> 
+      <p>Mache vor dem Upgrade eine separate Kopie von diesen Dateien, so dass 
+        du deine config.php und andere Module, die du hinzugef&uuml;gt hast, wie 
+        Themen, Sprachen usw., abrufen kannst.</p>
+    </blockquote>
+    <p><strong>2. Dein Datenverzeichnis.</strong></p>
+    <blockquote> 
+      <p>Dies ist dort, wo sich der hochgeladene Inhalt befindet (so wie Kurs 
+        die Kurs-Inhalte und Studentenarbeiten). Damit ist es sowieso sehr wichtig, 
+        von diesen Dateien eine Datensicherung zu haben. Manchmal k&ouml;nnen 
+        Upgrades Verzeichnisse deines Datenverzeichnisses verschieben oder umbenennen.</p>
+    </blockquote>
+    <p><strong>3. Deine Datenbank</strong></p>
+    <blockquote> 
+      <p>Die meisten Moodleupgrades werden die Datenbanktabellen &auml;ndern, 
+        indem Felder hinzugef&uuml;gt oder ver&auml;ndert werden. Jede Datenbank 
+        hat unterschiedliche methoden f&uuml;r eine Datensicherung. Ein Weg, eine 
+        MySQL-Datenbank zu sichern, ist, sie in eine einzelne SQL-Datei zu 'dumpen'. 
+        Das folgende Beispiel zeigt den Befehl (Unix und Windows), um die Datenbank 
+        &quot;moodle&quot; in die Datei moodle-backup-2002-10-26.sql zu dumpen.</p>
+      <blockquote> 
+        <p><font face="Courier New, Courier, mono">mysqldump moodle &gt; moodle-backup-2002-10-26.sql</font></p>
+      </blockquote>
+      <p>Du kannst ebenfalls das &quot;Export&quot;-Werkzeug in Moodles &quot;Datenbank 
+        verwalten&quot; Web-Interface nutzen, um die gleiche Sache f&uuml;r alle 
+        Plattformen durchzuf&uuml;hren.</p>
+      <p>&nbsp;</p>
+    </blockquote>
+  </blockquote>
+</blockquote>
+<h2>2. Installieren der neuen Moodle-Software</h2>
+<blockquote> 
+  <p><strong>Mit einem heruntergeladenen Archiv</strong></p>
+  <blockquote> 
+    <p>&Uuml;berschreibe nicht die alte Installtion, es sei denn, du wei&szlig;t, 
+      was du tust ... Manchmal k&ouml;nnen alte Dateien Probleme in der neuen 
+      Installation bewirken. Der beste Weg ist es, das aktuelle Moodle-Verzeichnis 
+      um zu benennen, und dann das neue Moodle-Archiv an die alte Stelle zu entpacken.</p>
+    <blockquote> 
+      <p><font face="Courier New, Courier, mono">mv moodle moodle.backup<br>
+        tar xvzf moodle-1.0.6.tgz</font></p>
+      </blockquote>
+    <p>Als n&auml;chstes kopiere deine config.php und alle anderen pers&ouml;nlichen 
+      Module wie Themen her&uuml;ber.</p>
+    <blockquote>
+      <p><font face="Courier New, Courier, mono">cp moodle.backup/config.php moodle<br>
+        cp -pr moodle.backup/theme/mytheme moodle/theme/mytheme</font></p>
+    </blockquote>
+  </blockquote>
+  <p><strong>Mit CVS</strong></p>
+  <blockquote> 
+    <p>Falls du CVS benutzt, gehe nur in das Moodle Wurzelvezeichnis und f&uuml;hre 
+      ein Update durch:</p>
+    <blockquote> 
+      <p><font face="Courier New, Courier, mono">cvs update -dP</font></p>
+    </blockquote>
+    <p>Gehe sicher, dass du den &quot;d&quot;-Parameter nutzt, um neue Verzeichnisse 
+      zu erstellen und den &quot;P&quot;-Parameter, um leere Verzeichnisse zu 
+      entfernen. </p>
+    <p>Solltest du Moodle-Dateien editiert haben, achte sorgf&auml;ltig auf die 
+      Mitteilungen wegen m&ouml;glicher Konflikte. All deine individuellen Themen 
+      und zus&auml;tzlichen Inhalte bleiben unber&uuml;hrt.</p>
+    <p>&nbsp;</p>
+  </blockquote>
+  </blockquote>
+<h2>3. Fertigstellen des Upgrades</h2>
+<blockquote> 
+  <p>Der letzte Schritt ist es, den Upgradeprozess innerhalb von Moodle auszul&ouml;sen.</p>
+  <p>Um das zu tun, besuche nur <a href="../admin/index.php">die admin Seite deiner 
+    Installation</a>.</p>
+  <blockquote> 
+    <p><font face="Courier New, Courier, mono">http://example.com/moodle/admin</font></p>
+  </blockquote>
+  <p>Es ist nicht wichtig, ob du als root angemeldet bist.</p>
+  <p>Moodle wird automatisch die neue Version entdecken und alle Datenbank- oder 
+    Dateisystemanpassungen durchf&uuml;hren, die notwendig sind. Sollte es irgendetwas 
+    geben, das nicht automatisch durchgef&uuml;hrt werden kann (sehr selten), 
+    dann wirst du Mitteilungen sehen, die dir sagen, was du zu tun hast.</p>
+</blockquote>
+<p>Angenommen, alles geht gut (keine Fehlermeldungen), kannst du beginnen, die 
+  neue Moodleversion zu nutzen und die neuen Features zu genie&szlig;en.</p>
+<p>Falls du Probleme mit dem Upgrade hast, besuche <a href="www.moodle.org">moodle.org</a> 
+  und poste in das <a target=_top href="http://moodle.org/mod/forum/view.php?id=28">Installation 
+  Support Forum</a>.</p>
+<p>&nbsp;</p>
+<P>&nbsp;</P>
+<P ALIGN="CENTER"><FONT SIZE="1"><A HREF="." TARGET="_top">Moodle Documentation</A></FONT></P>
+<P ALIGN="CENTER"><FONT SIZE="1">Version: $Id$</FONT></P>
+
+</BODY>
+
diff --git a/lang/de/help/emoticons.html b/lang/de/help/emoticons.html
new file mode 100644 (file)
index 0000000..97a5ee8
--- /dev/null
@@ -0,0 +1,120 @@
+<P ALIGN=CENTER><B>Using Smilies (emoticons)</B></P>
+
+<table border="1" align="center">
+  <tr valign="top">
+    <td>
+    <table border="0" align="center" cellpadding="5">
+    <tr>
+      <td><a href="javascript:inserttext(':-)')"><img border="0" hspace="10" src="pix/s/smiley.gif" width="15" height="15"></a></td>
+      <td>smile</td>
+      <td><font face="courier">:-)</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext(':-D')"><img alt border="0" hspace="10" src="pix/s/biggrin.gif" width="15" height="15"></a></td>
+      <td>big grin</td>
+      <td><font face="courier">:-D</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext(';-)')"><img alt border="0" hspace="10" src="pix/s/wink.gif" width="15" height="15"></a></td>
+      <td>wink</td>
+      <td><font face="courier">;-)</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext(':-/')"><img alt border="0" hspace="10" src="pix/s/mixed.gif" width="15" height="15"></a></td>
+      <td>mixed</td>
+      <td><font face="courier">:-/</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext('V-.')"><img alt border="0" hspace="10" src="pix/s/thoughtful.gif" width="15" height="15"></a></td>
+      <td>thoughtful</td>
+      <td><font face="courier">V-.</font></td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext(':-P')"><img alt border="0" hspace="10" src="pix/s/tongueout.gif" width="15" height="15"></a></td>
+      <td>tongue out</td>
+      <td><font face="courier">:-P</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext('B-)')"><img alt border="0" hspace="10" src="pix/s/cool.gif" width="15" height="15"></a></td>
+      <td>cool</td>
+      <td><font face="courier">B-)</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext('^-)')"><img alt border="0" hspace="10" src="pix/s/approve.gif" width="15" height="15"></a></td>
+      <td>approve</td>
+      <td><font face="courier">^-)</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext('8-)')"><img alt border="0" hspace="10" src="pix/s/wideeyes.gif" width="15" height="15"></a></td>
+      <td>wide eyes</td>
+      <td><font face="courier">8-)</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext('8-o')"><img alt border="0" hspace="10" src="pix/s/surprise.gif" width="15" height="15"></a></td>
+      <td>surprise</td>
+      <td><font face="courier">8-o</td>
+    </tr>
+    </table>
+  </td>
+  <td>
+    <table border="0" align="center" cellpadding="5">
+    <tr>
+      <td><a href="javascript:inserttext(':-(')"><img alt border="0" hspace="10" src="pix/s/sad.gif" width="15" height="15"></a></td>
+      <td>sad</td>
+      <td><font face="courier">:-(</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext('8-.')"><img alt border="0" hspace="10" src="pix/s/shy.gif" width="15" height="15"></a></td>
+      <td>shy</td>
+      <td><font face="courier">8-.</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext(':-I')"><img alt border="0" hspace="10" src="pix/s/blush.gif" width="15" height="15"></a></td>
+      <td>blush</td>
+      <td><font face="courier">:-I</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext(':-X')"><img alt border="0" hspace="10" src="pix/s/kiss.gif" width="15" height="15"></a></td>
+      <td>kisses</td>
+      <td><font face="courier">:-X</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext(':o)')"><img alt border="0" hspace="10" src="pix/s/clown.gif" width="15" height="15"></a></td>
+      <td>clown</td>
+      <td><font face="courier">:o)</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext('P-|')"><img alt border="0" hspace="10" src="pix/s/blackeye.gif" width="15" height="15"></a></td>
+      <td>black eye</td>
+      <td><font face="courier">P-|</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext('8-[')"><img alt border="0" hspace="10" src="pix/s/angry.gif" width="15" height="15"></a></td>
+      <td>angry</td>
+      <td><font face="courier">8-[</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext('xx-P')"><img alt border="0" hspace="10" src="pix/s/dead.gif" width="15" height="15"></a></td>
+      <td>dead</td>
+      <td><font face="courier">xx-P</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext('|-.')"><img alt border="0" hspace="10" src="pix/s/sleepy.gif" width="15" height="15"></a></td>
+      <td>sleepy</td>
+      <td><font face="courier">|-.</td>
+    </tr>
+    <tr>
+      <td><a href="javascript:inserttext('}-]')"><img alt border="0" hspace="10" src="pix/s/evil.gif" width="15" height="15"></a></td>
+      <td>evil</td>
+      <td><font face="courier">}-]</td>
+    </tr>
+    </table>
+</table>
+
+<P>When writing online, it can sometimes difficult to express emotion with plain text.
+   These little icons can help.  
+   
+<P>To insert these icons in your text: just click the icon above, or type the associated text code directly in your text.</P>
+
+<P>Note that the codes themselves are like little pictures - just turn your head to the left when looking at them</P>
+
diff --git a/lang/de/help/workshop/addingacomment.html b/lang/de/help/workshop/addingacomment.html
new file mode 100644 (file)
index 0000000..2a9a897
--- /dev/null
@@ -0,0 +1,20 @@
+<P ALIGN=CENTER><B>Adding a Comment</B></P>
+
+<P>Comments can be added to an assessment to:
+
+<OL>
+<LI>Add additional explaination or clarification to the assessment (by
+       the student who assessed the piece of work);
+<LI>Query the statements made in the assessment (by the student whose 
+       piece of work is being assessed;
+<LI>Try to resolve difficulties which may have arisen during the discussion
+       on the assessment (by the teacher);
+</OL>
+<P>The aim of the comments is to try either reach agreement on the 
+       current assessment or persuade the assessor to revise their assessment.
+       This discussion should be undertaken in a reasonable way. 
+       
+<P>If the work is reassessed then the old comments are discarded and 
+       are no longer shown with the new assessment.
+       
+</P>
diff --git a/lang/de/help/workshop/agreeassessments.html b/lang/de/help/workshop/agreeassessments.html
new file mode 100644 (file)
index 0000000..577a06b
--- /dev/null
@@ -0,0 +1,35 @@
+<P ALIGN=CENTER><B>Agreement of Assessments</B></P>
+
+<P>A workshop assignment can have either of these characteristics:
+
+<OL>
+<LI>In the submission and assessment phase when the students see the 
+       assessments made by other students there is no feedback 
+       from the students who submitted the work to the students who made
+       the assessment. There may be feedback from the teacher if the teacher
+       choses to grade the student assessments and then the teacher's grades and 
+       comments will be available to both the student whose work it is and 
+       to the student who made the assessment. There will be, however, 
+       be only one way feedback between peers on any one piece of work.
+       
+<LI>In the submission and assessment phase the students see the 
+       assessments made by other students and they are allowed to comment 
+       on these        assessments. They may agree or disagree with the (peer) assessment. 
+       If they agree with the assessment then the assessment stands and is 
+       used in the final calculations when determining the peer grade given to
+       the particular piece of work. If, however, they do not agree with an 
+       assessment the student who made the assessment is given an 
+       opportunity to revise it. The revise/disagree loop can continue until
+       either agreement is reached or the deadline is reached. An assessment
+       which is still in &quot;dispute&quot; when the deadline is reached
+       is not used in the final calculations. This gives two way feedback
+       between peers on each piece of work.
+</OL>
+<P>If the second method of working is chosen there is the option of switching off the display
+       of grades. That is, if this &quot;hide grades&quot; option is exercised, only the comments
+       in the assessment are shown to the student who work is being assessed.
+       The grades are shown only after agreement has been reached (on the 
+       comments alone). Note that this option only effective when agreement on 
+       assessments is required.
+
+</P>
diff --git a/lang/de/help/workshop/editingacomment.html b/lang/de/help/workshop/editingacomment.html
new file mode 100644 (file)
index 0000000..49de226
--- /dev/null
@@ -0,0 +1,6 @@
+<P ALIGN=CENTER><B>Editing a Comment</B></P>
+
+<P>As with other items there is a short period of time allowed when
+       the text of comments can be amended. The comment is not shown
+       on the assessment until this period has elapsed.
+</P>
index 007fc3fa3da8d99a446950404459e0a69b03db72..24969cf14f558023ecbaff45593b5fdb20718c5e 100644 (file)
-<?PHP // $Id$ 
-      // quiz.php - created with Moodle 1.0.8 dev (2002122301)
-
-
-$string['addquestions'] = "Fragen hinzufügen";
-$string['addquestionstoquiz'] = "Frage zu aktuellem Quiz hinzufügen";
-$string['addselectedtoquiz'] = "Auswahl zum Quiz hinzufügen";
-$string['allowreview'] = "Bericht erlauben";
-$string['alreadysubmitted'] = "Es sieht so aus, als hätten Sie diesen Versuch schon eingetragen";
-$string['alwaysavailable'] = "Immer verfügbar";
-$string['answer'] = "Antwort";
-$string['answerhowmany'] = "Eine oder mehrere Antworten?";
-$string['answersingleno'] = "Mehrere Antworten erlaubt";
-$string['answersingleyes'] = "Nur eine Antwort";
-$string['attempt'] = "Versuch \$a";
-$string['attemptfirst'] = "Erster Versuch";
-$string['attemptlast'] = "Letzter Versuch";
-$string['attemptquiznow'] = "Quiz jetzt probieren";
-$string['attempts'] = "Versuche";
-$string['attemptsallowed'] = "Erlaubte Versuche";
-$string['attemptsunlimited'] = "Unbegrenzte Versuche";
-$string['backtoquiz'] = "Zurück zur Quiz-Bearbeitung";
-$string['bestgrade'] = "Höchstnote";
-$string['blackboard'] = "Scwarzes Brett";
-$string['caseno'] = "Nein, Schreibweise ist unwichtig";
-$string['casesensitive'] = "Schreibweise";
-$string['caseyes'] = "Ja, Schreibweise muss stimmen";
-$string['categories'] = "Kategorien";
-$string['category'] = "Kategorie";
-$string['categoryinfo'] = "Kategorie-Information";
-$string['categorymove'] = "Die Kategorie '\$a->name' enthält \$a->count Fragen. Bitte wählen Sie eine andere Kategorie, um sie zu verschieben.";
-$string['categorymoveto'] = "In diese Kategorie verschieben";
-$string['choice'] = "Auswahl";
-$string['choices'] = "Verfügbare Auswahl";
-$string['correctanswer'] = "Richtige Antwort";
-$string['correctanswers'] = "Richtige Antworten";
-$string['createmultiple'] = "Mehrere Fragen erstellen";
-$string['createnewquestion'] = "Eine neue Frage anlegen";
-$string['custom'] = "Eigenes Format";
-$string['daysavailable'] = "Tage verfügbar";
-$string['default'] = "Standard";
-$string['defaultgrade'] = "Standard-Note der Frage";
-$string['defaultinfo'] = "Die Standard-Kategorie für diese Frage";
-$string['deletequestioncheck'] = "Sind Sie sich absolut sicher, dass Sie '\$a' löschen ,öchten?";
-$string['editcategories'] = "Kategorien bearbeiten";
-$string['editingmatch'] = "Eine zutreffende Frage bearbeiten";
-$string['editingmultichoice'] = "Eine Frage mit Mehrfachauswahl bearbeiten";
-$string['editingquestion'] = "Eine Frage bearbeiten";
-$string['editingquiz'] = "Ein Quiz bearbeiten";
-$string['editingrandom'] = "Eine zufällige Frage bearbeiten";
-$string['editingrandomsamatch'] = "Eine zufällige zutreffende Kurzantwort bearbeiten ";
-$string['editingshortanswer'] = "Kurzantwort der Frage bearbeiten";
-$string['editingtruefalse'] = "Ja/Nein-Frage bearbeiten";
-$string['false'] = "Falsch";
-$string['feedback'] = "Rückmeldung";
-$string['fileformat'] = "Dateiformat";
-$string['filloutoneanswer'] = "Sie müssen mindestens eine mögliche Antwort geben. Leere Antworten werden ignoriert.";
-$string['filloutthreequestions'] = "Sie müssen mindestens 2 Sachen auswählen. Leere Fragen werden nicht verwendet";
-$string['fillouttwochoices'] = "Sie müssen mindestens zwei mögliche Antwort geben. Leere Antworten werden ignoriert.";
-$string['fractionsaddwrong'] = "Ihre positiven gewählten Punktzahlen ergeben keine 100%%
-<BR>Statt dessen ergeben Sie \$a%%
-<BR>Möchten Sie zurück gehen und diese Frage korrigieren?";
-$string['fractionsnomax'] = "Eine dieser Antworten sollte 100%% sein, so dass
-<br>es möglich ist, die volle Punktzahl für diese Frage zu bekommen.
-<br>Möchten Sie zurück gehen und diese Frage korrigieren?";
-$string['gradeaverage'] = "Durchschnittsnote";
-$string['gradehighest'] = "Beste Note";
-$string['grademethod'] = "Bewertungsschema";
-$string['grades'] = "Noten";
-$string['guestsno'] = "Entschuldigung, aber Gäste können das Quiz nicht sehen oder probieren.";
-$string['imagedisplay'] = "Bild für die Anzeige";
-$string['importquestions'] = "Eine Datei aus einer Datei importieren";
-$string['introduction'] = "Einleitung";
-$string['marks'] = "Anmerkungen";
-$string['match'] = "Zutreffend";
-$string['matchanswer'] = "Zutreffende Antwort";
-$string['missingname'] = "Der Name der Frage fehlt";
-$string['missingquestiontext'] = "Der Text der Frage fehlt";
-$string['missingword'] = "Das Wortformat fehlt";
-$string['modulename'] = "Quiz";
-$string['modulenameplural'] = "Quiz";
-$string['multichoice'] = "Mehrfachauswahl";
-$string['noanswers'] = "Es wurden keine Antworten ausgewählt!";
-$string['noattempts'] = "Dieses Quiz hat keiner ausgefüllt";
-$string['nomoreattempts'] = "Kein Versuch mehr zugelassen";
-$string['noquestions'] = "Es wurden noch keine Fragen eingetragen";
-$string['noreview'] = "Sie dürfen dieses Quiz nicht überprüfen";
-$string['noreviewuntil'] = "Sie dürfen dieses Quiz bis \$a nicht überprüfen";
-$string['notenoughsubquestions'] = "Nicht genügend Unter-Fragen wurden definiert'<br>
-Möchten Sie zurück gehen und diese Frage korrigieren?";
-$string['publish'] = "Veröffentlichen";
-$string['qti'] = "IMS QTI Format";
-$string['question'] = "Frage";
-$string['questioninuse'] = "Die Frage '\$a' wird momentan benutzt:";
-$string['questionname'] = "Title der Frage";
-$string['questions'] = "Fragen";
-$string['quizavailable'] = "Dieses Quiz ist verfügbar bis: \$a";
-$string['quizclose'] = "Dieses Quiz schließen";
-$string['quizclosed'] = "Dieses Quiz schließt am \$a";
-$string['quiznotavailable'] = "Dieses Quiz ist nicht verfügbar bis: \$a";
-$string['quizopen'] = "Ein Quiz beginnen";
-$string['random'] = "Zufällig setzen";
-$string['randomcreate'] = "Eine Zufallsfrage erstellen";
-$string['randomsamatch'] = "Zufällig zutreffende Kurzantwort Frage";
-$string['randomsamatchcreate'] = "Einen ";
-$string['randomsamatchintro'] = "Wählen Sie für jede der folgenden Fragen die passende Antwort aus dem Menü aus";
-$string['randomsamatchnumber'] = "Nummer auszuwählender Fragen";
-$string['readytosend'] = "Sie sind dabei, Ihr ganzes Quiz zu senden, um benotet zu werden.  Sind Sie sicher, daß Sie weitermachen wollen?";
-$string['regrade'] = "Alle Versuche zurücksetzen";
-$string['regradecomplete'] = "Alle Versuche wurden zurückgesetzt";
-$string['regradecount'] = "\$a->changed von \$a->attempt Noten wurden geändert";
-$string['rename'] = "Umbenennen";
-$string['report'] = "Berichte";
-$string['save'] = "Speichern";
-$string['savegrades'] = "Noten speichern";
-$string['savemyanswers'] = "Meine Antworten speichern";
-$string['savequiz'] = "Dieses gesamte Quiz speichern";
-$string['score'] = "Grobe Punktzahl";
-$string['select'] = "Auswählen";
-$string['selectall'] = "Alles auswählen";
-$string['selectcategoryabove'] = "Wählen Sie eine obige Kategorie";
-$string['shortanswer'] = "Kurzantwort";
-$string['show'] = "Zeigen";
-$string['showcorrectanswer'] = "Nach dem Antworten richtige Antwort anzeigen?";
-$string['showfeedback'] = "Nach dem Antworten Rückmeldung anzeigen?";
-$string['shuffleanswers'] = "Antworten mischen";
-$string['shufflequestions'] = "Fragen mischen";
-$string['time'] = "Zeit";
-$string['timecompleted'] = "Beendet";
-$string['timetaken'] = "Verbrauchte Zeit";
-$string['toomanyrandom'] = "Die Anzahl der benötigten Zufallsfragen ist größer als die, die die Kategorie enthält! (\$a)";
-$string['true'] = "Wahr";
-$string['truefalse'] = "Wahr/Falsch";
-$string['type'] = "Typ";
-$string['viewallanswers'] = "Zeige \$a ausgefüllte Quiz";
-$string['webct'] = "WebCT Format";
-$string['yourfinalgradeis'] = "Ihre Gesamtnote für dieses Quiz ist \$a";
-
-?>
+<?PHP // $Id$ \r
+      // quiz.php - created with Moodle 1.0.8 dev (2002122301)\r
+\r
+\r
+$string['addquestions'] = "Fragen hinzufügen";\r
+$string['addquestionstoquiz'] = "Frage zu aktuellem Quiz hinzufügen";\r
+$string['addselectedtoquiz'] = "Auswahl zum Quiz hinzufügen";\r
+$string['allowreview'] = "Bericht erlauben";\r
+$string['alreadysubmitted'] = "Es sieht so aus, als hätten Sie diesen Versuch schon eingetragen";\r
+$string['alwaysavailable'] = "Immer verfügbar";\r
+$string['answer'] = "Antwort";\r
+$string['answerhowmany'] = "Eine oder mehrere Antworten?";\r
+$string['answersingleno'] = "Mehrere Antworten erlaubt";\r
+$string['answersingleyes'] = "Nur eine Antwort";\r
+$string['attempt'] = "Versuch \$a";\r
+$string['attemptfirst'] = "Erster Versuch";\r
+$string['attemptlast'] = "Letzter Versuch";\r
+$string['attemptquiznow'] = "Quiz jetzt probieren";\r
+$string['attempts'] = "Versuche";\r
+$string['attemptsallowed'] = "Erlaubte Versuche";\r
+$string['attemptsunlimited'] = "Unbegrenzte Versuche";\r
+$string['backtoquiz'] = "Zurück zur Quiz-Bearbeitung";\r
+$string['bestgrade'] = "Höchstnote";\r
+$string['blackboard'] = "Schwarzes Brett";\r
+$string['caseno'] = "Nein, Schreibweise ist unwichtig";\r
+$string['casesensitive'] = "Schreibweise";\r
+$string['caseyes'] = "Ja, Schreibweise muss stimmen";\r
+$string['categories'] = "Kategorien";\r
+$string['category'] = "Kategorie";\r
+$string['categoryinfo'] = "Kategorie-Information";\r
+$string['categorymove'] = "Die Kategorie '\$a->name' enthält \$a->count Fragen. Bitte wählen Sie eine andere Kategorie, um sie zu verschieben.";\r
+$string['categorymoveto'] = "In diese Kategorie verschieben";\r
+$string['choice'] = "Auswahl";\r
+$string['choices'] = "Verfügbare Auswahl";\r
+$string['correctanswer'] = "Richtige Antwort";\r
+$string['correctanswers'] = "Richtige Antworten";\r
+$string['createmultiple'] = "Mehrere Fragen erstellen";\r
+$string['createnewquestion'] = "Eine neue Frage anlegen";\r
+$string['custom'] = "Eigenes Format";\r
+$string['daysavailable'] = "Tage verfügbar";\r
+$string['default'] = "Standard";\r
+$string['defaultgrade'] = "Standard-Note der Frage";\r
+$string['defaultinfo'] = "Die Standard-Kategorie für diese Frage";\r
+$string['deletequestioncheck'] = "Sind Sie sich absolut sicher, dass Sie '\$a' löschen ,öchten?";\r
+$string['editcategories'] = "Kategorien bearbeiten";\r
+$string['editingmatch'] = "Eine Zuordnungsfrage bearbeiten";\r
+$string['editingmultichoice'] = "Eine Frage mit Mehrfachauswahl bearbeiten";\r
+$string['editingquestion'] = "Eine Frage bearbeiten";\r
+$string['editingquiz'] = "Ein Quiz bearbeiten";\r
+$string['editingrandom'] = "Eine zufällige Frage bearbeiten";\r
+$string['editingrandomsamatch'] = "Eine zufällige Kurzantwort-Zuordnung bearbeiten ";\r
+$string['editingshortanswer'] = "Kurzantwort der Frage bearbeiten";\r
+$string['editingtruefalse'] = "Ja/Nein-Frage bearbeiten";\r
+$string['false'] = "Falsch";\r
+$string['feedback'] = "Rückmeldung";\r
+$string['fileformat'] = "Dateiformat";\r
+$string['filloutoneanswer'] = "Sie müssen mindestens eine mögliche Antwort geben. Leere Antworten werden ignoriert.";\r
+$string['filloutthreequestions'] = "Sie müssen mindestens 2 Sachen auswählen. Leere Fragen werden nicht verwendet";\r
+$string['fillouttwochoices'] = "Sie müssen mindestens zwei mögliche Antwort geben. Leere Antworten werden ignoriert.";\r
+$string['fractionsaddwrong'] = "Ihre positiven gewählten Punktzahlen ergeben keine 100%%\r
+<BR>Statt dessen ergeben Sie \$a%%\r
+<BR>Möchten Sie zurück gehen und diese Frage korrigieren?";\r
+$string['fractionsnomax'] = "Eine dieser Antworten sollte 100%% sein, so dass\r
+<br>es möglich ist, die volle Punktzahl für diese Frage zu bekommen.\r
+<br>Möchten Sie zurück gehen und diese Frage korrigieren?";\r
+$string['gradeaverage'] = "Durchschnittsnote";\r
+$string['gradehighest'] = "Beste Note";\r
+$string['grademethod'] = "Bewertungsschema";\r
+$string['grades'] = "Noten";\r
+$string['guestsno'] = "Entschuldigung, aber Gäste können das Quiz nicht sehen oder probieren.";\r
+$string['imagedisplay'] = "Bild für die Anzeige";\r
+$string['importquestions'] = "Eine Datei aus einer Datei importieren";\r
+$string['introduction'] = "Einleitung";\r
+$string['marks'] = "Anmerkungen";\r
+$string['match'] = "Zuordnung";\r
+$string['matchanswer'] = "zugeordnete Antwort";\r
+$string['missingname'] = "Der Name der Frage fehlt";\r
+$string['missingquestiontext'] = "Der Text der Frage fehlt";\r
+$string['missingword'] = "Das Wortformat fehlt";\r
+$string['modulename'] = "Quiz";\r
+$string['modulenameplural'] = "Quiz";\r
+$string['multichoice'] = "Mehrfachauswahl";\r
+$string['noanswers'] = "Es wurden keine Antworten ausgewählt!";\r
+$string['noattempts'] = "Dieses Quiz hat keiner ausgefüllt";\r
+$string['nomoreattempts'] = "Kein Versuch mehr zugelassen";\r
+$string['noquestions'] = "Es wurden noch keine Fragen eingetragen";\r
+$string['noreview'] = "Sie dürfen dieses Quiz nicht überprüfen";\r
+$string['noreviewuntil'] = "Sie dürfen dieses Quiz bis \$a nicht überprüfen";\r
+$string['notenoughsubquestions'] = "Nicht genügend Unter-Fragen wurden definiert'<br>\r
+Möchten Sie zurück gehen und diese Frage korrigieren?";\r
+$string['publish'] = "Veröffentlichen";\r
+$string['qti'] = "IMS QTI Format";\r
+$string['question'] = "Frage";\r
+$string['questioninuse'] = "Die Frage '\$a' wird momentan benutzt:";\r
+$string['questionname'] = "Title der Frage";\r
+$string['questions'] = "Fragen";\r
+$string['quizavailable'] = "Dieses Quiz ist verfügbar bis: \$a";\r
+$string['quizclose'] = "Dieses Quiz schließen";\r
+$string['quizclosed'] = "Dieses Quiz schließt am \$a";\r
+$string['quiznotavailable'] = "Dieses Quiz ist nicht verfügbar bis: \$a";\r
+$string['quizopen'] = "Ein Quiz beginnen";\r
+$string['random'] = "Zufällig setzen";\r
+$string['randomcreate'] = "Eine Zufallsfrage erstellen";\r
+$string['randomsamatch'] = "Zufällige Kurzantwort-Zuordnungsfrage";\r
+$string['randomsamatchcreate'] = "Erzeuge zufällige Kurzantwort-Zuordnungsfragen";\r
+$string['randomsamatchintro'] = "Wählen Sie für jede der folgenden Fragen die passende Antwort aus dem Menü aus";\r
+$string['randomsamatchnumber'] = "Nummer auszuwählender Fragen";\r
+$string['readytosend'] = "Sie sind dabei, Ihr ganzes Quiz zu senden, um benotet zu werden.  Sind Sie sicher, daß Sie weitermachen wollen?";\r
+$string['regrade'] = "Alle Versuche zurücksetzen";\r
+$string['regradecomplete'] = "Alle Versuche wurden zurückgesetzt";\r
+$string['regradecount'] = "\$a->changed von \$a->attempt Noten wurden geändert";\r
+$string['rename'] = "Umbenennen";\r
+$string['report'] = "Berichte";\r
+$string['save'] = "Speichern";\r
+$string['savegrades'] = "Noten speichern";\r
+$string['savemyanswers'] = "Meine Antworten speichern";\r
+$string['savequiz'] = "Dieses gesamte Quiz speichern";\r
+$string['score'] = "Grobe Punktzahl";\r
+$string['select'] = "Auswählen";\r
+$string['selectall'] = "Alles auswählen";\r
+$string['selectcategoryabove'] = "Wählen Sie eine obige Kategorie";\r
+$string['shortanswer'] = "Kurzantwort";\r
+$string['show'] = "Zeigen";\r
+$string['showcorrectanswer'] = "Nach dem Antworten richtige Antwort anzeigen?";\r
+$string['showfeedback'] = "Nach dem Antworten Rückmeldung anzeigen?";\r
+$string['shuffleanswers'] = "Antworten mischen";\r
+$string['shufflequestions'] = "Fragen mischen";\r
+$string['time'] = "Zeit";\r
+$string['timecompleted'] = "Beendet";\r
+$string['timetaken'] = "Verbrauchte Zeit";\r
+$string['toomanyrandom'] = "Die Anzahl der benötigten Zufallsfragen ist größer als die, die die Kategorie enthält! (\$a)";\r
+$string['true'] = "Wahr";\r
+$string['truefalse'] = "Wahr/Falsch";\r
+$string['type'] = "Typ";\r
+$string['viewallanswers'] = "Zeige \$a ausgefüllte Quiz";\r
+$string['webct'] = "WebCT Format";\r
+$string['yourfinalgradeis'] = "Ihre Gesamtnote für dieses Quiz ist \$a";\r
+\r
+?>\r
+\r