diff --git a/assessment/libs/sagecell.html b/assessment/libs/sagecell.html index 822113d665..55aa6bc272 100644 --- a/assessment/libs/sagecell.html +++ b/assessment/libs/sagecell.html @@ -1,7 +1,38 @@

Macro Library sagecell

-

Sagecell integration documentation, Version 1.0, Jan 2018

+

Sagecell integration documentation, Version 2.0, Mar 2019

+
    +
  1. Integration via Macros in Question Common Control
  2. +
  3. Integration via JavaScript in Question Text
  4. +
+

Integration via Macros in Question Common Control

+

+This library provides functions to create SageCells and transfer their output into answerboxes. To use the library in a question, make sure to call +

+
loadlibrary("sagecell1");
+

+before calling the functions. +

+ +

sagecell

+

+sagecell(script) generates a SageCell with content script. +

+Usage example: $s=sagecell("1+1"), place $s in question text +

+

sagecellTransfer

+

+sagecellTransfer(script,questionNr,[label,partNr]) generates a SageCell with content script and a button with label (default: "Transfer"). Clicking the button transfers the content of the SageCell output into the answerbox. For multipart questions, partNr determines the index of the target answerbox. +

+

+Usage example: $s = sagecellTransfer("1+1",$thisq,"Use as Answer to Part 2",1), place $s in question text. +

+ +

Integration via HTML in Question Text

There is not need to actually load this macro library. This documentation describes how to set up your HTML to enable SageCell integration.

diff --git a/assessment/libs/sagecell.php b/assessment/libs/sagecell.php index 46d58651db..d29b2de62e 100644 --- a/assessment/libs/sagecell.php +++ b/assessment/libs/sagecell.php @@ -1,3 +1,53 @@ +//SageCell extension + +global $allowedmacros; +array_push($allowedmacros,"sagecell", "sagecellEssay", "sagecellTransfer", "sagecellEssayTransfer"); + +function sagecell($script) { + return "
".$script."
"; +} + +function sagecellEssay($script,$essayPart=-1) { + $ansPart = $essayPart < 0 ? '$answerbox' : '$answerbox['.$essayPart.']'; + return '
'."$ansPart".'
'; +} + +function sagecellTransfer($script,$q,$label="Transfer",$part=-1) { +if ($part < 0) { + $ref=$q-1; +} else { + $ref=$q*1000+$part; +} +$fns=""; +$btn=""; + +return "
".sagecell($script).$fns.$btn."
"; +} + +function sagecellEssayTransfer($script,$q,$essayPart,$part,$label="Transfer") { + $ref=$q*1000+$part; + $fns=""; +$btn=""; + +return "
".sagecellEssay($script,$essayPart).$fns.$btn."
"; +} +?> \ No newline at end of file diff --git a/assessment/libs/sagecell_vcrp.html b/assessment/libs/sagecell_vcrp.html new file mode 100644 index 0000000000..1c8efbbd01 --- /dev/null +++ b/assessment/libs/sagecell_vcrp.html @@ -0,0 +1,172 @@ + + +

Macro Library sagecell_vcrp

+

Sagecell integration documentation, Version 3.0, June 2019

+ +

+ This library provides functions to create SageCells and transfer their + output into answerboxes. To use the library in a question, make sure to + call +

+
loadlibrary("sagecell_vcrp");
+

+ before calling the functions. +

+ + + +

sagecell

+

+ sagecell([script,thisq,essayPart,sageName]) generates code + for a SageCell with content script which can be used in + Question Text. +

+

+ If the output produced by sage is to be reused as an answer, + thisq must be instantiated with $thisq. +

+

+ If the SageCell script edited by the student is to be inspected, it can be + saved as an answer to a question (part) of type essay. If the + script is the only expected answer, the question must be of type + essay and the parameter essayPart must be + instantiated with "essay". If the question is of type + multipart or conditional, + essayPart must be instantiated with the number n of + the essay part to be used for saving the script. Do not put + $answerbox[n] into the question text. +

+

+ If the script is not to be saved, essayPart should be + instantiated with "none", which is also it's default value. +

+

+ If the question uses more than one SageCells the output of which needs to + be accessed, they may be distinguished by the value of the parameter + sageName. +

+ +

sagecellButton

+

+ sagecellButton([label, part, format, sageName]) + generates code for a button to transfer SageCell output into an answerbox. + This code can be used in Question Text. +

+

+ The parameter label can be used to specify the text to be + shown on the button. In questions of type multipart or + conditional, the argument part must specify the + number n if a click on the button is to transfer the output of the + SageCell into $answerbox[n]. If the question doesn't have + parts, use "none" as value for part, which is + also the default. +

+

+ If the output is to be interpreted as a list or matrix, set + format to 'list' or + 'matrix' respectively. For matrix questions + $answersize must not be set in the question control code. + Note: Applying the matrix format to non-nmeric + matrices may yield weird results. In case of doubt use format + 'any' instead to let the student adapt the matrix syntax. +

+

+ If the question uses more than one SageCells the output of which needs to + be accessed, they may be distinguished by the value of the parameter + sageName. +

+ +

Use Cases

+

Just adding a SageCell

+ +
+
In Question Control:
+
$cell=sagecell()
+
In Question Text:
+
$cell
+
+ +

Adding a SageCell with Script

+
+
In Question Control:
+
+ + $script="x=var(x)
+ integral(sin(x),x)
+ "
+ $cell = sagecell($script) +
+
+
In Question Text:
+
$cell
+
+ +

+ Adding a SageCell and Button to Transfer SageCell Output (single part + question) +

+
+
In Question Control:
+
+ + $cell = sagecell("",$thisq)
+ $button=sagecellButton() +
+
+
In Question Text:
+
+ + $cell
+ $button $answerbox +
+
+
+ +

+ Adding a SageCell and Button to Transfer SageCell Output (multipart + question) +

+
+
In Question Control:
+
+ + $cell = sagecell("",$thisq)
+ $button=sagecellButton("Get Answer to Part 3",2) +
+
+
In Question Text:
+
+ + $cell
+ $button $answerbox[2] +
+
+
+ +

+ Getting a Numerical Matrix as Answer from Sage and Saving the Sage Script + in Part 0 +

+
+
In Question Control:
+
+ + $cell = sagecell("",$thisq,0)
+ $button=sagecellButton("Get Answer to Part 2",2,"matrix") +
+
+
In Question Text:
+
+ + $cell
+ $button $answerbox[2] +
+
+
+ + diff --git a/assessment/libs/sagecell_vcrp.php b/assessment/libs/sagecell_vcrp.php new file mode 100644 index 0000000000..77bb818f68 --- /dev/null +++ b/assessment/libs/sagecell_vcrp.php @@ -0,0 +1,60 @@ +function getSageOutput_$id (part=-1,format='any') { + var ref=$q-1; + if (part >= 0) + ref=$q*1000+part; + var iframe=$(\"#\"+'$cid').find('.sagecellframe')[0]; + var output=iframe.contentWindow.document.getElementsByClassName('sagecell_sessionOutput'); + if (output.length) { + var sageOutput=output[0].textContent; + if (format == 'list') { + var start=sageOutput.indexOf('['); + var end=sageOutput.lastIndexOf(']'); + if (start > -1 && end > -1) + sageOutput=sageOutput.substring(start+1,end); + } + if (format == 'matrix') { + sageOutput=sageOutput.replace(/ /g,','); + sageOutput=sageOutput.replace(/\[/g,'('); + sageOutput=sageOutput.replace(/\]/g,')'); + sageOutput=sageOutput.replace(/\)\s*\(/g,'),('); + sageOutput='['+sageOutput+']'; + } + $('input[id=\'tc'+ref+'\'],input[id=\'qn'+ref+'\']').val(sageOutput); + } else { + alert('Please evaluate cell'); + } + } +"; +if ($essayPart === 'none') { + return "
".$script."
".$fns."
"; +} else { + $ansPart = ($essayPart === "essay" ? '[AB]' : '[AB'.strval($essayPart).']'); + + return "
$ansPart
$fns
"; +} + +} + +function sagecellButton($label="Transfer",$part="none",$format='any',$id="sagecell") { + switch (strval($part)) { + case "none": + $parts=-1; + break; + case "essay": + $parts=-2; + break; + default: + $parts=$part; + } + return ""; +} + +?> \ No newline at end of file diff --git a/assessment/libs/terms.html b/assessment/libs/terms.html new file mode 100644 index 0000000000..99e3f2d73c --- /dev/null +++ b/assessment/libs/terms.html @@ -0,0 +1,90 @@ + + + + +

Macro Library terms

+

Library for testing the syntax of terms.

+

+

+

+ +

isSumOf

+

+ isSumOf(termString [,vars,sloppyString]) calculates the array of summands of the term given in + termString. If the term is not a sum, an array is returned having the given term as its only member. + The parameter vars is a comma-separated list of all variables in termString. It is optional + and defaults to 'x'.
If sloppyString contains '+' - which is the case by default - a difference t1-t2 is considered as a sum of t1 and -t2. +

+ +

isProductOf

+

+ isProductOf(termString [,vars,sloppyString]) calculates the array of factors of the term given in termString. If the term is not a product, an array is returned having the given term as its only member. + The parameter vars is a comma-separated list of all variables in termString. It is optional + and defaults to 'x'.
If sloppyString contains '*' - which is not the case by default - a quotient t1/t2 is considered + as a product of t1 and 1/t2. +

+ +

getPolynomialDegree

+

+ getPolynomialDegree(termString [,vars,pvar]) tests whether a term given in termString is a polynomial in a particular variable given in pvar which defaults to 'x'.

+

+ A polynomial, as understood here, is a sum of products of powers of the polynomial variable and terms not containing the polynomial variable. No particular order of the subterms is expected. +

+

The parameter vars is a comma-separated list of all variables in termString. It is optional and defaults to 'x'. +

+

The function returns an upper estimate of the degree of the polynomial resp. -1 if termString is not a polynomial. Note that the actual degree of the polynomial may be lower because some coefficients evaluate to 0. +

+

Usage example

+

+

+ loadlibrary('terms)
+ getPolynomialDegree('x^2-x^3sin(y)*x+3','x,y','x') // 4 +
+

+

isPolynomic

+

+ isPolynomic(termString [,vars,pvar]) tests whether a given term in the variable pvar, defaulting to 'x', can be obtained from this variable and and terms not containing this variable by addition, multiplication and power only. vars, defaulting to 'x', must contain all variables in termString. +

+

isInstanceOf

+

+ isInstanceOf(termString,templateString [,variableString,sloppyString]) tests whether the term in termString is an instance of one of the terms in templateString. templateString is a '|'-separated list of terms. The parameter variableString must be a ,-separated list of all variables occuring in termString or templateString. variableString defaults to "x,y,z". sloppyString is a list of + and * defaulting to '+'. If + resp. * is in this list, t1-t2 resp. t1/t2 may be handled as t1+(-t2) resp. t1*(1/t2) if this allows additional + matches. +

+

isInstanceOf returns the result of the match and, in case of success, the matching template and the matching instantiation of the template variables.

+

Usage example

+

+

+ + loadlibrary('terms') +
+ + $match = isInstanceOf('1+x-y','x+(y-z)|x+y+z','x,y,z') + +
+ gives +
+ + $match['result'] = true +
+ + $match['template'] = "x+y+z" +
+ + $match['instantiation']['x'] = "1" +
+ + $match['instantiation']['y'] = "x" +
+ + $match['instantiation']['z'] = "(-y)" + +
+

+ + diff --git a/assessment/libs/terms.php b/assessment/libs/terms.php new file mode 100644 index 0000000000..d19387e58f --- /dev/null +++ b/assessment/libs/terms.php @@ -0,0 +1,401 @@ +term = $parser->parse($string); + $this->parser = $parser; + } + + public function getTerm() { + return $this->term; + } + // Getting arguments of top operator as Arrays + public function getArgs($term = null) { + if ($term === null) { + $term = $this->term; + } + $args=[]; + switch ($term['type']) { + case 'operator': + if (array_key_exists('left',$term)) { + array_push($args,$term['left']); + } + if (array_key_exists('right',$term)) { + array_push($args,$term['right']); + } + break; + case 'function': + if (array_key_exists('input',$term)) { + $args=[$term['input']]; + } + break; + default: + } + return $args; + } + + // getting list of variables actually occuring in term + public function getVariables($term = null) { + if ($term === null) { + $term=$this->term; + } + $vars=[]; + if ($term['type'] == 'variable') { + return [$term['symbol']]; + } else { + $args=$this->getArgs($term); + for ($i=0; $igetVariables($args[$i])); + } + } + return array_unique($vars); + } + + private function neg($t) { + return ['type' => 'operator', 'symbol' => '~', 'left' => $t]; + } + + private function diff2Sum($t) { + if ($t['symbol'] == '-') { + $negRight=($t['right']['symbol'] == '~' ? $t['right']['left'] : $this->neg($t['right'])); + return ['type' => 'operator', 'symbol' => '+', 'left' => $t['left'], 'right' => $negRight]; + } else return $t; + } + + private function inv($t) { + if ($t['symbol'] == '/') + return ['type' => 'operator', 'symbol' => '/', 'left' => $t['right'], 'right' => $t['left']]; + else + return ['type' => 'operator', 'symbol' => '/', 'left' => ['type' => 'number', 'symbol' => '1'], 'right' => $t]; + } + + private function quot2Prod($t) { + if ($t['symbol'] == '/') { + return ['type' => 'operator', 'symbol' => '*', 'left' => $t['left'], 'right' => $this->inv($t['right'])]; + } else return $t; + } + + public function isSumOf($term = null, $sloppy='+') { + if ($term === null) { + $term = $this->term; + } + $args=[]; + $op=$term['symbol']; + switch ($op) { + case '+': + $args=$this->isSumOf($term['left'],$sloppy); + return array_merge($args,$this->isSumOf($term['right'],$sloppy)); + break; + case '-': + if (strpos($sloppy,'+') !== false) { + $args=$this->isSumOf($term['left'],$sloppy); + $right=$this->neg($term['right'],$sloppy); + $args[] = $this->toString($right); + return $args; + } else + return [$this->toString($term)]; + break; + default: + return [$this->toString($term)]; + } + } + + public function isProductOf($term = null, $sloppy='') { + if ($term === null) { + $term = $this->term; + } + $args=[]; + $op=$term['symbol']; + switch ($op) { + case '*': + $args=$this->isProductOf($term['left'],$sloppy); + return array_merge($args,$this->isProductOf($term['right'],$sloppy)); + break; + case '/': + if (strpos($sloppy,'*') !== false) { + $args=$this->isProductOf($term['left'],$sloppy); + $right=$this->inv($term['right']); + $args[] = $this->toString($right); + return $args; + } else + return [$this->toString($term)]; + break; + default: + return [$this->toString($term)]; + } + return [$this->toString($term)]; + } + + public function toString($term = null) { + if ($term === null) { + $term = $this->term; + } + switch ($term['type']) { + case 'number': + case 'variable': + return $term['symbol']; + break; + case 'operator': + if ($term['symbol'] == '~') { + return '(-'.$this->toString($term['left']).')'; + } + $sl=''; + $sr=''; + if (array_key_exists('left',$term)) { + $sl='('.$this->toString($term['left']).')'; + } + if (array_key_exists('right',$term)) { + $sr='('.$this->toString($term['right']).')'; + } + return $sl.$term['symbol'].$sr; + break; + case 'function': + if (array_key_exists('input',$term)) { + return $term['symbol'].'('.$this->toString($term['input']).')'; + } + break; + default: + return "Unhandled ".$term['symbol']; + } + } + + // Getting degree of sums of products of constants and powers of veriables + public function getPolyDegree($var='x',$term=null) { + if ($term === null) { + $term = $this->term; + } + $op = $term['symbol']; + if ($op == '+' || $op == '-' || $op == '~') { + $dl=$this->getPolyDegree($var,$term['left']); + if ($dl == -1) return -1; + $dr=0; + if (array_key_exists('right', $term)) { + $dr=$this->getPolyDegree($var,$term['right']); + if ($dr == -1) return -1; + } + return ($dl < $dr ? $dr : $dl); + } else { + return $this->getMonoDegree($var, $term); + } + } + + /** + * Getting degree of products of constants and powers of polynomial veriable + * Note that coefficients are not evaluated + * par $var - polynomial variable, $term - term to be tested + * ret - Degree of polynomial or -1 if $term is not a polynomial + */ + private function getMonoDegree($var='x',$term=null) { + if ($term === null) { + $term = $this->term; + } + if ($term['symbol'] == $var) { + return 1; + } + if ($term['symbol'] == '*') { + $dl=$this->getMonoDegree($var,$term['left']); + if ($dl == -1) return -1; + $dr=$this->getMonoDegree($var,$term['right']); + if ($dr == -1) return -1; + return $dl + $dr; + } + if ($term['symbol'] == '^') { + if ($term['left']['symbol'] == $var) { + $v=(float)$term['right']['symbol']; + if (fmod($v,1) === 0.0 && $v >= 0) { + return $term['right']['symbol']; + } else { + return -1; + } + } + } + if (! in_array($var, $this->getVariables($term))) return 0; + return -1; + } + + // Testing whether term is in polynomial ring in variable + public function isPolynomic($var='x',$term = null) { + if ($term === null) { + $term = $this->term; + } + switch ($term['type']) { + case 'variable': + case 'number': + return true; + break; + case 'function': + case 'operator': + $args=$this->getArgs($term); + switch ($term['symbol']) { + case '^': + if ($term['right']['type'] == 'number' && $this->isPolynomic($var,$args[0])) { + $v=(float)$term['right']['symbol']; + if (fmod($v,1) === 0.0 && $v >= 0) { + return true; + } + return false; + } else {return false;} + break; + case '+': + case '-': + case '~': + case '*': + foreach ($args as $a) { + if (! $this->isPolynomic($var,$a)) { + return false; + } + } + return true; + break; + default: + if (! in_array($var, $this->getVariables($term))) { + return true; + } else { + return false; + } + } + break; + default: return false; + } + } + + public function instanceOf($template, $sloppy='+',$term=null,$inst=[]) { + if ($term === null) $term=$this->term; + if ($template['type'] == 'variable') { + $x=$template['symbol']; + $termString=$this->toString($term); + if ($x == 'pi' || $x == 'e') { + if ($x == $termString) + return ['result'=>true, 'instantiation'=>[]]; + else + return ['result'=> false]; + } + if (array_key_exists($x,$inst)) { + if ($inst[$x] != $termString) { + return ['result'=>false]; + } + } else {$inst[$x]=$termString;} + return ['result'=>true,'instantiation'=>$inst]; + } + if ($term['symbol'] == $template['symbol']) { + if (array_key_exists('left',$term) & array_key_exists('left',$template)) { + $left = $this->instanceOf($template['left'],$sloppy,$term['left'],$inst); + if ($left['result']) { + foreach ($left['instantiation'] as $var=>$value) { + if (array_key_exists($var,$inst) && $inst[$var] != $value) + return ['result'=>false]; + else + $inst[$var]=$value; + } + } else return ['result' => false]; + } + if (array_key_exists('right',$term) & array_key_exists('right',$template)) { + $right = $this->instanceOf($template['right'],$sloppy,$term['right'],$inst); + if ($right['result']) { + foreach ($right['instantiation'] as $var=>$value) { + if (array_key_exists($var,$inst) && $inst[$var] != $value) + return ['result'=>false]; + else + $inst[$var]=$value; + } + } else return ['result'=>false]; + } + return ['result'=>true,'instantiation'=>$inst]; + } else { + if (strpos($sloppy,'+') !== false) { + if ($term['symbol'] == '-' && $template['symbol'] == '+') + return $this->instanceOf($template,$sloppy,$this->diff2Sum($term),$inst); + if ($term['symbol'] == '+' && $template['symbol'] == '-') + return $this->instanceOf($this->diff2Sum($template),$sloppy,$term,$inst); + if ($template['symbol'] == '~') + return $this->instanceOf($template['left'],$sloppy,$this->neg($term)); + } + if (strpos($sloppy,'*') !== false) { + if ($term['symbol'] == '/' && $template['symbol'] == '*') + return $this->instanceOf($template,$sloppy,$this->quot2Prod($term),$inst); + if ($term['symbol'] == '*' && $template['symbol'] == '/') + return $this->instanceOf($this->quot2Prod($template),$sloppy,$term,$inst); + } + + } + return ['result' => false]; + } +} + +/** + * isSumOf calculates the array of summands of the term given in $termString + * @param string $termString - the string containing the term to be tested + * @param string $vars - comma-separated list of variables in $termString + * @param string $sloppy - if it contains +, t1-t2 is handled as t1+(-t2) + * @return array array of summands + */ +function isSumOf($termString,$vars='x',$sloppy='+') { + $t = new Term($termString,$vars); + return $t->isSumOf(null,$sloppy); +} + +/** + * isProductOf calculates the array of factors of the term given in $termString + * @param string $termString - the string containing the term to be tested + * @param string $vars - comma-separated list of variables in $termString + * @param string $sloppy - if it contains *, t1/t2 is handled as t1*(1/t2) + * @return array array of factors + */ +function isProductOf($termString,$vars='x',$sloppy='') { + $t = new Term($termString,$vars); + return $t->isProductOf(null,$sloppy); +} + +/** + * isPolynomic tests whether a given term in the variable $pvar can be obtained from this variable and terms not containing this variable by addition, multiplication and power only. + * @param string $termString -String containing term to be tested + * @param string $vars - all variables in $termstring as comma-separated list + * @return boolean indicates whether the given term is in the respective polynomial ring + */ +function isPolynomic($termString,$vars='x',$pvar='x') { + $t = new Term($termString,$vars); + return $t->isPolynomic($pvar); +} + +/** + * getPolynomialDegree tests whether a given term is a polynomial in a particular variable + * A polynomial as understood here, is a sum of products of powers of the polynomial variable + * and terms not containing the polynomial variable. + * No particular order of the subterms is expected. + * @param string $termstring - String containing the term to be tested + * @param string $vars - list of all variables occuring in $termstring. Optional, default is 'x' + * @param string $pvar - variable of the polynomial. Optional, default is 'x' + * @return number Degree of the polynomial, -1 if $termstring is not a polynomial + */ +function getPolynomialDegree($termString,$vars='x',$pvar='x') { + $t = new Term($termString,$vars); + return $t->getPolyDegree($pvar); +} + +/** + * isInstanceOf Tests whether the term in $termString is an instance of one of the terms in $templateString + * @param string $termString String containing term to be tested + * @param string $templateString '|'-separated list of templates + * @param string $vars List of variables occuring $termString and $templateString. Optional, deafults to 'x' + * @param string $sloppy - list of operators +,*. If + resp. * is in this list, t1-t2, resp. t1/t2 may be handled as t1+~t2 resp. t1*(1/t2) if this allows additional matches. + * @return array 'result' => true or false, indicating success of instantiation, + * if 'result' is true, 'instantiation' => array containing variable => string with instance of variable + * if 'result' is true, 'template' => first template which matched successfully + */ +function isInstanceOf($termString,$templateString,$vars='x,y,z',$sloppy='+') { + $term = new Term($termString,$vars); + $templates=explode('|',$templateString); + foreach ($templates as $template) { + $templateTerm = new Term($template,$vars); + $instTest=$term->instanceOf($templateTerm->getTerm(),$sloppy); + if ($instTest['result']) { + $instTest['template']=trim($template); + return $instTest; + } + } + return ['result'=> false]; +} diff --git a/i18n/de.mo b/i18n/de.mo new file mode 100644 index 0000000000..457da33ef7 Binary files /dev/null and b/i18n/de.mo differ diff --git a/i18n/de.po b/i18n/de.po index a150126226..ec164773af 100644 --- a/i18n/de.po +++ b/i18n/de.po @@ -1,1152 +1,1786 @@ -# German translations for IMathAS. -# Copyright (C) 2014-2016 -# This file is distributed under the same license as the IMathAS package. -# Richard Schütz , 2014. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: 0.4\n" +"Project-Id-Version: IMathAS German V200123\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-04 16:36+0200\n" -"PO-Revision-Date: 2017-03-08 11:57+0200\n" -"Last-Translator: Stefan Bäcker \n" -"Language: Deutsch\n" +"POT-Creation-Date: 2020-01-23 19:49+0100\n" +"PO-Revision-Date: 2020-01-23 20:43+0100\n" +"Last-Translator: \n" +"Language-Team: Ingo Dahn, dahn@vcrp.de\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.4\n" +"X-Poedit-Basepath: ..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Gtranslator 2.91.6\n" +"X-Poedit-SearchPath-0: .\n" -#: course/courseshowitems.php:321 course/courseshowitems.php:322 -msgid " Collapsed. " -msgstr ". eingeklappt. " +#: DEembedq.php:171 OEAembedq.php:314 assessment/showtest.php:292 +#: assessment/showtest.php:1925 assessment/showtest.php:1969 +#: assessment/showtest.php:2311 assessment/showtest.php:2653 +#: assessment/showtest.php:2740 assessment/showtest.php:2942 +#: javascript/livepoll.js:123 multiembedq.php:188 multiembedq.php:284 +msgid "Submit" +msgstr "Absenden" -#: course/courseshowitems.php:656 course/courseshowitems.php:657 -msgid " LatePass Allowed" -msgstr " Verspätetes Einreichen erlaubt" +#: DEembedq.php:234 OEAembedq.php:371 embedq.php:265 +#, php-format +msgid "%1$s out of %2$s" +msgstr "%1$s von %2$s" -#: course/courseshowitems.php:317 course/courseshowitems.php:318 -msgid " as Folder. " -msgstr " als Ordner. " +#: DEembedq.php:256 DEembedq.php:260 OEAembedq.php:393 OEAembedq.php:397 +#: assess2/displayq3.php:8170 assess2/questions/QuestionHtmlGenerator.php:1009 +#: assess2/questions/answerboxhelpers.php:568 assessment/displayq2.php:8010 +#: assessment/testutil.php:437 assessment/testutil.php:441 +#: assessment/testutil.php:972 assessment/testutil.php:990 +#: assessment/testutil.php:1102 assessment/testutil.php:1118 +#: course/drillassess.php:513 course/drillassess.php:517 +#: course/quickdrill.php:481 course/quickdrill.php:485 embedq.php:287 +#: embedq.php:291 +msgid "Correct" +msgstr "Richtig" -#: course/courseshowitems.php:319 course/courseshowitems.php:320 -msgid " as TreeReader. " -msgstr " als Baumansicht. " +#: DEembedq.php:258 OEAembedq.php:395 assess2/displayq3.php:8168 +#: assess2/questions/QuestionHtmlGenerator.php:1005 +#: assess2/questions/answerboxhelpers.php:566 assessment/displayq2.php:8008 +#: assessment/testutil.php:439 assessment/testutil.php:974 +#: assessment/testutil.php:992 assessment/testutil.php:1104 +#: assessment/testutil.php:1120 course/drillassess.php:515 +#: course/quickdrill.php:483 embedq.php:289 +msgid "Incorrect" +msgstr "Falsch" -#: course/courseshowitems.php:625 course/courseshowitems.php:626 -msgid " second(s)" -msgstr " Sekunde(n)" +#: DEembedq.php:262 OEAembedq.php:399 assess2/displayq3.php:8174 +#: assess2/questions/QuestionHtmlGenerator.php:1017 +#: assess2/questions/answerboxhelpers.php:572 assessment/displayq2.php:8014 +#: assessment/testutil.php:443 assessment/testutil.php:976 +#: assessment/testutil.php:994 assessment/testutil.php:1106 +#: assessment/testutil.php:1122 course/drillassess.php:519 +#: course/quickdrill.php:487 embedq.php:293 +msgid "Partially correct" +msgstr "Teilweise richtig" -#: course/courseshowitems.php:1782 course/courseshowitems.php:1829 -#: course/courseshowitems.php:1876 course/courseshowitems.php:1923 -#: course/courseshowitems.php:1783 course/courseshowitems.php:1830 -#: course/courseshowitems.php:1877 course/courseshowitems.php:1924 +#: DEembedq.php:269 OEAembedq.php:406 embedq.php:300 #, php-format -msgid " showing %1$s until %2$s" -msgstr " wird angezeigt %1$s bis %2$s" +msgid "%1$s out of %2$s (parts: %3$s)" +msgstr "%1$s von %2$s (Teile: %3$s)" -#: course/courseshowitems.php:1776 course/courseshowitems.php:1823 -#: course/courseshowitems.php:1870 course/courseshowitems.php:1917 -#: course/courseshowitems.php:1777 course/courseshowitems.php:1824 -#: course/courseshowitems.php:1871 course/courseshowitems.php:1918 -#, php-format -msgid " showing until %s" -msgstr " wird angezeigt bis %s" +#: actions.php:204 actions.php:544 +msgid "Automated new enrollment notice" +msgstr "Automatische Benachrichtigung über Neueinschreibung" -#: assessment/testutil.php:774 -#, php-format -msgid "%d available on this attempt." -msgstr "%d verfügbar bei diesem Versuch" +#: actions.php:205 actions.php:545 +msgid "" +"This is an automated system message letting you know this student just " +"enrolled in your course" +msgstr "" +"Dies ist eine automatische Benachrichtigung, dass sich dieser Student in " +"Ihren Kurs eingeschrieben hat" -#: assessment/showtest.php:831 assessment/showtest.php:1054 -#: assessment/showtest.php:1211 -#, php-format -msgid "%s added to group, overwriting existing attempt." -msgstr "%s zu Gruppe hinzugefügt, überschreibe existierenden Versuch." +#: actions.php:254 +msgid "The email address on record for this username is invalid." +msgstr "Die für diesen Nutzer gespeicherte eMail-Adresse ist ungültig." -#: assessment/showtest.php:841 assessment/showtest.php:1064 -#: assessment/showtest.php:1227 -#, php-format -msgid "%s added to group." -msgstr "%s zu Gruppe hinzugefügt." +#: actions.php:256 +msgid "Contact your teacher for help resetting your password." +msgstr "" +"Wenden Sie sich an Ihren Dozenten, um Hilfe beim Zurücksetzen Ihres " +"Kennworts zu erhalten." -#: assessment/showtest.php:811 assessment/showtest.php:1034 -#: assessment/showtest.php:1186 -#, php-format -msgid "%s already has a group. No change made" -msgstr "%s hat bereits eine Gruppe. Keine Änderungen vorgenommen" +#: actions.php:258 +msgid "Contact the system administrator for help resetting your password:" +msgstr "" +"Wenden Sie sich an den Systemadministrator, um Hilfe beim Zurücksetzen Ihres " +"Kennworts zu erhalten:" + +#: actions.php:285 +msgid " Password Reset Request" +msgstr " Anforderung für das Setzen eines neuen Passworts" + +#: actions.php:324 +msgid "Invalid code" +msgstr "Ungültiger Code" + +#: actions.php:358 +msgid " Username Request" +msgstr " Anforderung von Benutzernamen" + +#: actions.php:414 actions.php:752 +msgid "This is an automated message. Do not reply to this email." +msgstr "" +"Dies ist eine automatisch erzeugte Nachricht. Antworten Sie nicht auf diese " +"e-Mail." -#: loginpage.php:116 loginpage.php:118 loginpage.php:117 +#: actions.php:415 actions.php:753 #, php-format +msgid "Hi, your account details on %s were recently changed." +msgstr "Hallo, Ihre Kontodaten auf %s wurden kürzlich geändert." + +#: actions.php:416 actions.php:758 +msgid "Your password was changed." +msgstr "Ihr Passwort wurde geändert." + +#: actions.php:417 actions.php:760 +msgid "If this was you, you can disregard this email." +msgstr "Wenn Sie dies waren, können Sie diese E-Mail ignorieren." + +#: actions.php:418 actions.php:761 msgid "" -"%s is a web based mathematics assessment and course management platform." +"If you did not make these changes, please log into your account and correct " +"the changes and change your password." msgstr "" -"%s ist ein webbasiertes System für Mathematikaufgaben und Kursverwaltung." +"Wenn Sie diese Änderungen nicht vorgenommen haben, loggen Sie sich bitte in " +"Ihr Konto ein, korrigieren Sie die Änderungen und ändern Sie Ihr Passwort." -#: loginpage.php:133 loginpage.php:135 loginpage.php:134 -#, php-format -msgid "%s is powered by %s" -msgstr "%s wird bereitgestellt von %s" +#: actions.php:430 actions.php:774 +msgid "If you are unable to log into your account, use the following link." +msgstr "" +"Wenn Sie sich nicht bei Ihrem Konto anmelden können, verwenden Sie den " +"folgenden Link." -#: course/gradebook.php:742 course/gradebook.php:1173 -msgid "(Not Counted)" -msgstr "(nicht gewertet)" +#: actions.php:432 actions.php:776 admin/userreportdetails.php:288 +msgid "Reset Password" +msgstr "Passwort zurücksetzen" -#: course/courseshowitems.php:696 course/courseshowitems.php:697 -#, php-format -msgid ", Review until %s" -msgstr ", überprüfen bis %s" +#: actions.php:435 actions.php:780 +msgid "Alert:" +msgstr "Warnung:" -#: assessment/displayq2.php:682 assessment/displayq2.php:935 -#: assessment/displayq2.php:968 -#, php-format -msgid ", accurate to %d decimal places" -msgstr ", auf %d Nachkommastellen genau" +#: actions.php:435 actions.php:780 +msgid "Account Activity" +msgstr "Aktivität der Kennung" -#: course/courseshowitems.php:1725 course/courseshowitems.php:1726 +#: actions.php:755 #, php-format -msgid ", review until %s" -msgstr ", Überprüfung bis %s" +msgid "Your email address was changed to %s." +msgstr "Ihre eMail-Adresse wurde in %s geändert." + +#: admin/actions.php:35 admin/forms.php:53 admin/groupreportdetails.php:183 +#: admin/userreportdetails.php:25 admin/userreports.php:46 +#: admin/userreports.php:64 admin/userreports.php:76 admin/userreports.php:115 +#: admin/userreports.php:119 admin/userreports.php:120 index.php:384 +#: util/listnewteachers.php:113 +msgid "User Reports" +msgstr "Bericht über Benutzer" + +#: admin/actions.php:37 admin/actions.php:39 admin/addremoveteachers.php:153 +#: admin/addremoveteachers.php:155 admin/addremoveteachers.php:157 +#: admin/admin2.php:17 admin/admin2.php:35 admin/admin2.php:53 +#: admin/admin2.php:79 admin/admin2.php:119 admin/admin2.php:124 +#: admin/diagonetime.php:23 admin/diagonetime.php:28 admin/diagonetime.php:34 +#: admin/diagsetup.php:22 admin/diagsetup.php:27 admin/diagsetup.php:33 +#: admin/forms.php:51 admin/forms.php:55 admin/forms.php:57 +#: admin/groupreportdetails.php:16 admin/listdiag.php:72 +#: admin/transfercourse.php:121 admin/transfercourse.php:123 +#: admin/transfercourse.php:125 admin/userdetails.php:16 +#: admin/userdetails.php:23 admin/userlti.php:92 admin/userreportdetails.php:17 +#: admin/userreports.php:17 +msgid "Admin" +msgstr "Administrator" + +#: admin/actions.php:37 admin/addremoveteachers.php:155 +#: admin/diagonetime.php:29 admin/diagsetup.php:28 admin/forms.php:55 +#: admin/listdiag.php:74 admin/transfercourse.php:123 admin/userlti.php:93 +msgid "User Details" +msgstr "Benutzer-Details" + +#: admin/actions.php:39 admin/addremoveteachers.php:157 +#: admin/diagonetime.php:35 admin/diagsetup.php:34 admin/forms.php:57 +#: admin/listdiag.php:76 admin/transfercourse.php:125 admin/userdetails.php:25 +msgid "Group Details" +msgstr "Gruppendetails" + +#: admin/addcourse.php:19 admin/addcourse.php:20 admin/forms.php:574 +#: index.php:518 +msgid "Add New Course" +msgstr "Neuen Kurs anlegen" + +#: admin/addcourse.php:29 +msgid "Adding Course For" +msgstr "Hinzufügen eines Kurses für" + +#: admin/addcourse.php:36 +msgid "How would you like to start this course?" +msgstr "Wie möchten Sie diesen Kurs beginnen?" + +#: admin/addcourse.php:41 +msgid "Start with a blank course" +msgstr "Mit einem leeren Kurs beginnen" + +#: admin/addcourse.php:50 course/copyitems.php:646 +msgid "Copy a template or promoted course" +msgstr "Einen Template-Kurs oder einen veröffentlichten Kurs kopieren" + +#: admin/addcourse.php:60 +msgid "Copy from my or a colleague's course" +msgstr "Kurs eines Kollegen kopieren" + +#: admin/addcourse.php:62 +msgid "Copy from my, a colleague's, or template course" +msgstr "" +"Einen meiner Kurse, einen Kurs eines Kollegen oder einen Template-Kurs " +"kopieren" -#: assessment/displayq2.php:698 assessment/displayq2.php:955 -#: assessment/displayq2.php:988 -#, php-format -msgid ", with at least %d significant figures" -msgstr ", mit mindestens %d signifikanten Figuren" +#: admin/addcourse.php:72 admin/forms.php:1382 assess2/AssessUtils.php:174 +#: assessment/showtest.php:1765 assessment/showtest.php:2701 +#: assessment/showtest.php:3558 +msgid "Continue" +msgstr "Fortfahren" -#: assessment/displayq2.php:689 assessment/displayq2.php:942 -#: assessment/displayq2.php:975 -#, php-format -msgid ", with exactly %d significant figures" -msgstr ", mit genau %d signifikanten Figuren" +#: admin/addremoveteachers.php:38 admin/forms.php:113 admin/listdiag.php:145 +#: course/addassessment2.php:736 course/chgassessments2.php:492 +#: course/gradebook.php:333 course/gradebook.php:485 course/outcomemap.php:162 +#: includes/userutils.php:23 includes/userutils.php:44 +#: includes/userutils.php:70 util/listnewteachers.php:153 +#: util/listnewteachers.php:204 +msgid "Default" +msgstr "Standard" -#: course/gradebook.php:528 -msgid "... file" -msgstr "... Datei" +#: admin/addremoveteachers.php:145 +msgid "Add/Remove Teachers" +msgstr "Lehrer hinzufügen/entfernen" -#: course/gradebook.php:529 -msgid "... my email" -msgstr "... meine E-Mail-Adresse" +#: admin/admin.php:204 +msgid "Add or remove additional teachers" +msgstr "Weitere Lehrer hinzufügen/entfernen" -#: course/gradebook.php:530 -msgid "... other email" -msgstr "... andere E-Mail-Adresse" +#: admin/admin.php:205 +msgid "Modify course settings" +msgstr "Kurseinstellungen ändern" -#: course/course.php:784 course/course.php:785 -msgid "1 day from now" -msgstr "in 1 Tag" +#: admin/admin.php:205 +msgid "Transfer course ownership to someone else" +msgstr "Den Kurs als Eigentümer an einen anderen Dozenten übergeben" -#: course/course.php:778 course/course.php:779 -msgid "1 hour from now" -msgstr "in 1 Stunde" +#: admin/admin2.php:10 admin/groupreportdetails.php:9 admin/userdetails.php:9 +#: admin/userreportdetails.php:10 admin/userreports.php:10 +msgid "Guest" +msgstr "Gast" -#: course/course.php:787 course/course.php:788 -msgid "1 week from now" -msgstr "in 1 Woche" +#: admin/admin2.php:11 admin/groupreportdetails.php:10 admin/userdetails.php:10 +#: admin/userreportdetails.php:11 admin/userreports.php:11 +#: course/course.php:694 msgs/msglist.php:351 +msgid "Student" +msgstr "Student" -#: assessment/displayq2.php:1650 assessment/displayq2.php:2225 -#: assessment/displayq2.php:2295 -msgid "2 regions" -msgstr "2 Bereiche" +#: admin/admin2.php:12 admin/groupreportdetails.php:11 admin/userdetails.php:11 +#: admin/userreportdetails.php:12 admin/userreports.php:12 +#: util/listnewteachers.php:60 +msgid "Pending" +msgstr "Ausstehend" + +#: admin/admin2.php:13 admin/groupreportdetails.php:12 admin/userdetails.php:12 +#: admin/userreportdetails.php:13 admin/userreports.php:13 +msgid "Tutor/TA/Proctor" +msgstr "Tutor/Assistent" + +#: admin/admin2.php:14 admin/groupreportdetails.php:13 admin/userdetails.php:13 +#: admin/userreportdetails.php:14 admin/userreports.php:14 +msgid "Teacher" +msgstr "Lehrer" + +#: admin/admin2.php:15 admin/groupreportdetails.php:14 admin/userdetails.php:14 +#: admin/userreportdetails.php:15 admin/userreports.php:15 +msgid "LimCourseCreator" +msgstr "Kurseigentümer" + +#: admin/admin2.php:16 admin/groupreportdetails.php:15 admin/userdetails.php:15 +#: admin/userreportdetails.php:16 admin/userreports.php:16 +msgid "GroupAdmin" +msgstr "Gruppen-Administrator" + +#: admin/admin2.php:34 +msgid "Group Administration" +msgstr "Gruppenverwaltung" + +#: admin/admin2.php:42 admin/userreports.php:35 +msgid "Pending Users" +msgstr "Ausstehende Benutzer" + +#: admin/admin2.php:44 admin/forms.php:427 admin/forms.php:1433 +#: admin/groupreportdetails.php:34 admin/userreports.php:37 +msgid "Default Group" +msgstr "Standardgruppe" + +#: admin/admin2.php:51 admin/admin2.php:53 admin/userreports.php:44 +#: admin/userreports.php:46 +msgid "Group Members" +msgstr "Gruppenmitglieder" + +#: admin/admin2.php:64 admin/userreports.php:54 +msgid "Select Teacher" +msgstr "Wähle Lehrer" + +#: admin/admin2.php:68 +msgid "Select User" +msgstr "Wähle Benutzer" + +#: admin/admin2.php:117 admin/userreports.php:74 admin/userreports.php:113 +msgid "Select Group" +msgstr "Wähle Gruppe" + +#: admin/admin2.php:123 +msgid "Administration" +msgstr "Administration" + +#: admin/admin2.php:163 admin/admin2.php:340 +msgid "Manage Question Set" +msgstr "Fragensatz verwalten" -#: course/course.php:781 course/course.php:782 -msgid "4 hours from now" -msgstr "in 4 Stunden" +#: admin/admin2.php:164 admin/admin2.php:341 +msgid "Manage Libraries" +msgstr "Bibliotheken verwalten" -#: course/gradebook.php:1309 course/gradebook.php:1321 -#: course/gradebook.php:1373 course/gradebook.php:1423 -#: course/gradebook.php:1456 course/gradebook.php:1491 -#: course/gradebook.php:1503 -msgid "5-number summary:" -msgstr "5-Zahlen-Statistik:" +#: admin/admin2.php:168 admin/admin2.php:345 course/course.php:519 +msgid "Export Libraries" +msgstr "Bibliotheken exportieren" -#: assessment/showtest.php:1131 -msgid "Return to test or" -msgstr "Zurück zum Test oder" +#: admin/admin2.php:169 admin/admin2.php:280 admin/admin2.php:328 +#: admin/diagonetime.php:24 admin/diagonetime.php:30 admin/diagonetime.php:36 +#: admin/diagsetup.php:23 admin/diagsetup.php:29 admin/diagsetup.php:35 +#: admin/listdiag.php:79 admin/listdiag.php:106 admin/userdetails.php:181 +#: index.php:374 +msgid "Diagnostics" +msgstr "Diagnose" -#: assessment/showtest.php:2554 -msgid "" -"Reattempt test on all questions " -"where allowed" -msgstr "" -"Test erneut versuchen (alle " -"erlaubten Fragen)" +#: admin/admin2.php:173 admin/admin2.php:279 admin/admin2.php:361 +#: admin/userreports.php:141 index.php:406 +msgid "Add New User" +msgstr "Neuen Benutzer hinzufügen" + +#: admin/admin2.php:175 admin/userreports.php:142 +msgid "Batch Add Instructors" +msgstr "Dozenten in Serie hinzufügen" + +#: admin/admin2.php:179 +msgid "Find Student" +msgstr "Finde Student" + +#: admin/admin2.php:186 admin/userreports.php:148 +msgid "No users found" +msgstr "Benutzer nicht gefunden" + +#: admin/admin2.php:193 admin/admin2.php:285 admin/groupreportdetails.php:223 +#: admin/listdiag.php:120 admin/userdetails.php:214 admin/userdetails.php:258 +#: admin/userdetails.php:299 admin/userreportdetails.php:313 +#: admin/userreportdetails.php:381 admin/userreportdetails.php:422 +#: admin/userreports.php:155 admin/userreports.php:221 +#: course/outcomereport.php:208 course/outcomereport.php:248 +#: forums/listviews.php:36 +msgid "Name" +msgstr "Name" + +#: admin/admin2.php:194 admin/admin2.php:286 admin/groupreportdetails.php:224 +#: admin/userreportdetails.php:264 admin/userreports.php:156 +#: admin/userreports.php:222 assessment/showtest.php:1408 +msgid "Username" +msgstr "Benutzername" -#: assessment/testutil.php:812 -msgid "" -"Reattempt test on questions " -"allowed (note: all scores, correct and incorrect, will be cleared)" -msgstr "" -"Test erneut versuchen (alle " -"erlaubten Fragen; Hinweis: alle Punkte, sowie korrekte und inkorrekte " -"Antworten werden zurückgesetzt)" +#: admin/admin2.php:195 admin/admin2.php:287 admin/groupreportdetails.php:225 +#: admin/userdetails.php:193 admin/userreportdetails.php:275 +#: admin/userreports.php:157 admin/userreports.php:223 course/gradebook.php:683 +#: course/gradebook.php:687 course/listusers.php:752 +msgid "Email" +msgstr "E-Mail" -#: assessment/showtest.php:2548 -msgid "" -"Reattempt test on questions " -"allowed (note: where reattempts are allowed, all scores, correct and " -"incorrect, will be cleared)" +#: admin/admin2.php:196 admin/admin2.php:288 admin/groupreportdetails.php:226 +#: admin/userdetails.php:186 admin/userreportdetails.php:265 +#: admin/userreports.php:158 admin/userreports.php:224 +msgid "Role" +msgstr "Rolle" + +#: admin/admin2.php:197 admin/admin2.php:246 admin/listdiag.php:128 +#: admin/userdetails.php:188 admin/userlti.php:171 +#: admin/userreportdetails.php:267 admin/userreports.php:159 +#: admin/userreports.php:196 forms.php:135 +msgid "Group" +msgstr "Gruppe" + +#: admin/admin2.php:219 admin/userreports.php:181 +msgid "List cut off at 200 options. Try narrowing the search" msgstr "" -"Test erneut versuchen (alle " -"erlaubten Fragen; Hinweis: alle Punkte, sowie korrekte und inkorrekte " -"Antworten werden zurückgesetzt, wenn Neuversuche erlaubt sind)" +"Liste bei 200 Möglichkeiten abgeschnitten. Versuchen Sie, die Suche " +"einzuschränken" + +#: admin/admin2.php:247 admin/admin2.php:260 admin/forms.php:1386 +#: admin/listdiag.php:90 course/courseshowitems.php:116 +#: course/courseshowitems.php:154 course/courseshowitems.php:171 +#: course/courseshowitems.php:2087 course/courseshowitems.php:2227 +#: course/courseshowitems.php:2274 course/courseshowitems.php:2321 +#: course/courseshowitems.php:2368 course/courseshowitems.php:2415 +msgid "Modify" +msgstr "Anpassen" -#: assessment/testutil.php:814 -msgid "" -"Reattempt test on questions " -"missed where allowed" -msgstr "" -"Test erneut versuchen (alle " -"erlaubten vergessenen Fragen)" +#: admin/admin2.php:248 admin/admin2.php:261 admin/admin2.php:292 +#: admin/admin2.php:311 admin/diagonetime.php:150 admin/forms.php:71 +#: admin/forms.php:141 admin/forms.php:1323 admin/forms.php:1388 +#: admin/forms.php:1473 admin/forms.php:1511 admin/listdiag.php:91 +#: admin/modcourseorder.php:146 admin/modcourseorder.php:220 +#: admin/unhidefromcourselist.php:79 admin/userdetails.php:399 +#: admin/userreportdetails.php:522 course/addoutcomes.php:140 +#: course/addoutcomes.php:151 course/addoutcomes.php:182 +#: course/addoutcomes.php:195 course/courseshowitems.php:118 +#: course/courseshowitems.php:135 course/courseshowitems.php:156 +#: course/courseshowitems.php:173 course/courseshowitems.php:679 +#: course/courseshowitems.php:2087 course/courseshowitems.php:2172 +#: course/courseshowitems.php:2228 course/courseshowitems.php:2275 +#: course/courseshowitems.php:2322 course/courseshowitems.php:2369 +#: course/courseshowitems.php:2416 course/editsnippets.php:99 +#: course/editsnippets.php:244 index.php:74 msgs/viewmsg.php:238 +msgid "Delete" +msgstr "Löschen" -#: assessment/showtest.php:2551 -msgid "" -"Reattempt test on " -"questions that can be improved where allowed" -msgstr "" -"Test erneut versuchen " -"(alle Fragen, die verbessert werden können)" +#: admin/admin2.php:289 admin/groupreportdetails.php:227 +#: admin/userdetails.php:194 admin/userreportdetails.php:276 +#: admin/userreports.php:225 +msgid "Last Login" +msgstr "Letzte Anmeldung" -#: assessment/testutil.php:821 assessment/showtest.php:2560 -#: assessment/showtest.php:3203 assessment/showtest.php:3494 -msgid "" -"Try similar problems for all " -"questions where allowed." -msgstr "" -"Ähnliche Probleme versuchen (alle " -"erlaubten Fragen)" +#: admin/admin2.php:290 admin/admin2.php:309 +msgid "Edit" +msgstr "Ändern" -#: assessment/testutil.php:823 assessment/showtest.php:2559 -#: assessment/showtest.php:3202 assessment/showtest.php:3493 -msgid "" -"Try similar problems for all " -"questions with less than perfect scores where allowed." -msgstr "" -"Ähnliche Probleme versuchen " -"(alle erlaubten Fragen mit noch nicht erreichter Bestpunktzahl)" +#: admin/admin2.php:326 course/course.php:492 course/course.php:502 +msgid "Groups" +msgstr "Gruppen" -#: course/gradebook.php:1045 -msgid "" -"All total includes all items: past, current, and future to-be-done " -"items." -msgstr "" -"Alle Gesamtsumme enthält alle Teile: vergangene, aktuelle und noch zu " -"erledigende Teile" +#: admin/admin2.php:327 +msgid "Utilities" +msgstr "Werkzeuge" -#: course/gradebook.php:1039 -msgid "" -"Past Due and Attempted total includes items whose due date has past, " -"as well as currently available items you have started working on." -msgstr "" -"Überfällig und versucht Gesamtsumme enthält Teile die fällig sind, " -"sowie verfügbare Teile deren Bearbeitung Sie begonnen haben." +#: admin/admin2.php:333 +msgid "LTI Provider Creds" +msgstr "LTI-Zugangsdaten" -#: course/gradebook.php:1042 -msgid "" -"Past Due and Available total includes items whose due date has past " -"as well as currently available items, even if you haven't starting working " -"on them yet." -msgstr "" -"Überfällig und verfügbar Gesamtsumme enthält Teile die fällig sind, " -"sowie verfügbare Teile, auch wenn Sie deren Bearbeitung noch nicht begonnen " -"haben." +#: admin/admin2.php:335 +msgid "Federation Peers" +msgstr "Föderationsmitglieder" -#: course/gradebook.php:1036 -msgid "" -"Past Due total only includes items whose due date has past. Current " -"assignments are not counted in this total." -msgstr "" -"Überfällig Gesamtsumme enthält nur Teile die fällig sind. Laufende " -"Tests sind dabei nicht berücksichtigt." +#: admin/admin2.php:336 +msgid "External Tools" +msgstr "Externe Werkzeuge" -#: assessment/showtest.php:2525 +#: admin/admin2.php:346 course/course.php:520 +msgid "Import Libraries" +msgstr "Bibliotheken importieren" + +#: admin/admin2.php:354 admin/userreports.php:254 +msgid "Find teacher" +msgstr "Lehrer finden" + +#: admin/admin2.php:356 admin/admin2.php:360 admin/admin2.php:369 +#: admin/userreports.php:256 admin/userreports.php:263 util/utils.php:269 +msgid "Go" +msgstr "Los" + +#: admin/admin2.php:358 +msgid "Find user" +msgstr "Benutzer finden" + +#: admin/admin2.php:367 admin/userreports.php:261 +msgid "Find group" +msgstr "Gruppe finden" + +#: admin/approvepending.php:53 admin/approvepending2.php:108 +msgid " Account Approval" +msgstr " Bestätigung der Kennung" + +#: admin/approvepending2.php:65 +msgid " Account Status" +msgstr " Status der Kennnumg" + +#: admin/approvepending2.php:224 +msgid "Approve Instructor Accounts" +msgstr "Dozenten-Kennung bestätigen" + +#: admin/canvascalexport.php:41 includes/calendardata.php:168 +msgid "Assignment Due: " +msgstr "Test fällig " + +#: admin/canvascalexport.php:41 #, php-format -msgid "A score of %d is required to receive credit for this assessment" -msgstr "Eine Punktzahl von %s wird benötigt, um diesen Test zu bestehen" +msgid "Assignment Due in %s: " +msgstr "Test fällig in %s: " -#: loginpage.php:24 infoheader.php:6 loginpage.php:26 loginpage.php:25 -msgid "About Us" -msgstr "Über uns" +#: admin/coursebrowser.php:143 admin/coursebrowser.php:147 +msgid "Course Browser" +msgstr "Kursübersicht" -#: loginpage.php:81 loginpage.php:83 loginpage.php:82 -msgid "Accessibility:" -msgstr "Barrierefreiheit:" +#: admin/diagonetime.php:43 +msgid "Diagnostic One-time Passwords" +msgstr "Einmal-Passwort für Diagnostik" -#: course/gradebook.php:556 -msgid "Active" -msgstr "Aktiv" +#: admin/diagsetup.php:42 +msgid "Diagnostic Setup" +msgstr "Diagnose-Einstellungen" -#: course/gradebook.php:524 -msgid "Add" -msgstr "Hinzufügen" +#: admin/diagsetup.php:391 admin/ltiuserprefs.php:22 +#: course/viewforumgrade.php:85 +msgid "Done" +msgstr "Erledigt" -#: course/courseshowitems.php:1426 course/courseshowitems.php:1427 -msgid "Add An Item..." -msgstr "Hinzufügen..." +#: admin/forms.php:98 +msgid "Anonymize" +msgstr "Anonymisieren" -#: course/courseshowitems.php:1427 course/courseshowitems.php:1428 -msgid "Add Assessment" -msgstr "Test" +#: admin/forms.php:153 +msgid "New User" +msgstr "Neuer Benutzer" -#: course/courseshowitems.php:1433 course/courseshowitems.php:1434 -msgid "Add Block" -msgstr "Block" +#: admin/forms.php:315 +msgid "Add a course" +msgstr "Einen Kurs hinzufügen" -#: course/courseshowitems.php:1434 course/courseshowitems.php:1435 -msgid "Add Calendar" -msgstr "Kalender" +#: admin/forms.php:317 +msgid "Add a new course for this user" +msgstr "Einen neuen Kurs für diesen benutzer hinzufügen" -#: course/courseshowitems.php:1431 course/courseshowitems.php:1432 -msgid "Add Forum" -msgstr "Forum" +#: admin/forms.php:358 admin/forms.php:572 course/course.php:547 +msgid "Course Settings" +msgstr "Kurseinstellungen" -#: assessment/showtest.php:1725 assessment/showtest.php:2234 -#: assessment/showtest.php:2482 -msgid "Add Group Members" -msgstr "Gruppenmitglieder hinzufügen" +#: admin/forms.php:470 +msgid "Will be assigned when the course is created" +msgstr "Wird zugeordnet, wenn der Kurs angelegt ist" -#: course/courseshowitems.php:1429 course/courseshowitems.php:1430 -msgid "Add Inline Text" -msgstr "Eingebetteten Text" +#: admin/forms.php:620 +msgid "Creating course for:" +msgstr "Kurs anlegen für:" -#: course/courseshowitems.php:1430 course/courseshowitems.php:1431 -msgid "Add Linked Text" -msgstr "Verlinkten Text" +#: admin/forms.php:626 +msgid "Starting with:" +msgstr "Beginnen mit:" -#: course/courseshowitems.php:1432 course/courseshowitems.php:1433 -msgid "Add Wiki" -msgstr "Wiki" +#: admin/forms.php:627 +msgid "A blank course" +msgstr "Ein leerer Kurs" -#: course/courseshowitems.php:1362 course/courseshowitems.php:1364 -#: course/courseshowitems.php:1366 course/courseshowitems.php:1363 -#: course/courseshowitems.php:1365 course/courseshowitems.php:1367 -msgid "Add here:" -msgstr "Füge hier hinzu:" +#: admin/forms.php:629 +msgid "Copying: " +msgstr "Kopieren: " -#: assessment/displayq2.php:1636 assessment/displayq2.php:2211 -#: assessment/displayq2.php:2281 -msgid "Adjust the sliders" -msgstr "Passen Sie die Schieberegler an" +#: admin/forms.php:662 +msgid "Select a level" +msgstr "Wählen Sie eine Stufe" -#: index.php:343 index.php:345 index.php:344 -msgid "Admin Page" -msgstr "Administrationsbereich" +#: admin/forms.php:697 +msgid "Course Copy Options" +msgstr "Einstellungen für Kurskopie" -#: course/gradebook.php:432 course/gradebook.php:457 course/gradebook.php:568 -#: course/gradebook.php:593 course/gradebook.php:615 course/gradebook.php:877 -#: course/gradebook.php:1098 -msgid "All" -msgstr "Alle" +#: admin/forms.php:700 +msgid "Copy offline grade items?" +msgstr "Kurselemente kopieren, die offline bewertet werden?" -#: loginpage.php:126 loginpage.php:128 loginpage.php:127 -msgid "Also available:" -msgstr "Weiterhin verfügbar:" - -#: course/courseshowitems.php:82 course/courseshowitems.php:87 -#: course/courseshowitems.php:563 course/courseshowitems.php:573 -#: course/courseshowitems.php:739 course/courseshowitems.php:744 -#: course/courseshowitems.php:870 course/courseshowitems.php:875 -#: course/courseshowitems.php:956 course/courseshowitems.php:961 -#: course/courseshowitems.php:1143 course/courseshowitems.php:1148 -#: course/courseshowitems.php:1236 course/courseshowitems.php:1241 -#: course/courseshowitems.php:1607 course/courseshowitems.php:1612 -#: course/courseshowitems.php:1687 course/courseshowitems.php:1692 -#: course/courseshowitems.php:1697 course/courseshowitems.php:1750 -#: course/courseshowitems.php:1755 course/courseshowitems.php:1797 -#: course/courseshowitems.php:1802 course/courseshowitems.php:1844 -#: course/courseshowitems.php:1849 course/courseshowitems.php:1891 -#: course/courseshowitems.php:1896 course/courseshowitems.php:83 -#: course/courseshowitems.php:88 course/courseshowitems.php:564 -#: course/courseshowitems.php:574 course/courseshowitems.php:740 -#: course/courseshowitems.php:745 course/courseshowitems.php:871 -#: course/courseshowitems.php:876 course/courseshowitems.php:957 -#: course/courseshowitems.php:962 course/courseshowitems.php:1144 -#: course/courseshowitems.php:1149 course/courseshowitems.php:1237 -#: course/courseshowitems.php:1242 course/courseshowitems.php:1608 -#: course/courseshowitems.php:1613 course/courseshowitems.php:1688 -#: course/courseshowitems.php:1693 course/courseshowitems.php:1698 -#: course/courseshowitems.php:1751 course/courseshowitems.php:1756 -#: course/courseshowitems.php:1798 course/courseshowitems.php:1803 -#: course/courseshowitems.php:1845 course/courseshowitems.php:1850 -#: course/courseshowitems.php:1892 course/courseshowitems.php:1897 -msgid "Always" -msgstr "Immer" +#: admin/forms.php:703 +msgid "Copy rubrics?" +msgstr "Lernziele kopieren?" -#: index.php:428 index.php:430 index.php:429 -msgid "Anonymous" -msgstr "Anonym" +#: admin/forms.php:706 +msgid "Copy outcomes?" +msgstr "Themen kopieren?" -#: assessment/displayq2.php:330 assessment/displayq2.php:338 -#: assessment/displayq2.php:350 assessment/displayq2.php:340 -#: assessment/displayq2.php:352 assessment/displayq2.php:360 -#: assessment/displayq2.php:347 assessment/displayq2.php:367 -#: assessment/displayq2.php:375 -msgid "Answer:" -msgstr "Antwort:" +#: admin/forms.php:709 +msgid "Copy \"display at top\" instructor forum posts?" +msgstr "Kopiere \"oben anzeigen\" für Dozenten-Beiträge?" -#: assessment/displayq2.php:176 assessment/displayq2.php:240 -#: assessment/displayq2.php:247 -msgid "Answers may vary" -msgstr "Antworten können variieren" +#: admin/forms.php:713 +msgid "Upgrade assessment version (Beta - use with caution)" +msgstr "Neue Version (Beta - mit Vorsicht verwenden)" -#: assessment/showtest.php:1129 +#: admin/forms.php:715 msgid "" -"Answers saved, but not submitted for grading. You may continue with the " -"test, or come back to it later. " +"The source course is using an older format of assessments. Select this " +"option to set your new course to use the new version of assessments, and " +"convert copied assessments to the new format. You will want to review the " +"settings after the copy." msgstr "" -"Die Antworten wurden gespeichert, aber nicht zur Benotung abgeschickt. Sie " -"können mit dem Test fortfahren oder später darauf zurückkommen." +"Der Quellkurs verwendet ein älteres Test-Format. Wählen Sie diese Option " +"aus, um die Verwendung der neuen Version von Tests zu aktivieren und " +"kopierte Tests in das neue Format zu konvertieren. Überprüfen Sie die " +"Einstellungen der Tests in dem kopierten Kurs." + +#: admin/forms.php:724 +msgid "Availability and Access" +msgstr "Verfügbarkeit und Zugang" + +#: admin/forms.php:871 +msgid "Use new assessment version" +msgstr "Neues Test-Format verwenden" -#: assessment/testutil.php:713 assessment/testutil.php:726 -#: assessment/testutil.php:745 +#: admin/forms.php:873 msgid "" -"Are you sure you want to jump to this question, discarding any work you have " -"not submitted?" +"Select this option to set your new course to use the new version of " +"assessments. This feature is still in Beta - use with caution." msgstr "" -"Sind Sie sicher, dass Sie zu dieser Frage springen wollen und den bisher " -"nicht Abgeschicktes verlieren wollen?" +"Wählen Sie diese Option aus, um für den neuen Kurs für die Verwendung des " +"neuen Test-Formats zu aktivieren. Diese Funktion ist immer noch im Beta-Test " +"- mit Vorsicht verwenden." -#: course/courseshowitems.php:1373 course/courseshowitems.php:1374 -#: assessment/showtest.php:107 assessment/showtest.php:746 -#: assessment/showtest.php:750 assessment/showtest.php:158 -#: assessment/showtest.php:940 assessment/showtest.php:944 -#: assessment/showtest.php:181 assessment/showtest.php:1068 -#: assessment/showtest.php:1072 -msgid "Assessment" -msgstr "Test" +#: admin/forms.php:886 +msgid "Send teachers a message when students enroll" +msgstr "Lehrer benachrichtigen, wenn sich ein Student einschreibt" -#: assessment/showtest.php:148 assessment/showtest.php:206 -#: assessment/showtest.php:235 -msgid "Assessment has no questions!" -msgstr "Test hat keine Fragen!" +#: admin/forms.php:889 +msgid "Send" +msgstr "Abschicken" -#: assessment/showtest.php:404 assessment/showtest.php:418 -#: assessment/showtest.php:435 assessment/showtest.php:530 -#: assessment/showtest.php:544 assessment/showtest.php:565 -#: assessment/showtest.php:644 assessment/showtest.php:661 -#: assessment/showtest.php:682 -msgid "Assessment is closed" -msgstr "Test ist geschlossen" +#: admin/forms.php:1017 +msgid "Promote Course" +msgstr "Kurs ankündigen" -#: assessment/testutil.php:808 -msgid "Assessment is complete with perfect score." -msgstr "Test ist komplett mit perfekter Punktzahl." +#: admin/forms.php:1020 +msgid "Promote in Course Browser" +msgstr "In der Kursübersicht veröffentlichen" -#: course/course.php:461 course/course.php:462 -msgid "Assessments" -msgstr "Tests" +#: admin/forms.php:1022 +msgid "Course Browser Settings" +msgstr "Einstellungen für Kursübersicht" -#: course/courseshowitems.php:1723 course/courseshowitems.php:1724 -#, php-format -msgid "Available %1$s to %2$s" -msgstr "Verfügbar %1$s to %2$s" +#: admin/forms.php:1023 +msgid "" +"Promoting your course will advertise it to all users of this system, making " +"it easy for them to copy this course." +msgstr "" +"Wenn Sie Ihren Kurs veröffentlichen, so kann er von allen Benutzern gefunden " +"und von Dozenten kopiert werden." -#: course/courseshowitems.php:694 course/courseshowitems.php:695 -#, php-format -msgid "Available %1$s until %2$s" -msgstr "Verfügbar %1$s bis %2$s" +#: admin/forms.php:1024 +msgid "" +"You should only promote a course that is complete and ready to share with " +"the world." +msgstr "Sie sollten nur fertige Kurse veröffentlichen." -#: course/gradebook.php:455 course/gradebook.php:591 -msgid "Available Only" -msgstr "Nur verfügbare" +#: admin/forms.php:1025 +msgid "" +"Before sharing your course, check to ensure that it only contains materials " +"you created or have the rights to share." +msgstr "" +"Bevor Sie einen Kurs veröffentlichen prüfen Sie bitte, dass er nur Material " +"enthält, dass Sie mit anderen teilen dürfen." -#: course/courseshowitems.php:600 course/courseshowitems.php:601 -msgid "Available until" -msgstr "verfügbar bis" +#: admin/forms.php:1026 +msgid "" +"Your course should contain no commercial, copyrighted content, including " +"textbook pages, activites, test bank items, etc." +msgstr "" +"Ihr Kurs sollte keine kommerziellen oder Copyright-geschützte Inhalte " +"enthalten, wie Seiten aus Lehrbüchern, Aktivitäten, Testsätze, u.s.w." -#: course/courseshowitems.php:1715 course/courseshowitems.php:1716 -#, php-format -msgid "Available until %s" -msgstr "Verfügbar bis %s" +#: admin/forms.php:1027 +msgid "" +"Openly licensed material, clearly marked with an open license, is fine to " +"include." +msgstr "" +"Material, das deutlich mit einer freien Lizenz versehen ist, darf im Kurs " +"vorkommen." -#: course/gradebook.php:534 -msgid "Averages" -msgstr "Durchschnitte" +#: admin/forms.php:1028 +msgid "" +"If sharing your own materials (textbook, activities, paper assessments), " +"please mark the materials with an open license, or include a blanket license " +"statement somewhere in the course." +msgstr "" +"Wenn Sie eigenes Material (Lehrbuch, Aktivitäten, Papiertests) weitergeben, " +"so kennzeichnen Sie dieses bitte mit einer offenen Lizenz oder fügen eine " +"Lizenz an geeigneter Stelle in den Kurs ein." -#: course/course.php:226 course/course.php:228 course/course.php:227 -#: course/course.php:229 diag/index.php:218 diag/index.php:224 -msgid "Back" -msgstr "Zurück" +#: admin/forms.php:1213 +msgid "Course Ancestors" +msgstr "Kursvorgänger" -#: course/gradebook.php:149 -msgid "Back to Gradebook" -msgstr "Zurück zur Punkteübersicht" +#: admin/forms.php:1374 admin/forms.php:1375 admin/groupreportdetails.php:141 +#: course/gbtable2.php:920 course/gradebook.php:676 +#: util/listnewteachers.php:261 +msgid "Never" +msgstr "Niemals" -#: course/course.php:789 course/course.php:790 -msgid "Back to instructor view" -msgstr "Zurück zur Dozentenansicht" +#: admin/forms.php:1382 +msgid "Incomplete" +msgstr "Unvollständig" -#: course/course.php:708 course/course.php:709 -msgid "Back to regular view" -msgstr "Zurück zur regulären Ansicht" +#: admin/forms.php:1389 +msgid "Start New Pull" +msgstr "Neue Anfrage starten" -#: assessment/displayq2.php:1319 assessment/displayq2.php:1321 -#: assessment/displayq2.php:1710 assessment/displayq2.php:1712 -#: assessment/displayq2.php:1773 assessment/displayq2.php:1775 -msgid "Be sure your variables match those in the question" -msgstr "" -"Stellen Sie sicher, dass Ihre Variablen mit denen in der Frage übereinstimmen" +#: admin/groupreportdetails.php:184 admin/groupreportdetails.php:185 +msgid "Group Detail" +msgstr "Gruppendetails" -#: assessment/displayq2.php:1650 assessment/displayq2.php:2225 -#: assessment/displayq2.php:2295 -msgid "Between two values" -msgstr "Zwischen zwei Werten" +#: admin/groupreportdetails.php:190 admin/groupreportdetails.php:228 +#: admin/userreportdetails.php:277 +msgid "Active Courses" +msgstr "Aktive Kurse" -#: course/gradebook.php:600 -msgid "Big" -msgstr "Groß" +#: admin/groupreportdetails.php:191 +#, php-format +msgid "%d using LTI" +msgstr "%d mit LTI" -#: course/courseshowitems.php:1410 course/courseshowitems.php:1411 -msgid "Block" -msgstr "Block" +#: admin/groupreportdetails.php:192 +msgid "Students in Active Courses" +msgstr "Studierende in aktiven Kursen" -#: assessment/displayq2.php:326 assessment/displayq2.php:495 -#: assessment/displayq2.php:510 -msgid "Box" -msgstr "Antwort" +#: admin/groupreportdetails.php:193 +#, php-format +msgid "%d in LTI courses" +msgstr "%d in LTI-Kursen" -#: loginpage.php:67 loginpage.php:69 loginpage.php:68 -msgid "Browser check" -msgstr "Browser-Überprüfung" +#: admin/groupreportdetails.php:209 +msgid "Templates Used in Active Courses" +msgstr "Templates verwendet in aktiven Kursen" -#: course/course.php:424 course/course.php:482 course/course.php:594 -#: course/course.php:601 course/course.php:616 course/course.php:741 -#: course/course.php:764 course/courseshowitems.php:1416 -#: course/courseshowitems.php:1417 course/course.php:425 course/course.php:483 -#: course/course.php:595 course/course.php:602 course/course.php:617 -#: course/course.php:742 course/course.php:765 -msgid "Calendar" -msgstr "Kalender" +#: admin/groupreportdetails.php:229 +msgid "Using LTI" +msgstr "Mit LTI" -#: assessment/catscores.php:43 -msgid "Categorized Score Breakdown" -msgstr "Kategorisierte Punktzahlaufschlüsselung" +#: admin/groupreportdetails.php:230 +msgid "Students" +msgstr "Studierende" -#: assessment/catscores.php:44 course/gradebook.php:429 -msgid "Category" -msgstr "Kategorie" +#: admin/groupreportdetails.php:266 +msgid "as course owner" +msgstr "als Kurs-Eigentümer" -#: course/gradebook.php:445 -msgid "Category Totals" -msgstr "Gesamtpunktzahlen (Kategorie)" +#: admin/importitems2.php:25 admin/importitems2.php:26 +#: admin/importitems2.php:166 +msgid "Import Course Items" +msgstr "Kurselemente importieren" -#: assessment/testutil.php:631 assessment/testutil.php:793 -#: course/gradebook.php:565 -msgid "Category:" -msgstr "Kategorie:" +#: admin/importitems2.php:184 admin/listdiag.php:123 admin/userlti.php:195 +#: index.php:610 index.php:673 +msgid "Course" +msgstr "Kurs" -#: course/gradebook.php:669 -msgid "Change Info" -msgstr "Info ändern" +#: admin/importitems2.php:187 +msgid "" +"The import file is for a more recent assessment version than this course - " +"cannot import." +msgstr "" +"Die Importdatei ist verwendet ein neueres Test-Format als dieser Kurs und " +"kann deshalb nicht importiert werden." -#: index.php:250 index.php:252 index.php:251 -msgid "Change Password" -msgstr "Passwort ändern" +#: admin/importitems2.php:191 +msgid "" +"The import file is for an older assessment version than this course - " +"assessments will be upgraded." +msgstr "" +"Die Importdatei verwendet ein älteres Test-Format als dieser Kurs - Tests " +"werden aktualisiert." + +#: admin/listdiag.php:92 +msgid "One-time Passwords" +msgstr "Einmal-Passwort" + +#: admin/listdiag.php:114 +msgid "Add New Diagnostic" +msgstr "Neue Diagnostik hinzufügen" + +#: admin/listdiag.php:117 +msgid "No Diagnostics to display" +msgstr "Keine Diagnostik anzuzeigen" + +#: admin/listdiag.php:121 +msgid "Available" +msgstr "Verfügbar" + +#: admin/listdiag.php:122 +msgid "Public" +msgstr "Öffentlich" + +#: admin/listdiag.php:125 +msgid "Owner" +msgstr "Eigentümer" + +#: admin/listdiag.php:136 admin/listdiag.php:137 course/modquestion.php:195 +#: course/modquestion.php:200 course/modquestion.php:211 +#: course/modquestiongrid.php:147 +msgid "Yes" +msgstr "Ja" + +#: admin/listdiag.php:136 admin/listdiag.php:137 +#: admin/userreportdetails.php:367 course/modquestion.php:197 +#: course/modquestion.php:202 course/modquestion.php:211 +#: course/modquestion2.php:219 course/modquestiongrid.php:147 +#: course/modquestiongrid2.php:149 course/modquestiongrid2.php:244 +#: course/modquestiongrid2.php:330 +msgid "No" +msgstr "Nein" + +#: admin/ltiuserprefs.php:20 +msgid "" +"Preferences saved. Your new preferences will go into effect when you visit a " +"new page or reload the current page." +msgstr "" +"Einstellungen gespeichert. Ihre neuen Einstellungen werden verwendet, wenn " +"Sie eine neue Seite besuchen oder diese Seite neu laden." -#: index.php:249 index.php:251 index.php:250 -msgid "Change User Info" -msgstr "Benutzerprofil ändern" +#: admin/ltiuserprefs.php:25 assessment/showtest.php:1200 +#: assessment/showtest.php:1204 assessment/showtest.php:1220 +#: assessment/showtest.php:1224 assessment/showtest.php:1259 +#: assessment/showtest.php:1263 course/course.php:449 +msgid "User Preferences" +msgstr "Benutzer-Einstellungen" -#: course/course.php:413 course/course.php:484 course/course.php:560 -#: course/course.php:414 course/course.php:485 course/course.php:561 -msgid "Chat" -msgstr "Chat" +#: admin/modcourseorder.php:76 course/addoutcomes.php:70 +msgid "" +"Error: Unable to process. Refresh the page to load changes and try again." +msgstr "" +"Fehler: Vorgang abgebrochen. Aktualisieren Sie die Seite um Änderungen zu " +"laden und versuchen Sie es noch einmal." -#: course/gradebook.php:615 course/gradebook.php:861 -msgid "Check:" -msgstr "Überprüfen:" +#: admin/modcourseorder.php:133 course/addoutcomes.php:171 +#: course/course.php:627 course/managecalitems.php:89 +msgid "" +"You have unrecorded changes. Are you sure you want to abandon your changes?" +msgstr "" +"Sie haben ungespeicherte Änderungen. Sind Sie sicher, dass Sie Ihre " +"Änderungen verwerfen wollen?" -#: assessment/displayq2.php:1878 assessment/displayq2.php:2553 -#: assessment/displayq2.php:2652 -msgid "Clear All" -msgstr "Alles leeren" +#: admin/modcourseorder.php:153 +msgid "" +"Are you sure you want to delete this course group? This will not delete the " +"included courses." +msgstr "" +"Sind Sie sicher, dass Sie diese Kursgruppe löschen wollen? Dies löscht die " +"Kurse in diesen Gruppen nicht." -#: assessment/displayq2.php:1650 assessment/displayq2.php:2225 -#: assessment/displayq2.php:2295 -msgid "Click and drag and arrows to adjust the values." -msgstr "Klicken und Ziehen Sie die Pfeile, um die Werte anzupassen." +#: admin/modcourseorder.php:166 +msgid "Course Order" +msgstr "Ordnung im Kurs" -#: assessment/showtest.php:1365 assessment/showtest.php:2044 -msgid "Click here to finalize assessment and summarize score" -msgstr "" -"Klicken Sie hier, um den Test fertigzustellen und die Punkte zusammenzuzählen" +#: admin/modcourseorder.php:169 +msgid "Display Order" +msgstr "Darstellungs-Reihenfolge" -#: course/courseshowitems.php:101 course/courseshowitems.php:1622 -#: course/courseshowitems.php:102 course/courseshowitems.php:1623 -msgid "Collapsed" -msgstr "eingeklappt" +#: admin/modcourseorder.php:171 index.php:457 +msgid "Courses you're taking" +msgstr "Kurse, an denen Sie teilnehmen" -#: course/gradebook.php:543 -msgid "Color:" -msgstr "Farbe:" +#: admin/modcourseorder.php:173 index.php:454 +msgid "Courses you're tutoring" +msgstr "Kurse, die Sie unterstützen" -#: course/gradebook.php:535 -msgid "Comments" -msgstr "Kommentare" +#: admin/modcourseorder.php:175 index.php:450 +msgid "Courses you're teaching" +msgstr "Kurse, an denen Sie lehren" -#: course/course.php:406 course/course.php:407 -msgid "Communication" -msgstr "Kommunikation" +#: admin/modcourseorder.php:179 +msgid "" +"Use colored boxes to drag-and-drop order and move courses inside groups." +msgstr "" +"Ziehen Sie die farbigen Boxen, um die Reihenfolge der Kurse in der Gruppe zu " +"verändern." + +#: admin/modcourseorder.php:179 course/addassessment.php:554 +#: course/addassessment2.php:553 course/addblock.php:237 +#: course/addforum.php:306 course/addinlinetext.php:295 +#: course/addlinkedtext.php:344 course/addoutcomes.php:239 +#: course/addrubric.php:99 course/addwiki.php:160 course/course.php:716 +#: course/course.php:719 course/editsnippets.php:227 +#: course/editsnippets.php:255 course/exception.php:188 +#: course/gbsettings.php:402 course/gradebook.php:734 course/gradebook.php:1293 +#: course/latepasses.php:175 course/managecalitems.php:133 +#: course/managecalitems.php:161 course/masschgdates.php:404 +msgid "Save Changes" +msgstr "Änderungen speichern" -#: assessment/showtest.php:1209 assessment/showtest.php:2442 -#: assessment/showtest.php:1427 assessment/showtest.php:3085 -#: assessment/showtest.php:1656 assessment/showtest.php:3373 -msgid "Continue" -msgstr "Fortfahren" +#: admin/modcourseorder.php:181 +msgid "Add Course Group" +msgstr "Kurs-Gruppe anlegen" -#: assessment/showtest.php:1549 assessment/showtest.php:1556 -#: assessment/showtest.php:1559 assessment/showtest.php:1855 -#: assessment/showtest.php:1862 assessment/showtest.php:1865 -#: assessment/showtest.php:2091 assessment/showtest.php:2098 -#: assessment/showtest.php:2101 -#, php-format -msgid "Continue video to %s" -msgstr "Im Video zu %s fortfahren" +#: admin/modcourseorder.php:189 admin/unhidefromcourselist.php:90 index.php:570 +msgid "Unavailable" +msgstr "Nicht verfügbar" -#: course/course.php:455 course/courseshowitems.php:163 -#: course/courseshowitems.php:216 course/courseshowitems.php:270 -#: course/courseshowitems.php:362 course/courseshowitems.php:409 -#: course/courseshowitems.php:470 course/courseshowitems.php:646 -#: course/courseshowitems.php:683 course/courseshowitems.php:720 -#: course/courseshowitems.php:789 course/courseshowitems.php:837 -#: course/courseshowitems.php:910 course/courseshowitems.php:938 -#: course/courseshowitems.php:1040 course/courseshowitems.php:1066 -#: course/courseshowitems.php:1189 course/courseshowitems.php:1219 -#: course/courseshowitems.php:1315 course/courseshowitems.php:1344 -#: course/courseshowitems.php:1665 course/courseshowitems.php:1737 -#: course/courseshowitems.php:1789 course/courseshowitems.php:1836 -#: course/courseshowitems.php:1883 course/courseshowitems.php:1930 -#: course/courseshowitems.php:164 course/courseshowitems.php:217 -#: course/courseshowitems.php:271 course/courseshowitems.php:363 -#: course/courseshowitems.php:410 course/courseshowitems.php:471 -#: course/courseshowitems.php:647 course/courseshowitems.php:684 -#: course/courseshowitems.php:721 course/courseshowitems.php:790 -#: course/courseshowitems.php:838 course/courseshowitems.php:911 -#: course/courseshowitems.php:939 course/courseshowitems.php:1041 -#: course/courseshowitems.php:1067 course/courseshowitems.php:1190 -#: course/courseshowitems.php:1220 course/courseshowitems.php:1316 -#: course/courseshowitems.php:1345 course/courseshowitems.php:1666 -#: course/courseshowitems.php:1738 course/courseshowitems.php:1790 -#: course/courseshowitems.php:1837 course/courseshowitems.php:1884 -#: course/courseshowitems.php:1931 course/course.php:456 -msgid "Copy" -msgstr "Kopieren" +#: admin/modcourseorder.php:193 index.php:574 +msgid "Starts " +msgstr "Beginnt " -#: course/course.php:592 course/course.php:600 course/course.php:630 -#: course/course.php:593 course/course.php:601 course/course.php:631 -msgid "Copy Course Items" -msgstr "Kurselemente kopieren" +#: admin/modcourseorder.php:197 index.php:578 +msgid "Ended " +msgstr "Endet " -#: index.php:357 index.php:406 index.php:359 index.php:408 index.php:358 -#: index.php:407 -msgid "Course" -msgstr "Kurs" +#: admin/modcourseorder.php:236 +msgid "Displayed Courses" +msgstr "Angezeigte Kurse" -#: course/course.php:454 course/course.php:455 -msgid "Course Items" -msgstr "Kurselemente" +#: admin/modcourseorder.php:253 +msgid "Hidden Courses" +msgstr "Versteckte Kurse" -#: course/course.php:467 course/course.php:605 course/course.php:468 -#: course/course.php:606 -msgid "Course Settings" -msgstr "Kurseinstellungen" +#: admin/transfercourse.php:113 +msgid "Transfer Course Ownership" +msgstr "Den Kurs als Eigentümer an einen anderen Dozenten übergeben" -#: course/course.php:91 course/course.php:92 -msgid "Course does not exist. Return to main page" -msgstr "" -"Kurs existiert nicht. Zurück zur Hauptseite" +#: admin/unhidefromcourselist.php:74 +msgid "Un-hide from course list" +msgstr "Wieder auf der Kursliste anzeigen" -#: index.php:294 index.php:296 index.php:295 -msgid "Courses you're taking" -msgstr "Kurse, an denen Sie teilnehmen" +#: admin/unhidefromcourselist.php:76 admin/userdetails.php:396 +#: admin/userreportdetails.php:519 course/courseshowitems.php:133 +#: course/courseshowitems.php:2168 course/courseshowitems.php:2170 +#: course/gradebook.php:455 index.php:70 +msgid "Settings" +msgstr "Einstellungen" -#: index.php:287 index.php:289 index.php:288 -msgid "Courses you're teaching" +#: admin/unhidefromcourselist.php:77 admin/userdetails.php:397 +#: admin/userreportdetails.php:520 index.php:72 +msgid "Add/remove teachers" +msgstr "Lehrer hinzufügen/entfernen" + +#: admin/unhidefromcourselist.php:78 admin/userdetails.php:398 +#: admin/userreportdetails.php:521 index.php:73 +msgid "Transfer ownership" +msgstr "An anderen Eigentümer übertragen" + +#: admin/unhidefromcourselist.php:81 index.php:79 +msgid "Remove yourself as a co-teacher" +msgstr "Sich selbst als Lehrer aus dem Kurs entfernen" + +#: admin/unhidefromcourselist.php:86 admin/unhidefromcourselist.php:103 +#: index.php:512 index.php:567 +msgid "course is scheduled for cleanup" +msgstr "Kurs ist zur Bereinigung vorgesehen" + +#: admin/userdetails.php:27 admin/userdetails.php:168 +#: admin/userreportdetails.php:26 admin/userreportdetails.php:257 +msgid "User Detail" +msgstr "Benutzer-Details" + +#: admin/userdetails.php:82 admin/userreportdetails.php:105 +msgid "Deleted" +msgstr "Gelöscht" + +#: admin/userdetails.php:84 admin/userdetails.php:109 admin/userdetails.php:135 +#: admin/userreportdetails.php:107 admin/userreportdetails.php:197 +#: admin/userreportdetails.php:223 +msgid "Available to students" +msgstr "Für Studierende verfügbar" + +#: admin/userdetails.php:84 admin/userdetails.php:109 admin/userdetails.php:135 +#: admin/userreportdetails.php:107 admin/userreportdetails.php:197 +#: admin/userreportdetails.php:223 +msgid "Hidden from students" +msgstr "Für Studierende unsichtbar" + +#: admin/userdetails.php:86 admin/userdetails.php:113 admin/userdetails.php:139 +#: admin/userreportdetails.php:109 admin/userreportdetails.php:201 +#: admin/userreportdetails.php:227 +msgid "Locked for Assessment" +msgstr "Gesperrter Test" + +#: admin/userdetails.php:89 admin/userdetails.php:116 admin/userdetails.php:142 +#: admin/userdetails.php:379 admin/userreportdetails.php:112 +#: admin/userreportdetails.php:204 admin/userreportdetails.php:230 +#: admin/userreportdetails.php:502 +msgid "Hidden on User's Home Page" +msgstr "Auf er Startseite des Benutzers ausgeblendet" + +#: admin/userdetails.php:174 +msgid "Edit User" +msgstr "Benutzer bearbeiten" + +#: admin/userdetails.php:175 +msgid "Add Course" +msgstr "Kurs hinzufügen" + +#: admin/userdetails.php:176 +msgid "Emulate User" +msgstr "Benutzer simulieren" + +#: admin/userdetails.php:178 admin/userlti.php:94 admin/userlti.php:167 +msgid "LTI Connections" +msgstr "LTI-Verbindungen" + +#: admin/userdetails.php:190 admin/userreportdetails.php:272 +msgid "Subgroup of" +msgstr "Untergruppe von" + +#: admin/userdetails.php:198 admin/userreportdetails.php:297 +msgid "Jump to" +msgstr "Gehe zu" + +#: admin/userdetails.php:200 admin/userdetails.php:212 +#: admin/userreportdetails.php:299 admin/userreportdetails.php:311 +msgid "Courses Teaching" msgstr "Kurse, an denen Sie lehren" -#: index.php:291 index.php:293 index.php:292 -msgid "Courses you're tutoring" +#: admin/userdetails.php:203 admin/userdetails.php:256 +#: admin/userreportdetails.php:302 admin/userreportdetails.php:379 +msgid "Courses Tutoring" msgstr "Kurse, die Sie unterstützen" -#: assessment/showtest.php:951 assessment/showtest.php:1176 -#: assessment/showtest.php:1366 -msgid "Create new version." -msgstr "Neue Version erzeugen" +#: admin/userdetails.php:206 admin/userdetails.php:297 +#: admin/userreportdetails.php:305 admin/userreportdetails.php:420 +msgid "Courses Taking" +msgstr "Kurse, an denen Sie teilnehmen" -#: assessment/showtest.php:1073 assessment/showtest.php:1285 -#: assessment/showtest.php:1481 -msgid "Create new versions of all questions." -msgstr "Neue Version aller Fragen erzeugen" +#: admin/userdetails.php:215 admin/userdetails.php:259 +#: admin/userdetails.php:300 admin/userlti.php:196 +#: admin/userreportdetails.php:314 admin/userreportdetails.php:382 +#: admin/userreportdetails.php:423 +msgid "Course ID" +msgstr "Kurs-ID" + +#: admin/userdetails.php:216 admin/userdetails.php:260 +#: admin/userdetails.php:301 admin/userreportdetails.php:319 +#: admin/userreportdetails.php:383 admin/userreportdetails.php:424 +msgid "Status" +msgstr "Status" + +#: admin/userdetails.php:217 admin/userreportdetails.php:320 +msgid "Owner (if not user)" +msgstr "Eigentümer (wenn nicht Benutzer)" + +#: admin/userdetails.php:261 admin/userdetails.php:302 +#: admin/userreportdetails.php:384 admin/userreportdetails.php:425 +msgid "Course Owner" +msgstr "Kurseigentümer" + +#: admin/userdetails.php:393 admin/userreportdetails.php:516 +msgid "Return to home page course list" +msgstr "Zur Kursseite zurückkehren" -#: assessment/showtest.php:869 assessment/showtest.php:1092 -#: assessment/showtest.php:1263 -msgid "Current Group Members:" -msgstr "Aktuelle Gruppenmitglieder:" +#: admin/userdetails.php:394 admin/userreportdetails.php:517 +msgid "Hide from home page course list" +msgstr "Aus der Kursliste ausblenden" -#: course/courseshowitems.php:315 course/courseshowitems.php:316 -msgid "Currently Showing" -msgstr "Gerade angezeigt" +#: admin/userlti.php:109 +msgid "Are you SURE?" +msgstr "Sind Sie SICHER?" -#: course/course.php:463 course/course.php:464 -msgid "Dates" -msgstr "Daten" +#: admin/userlti.php:173 +msgid "LTI user connections" +msgstr "Benutzerverbindungen über LTI" -#: assessment/displayq2.php:2878 assessment/displayq2.php:3802 -#: assessment/displayq2.php:3949 -msgid "Debug info: empty, missing, or invalid $answer" -msgstr "Debuginfo: leere, fehlende oder ungültiges $answer" +#: admin/userlti.php:175 admin/userlti.php:197 +msgid "Key:org" +msgstr "Key.org" -#: assessment/displayq2.php:2861 -msgid "Debug info: empty, missingor invalid $answer" -msgstr "Debuginfo: leere, fehlende oder ungültiges $answer" +#: admin/userlti.php:176 +msgid "Remote Userid" +msgstr "Benutzer ID (remote)" -#: assessment/displayq2.php:3146 assessment/displayq2.php:4132 -#: assessment/displayq2.php:4299 -msgid "" -"Debug info: function evaled to Not-a-number at all test points. Check " -"$domain" -msgstr "Debuginfo: Funktion ergibt keine Zahl an allen Testpunkten. " +#: admin/userlti.php:177 admin/userlti.php:199 admin/userlti.php:227 +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:311 javascript/drawing_min.js:1 +msgid "Remove" +msgstr "Entfernen" -#: assessment/displayq2.php:4917 assessment/displayq2.php:6449 -#: assessment/displayq2.php:6789 -msgid "Decimal values are not allowed" -msgstr "Dezimalwerte sind nicht erlaubt" +#: admin/userlti.php:185 admin/userlti.php:213 +msgid "Remove connection" +msgstr "Verbindung entfernen" -#: course/gradebook.php:435 course/gradebook.php:571 -msgid "Default" -msgstr "Standard" +#: admin/userlti.php:193 +msgid "LTI course connections" +msgstr "LTI-Verbindungen des Kurses" -#: course/courseshowitems.php:162 course/courseshowitems.php:215 -#: course/courseshowitems.php:269 course/courseshowitems.php:361 -#: course/courseshowitems.php:408 course/courseshowitems.php:469 -#: course/courseshowitems.php:532 course/courseshowitems.php:645 -#: course/courseshowitems.php:682 course/courseshowitems.php:719 -#: course/courseshowitems.php:774 course/courseshowitems.php:788 -#: course/courseshowitems.php:836 course/courseshowitems.php:909 -#: course/courseshowitems.php:937 course/courseshowitems.php:1039 -#: course/courseshowitems.php:1065 course/courseshowitems.php:1188 -#: course/courseshowitems.php:1218 course/courseshowitems.php:1314 -#: course/courseshowitems.php:1343 course/courseshowitems.php:1664 -#: course/courseshowitems.php:1736 course/courseshowitems.php:1788 -#: course/courseshowitems.php:1835 course/courseshowitems.php:1882 -#: course/courseshowitems.php:1929 course/courseshowitems.php:163 -#: course/courseshowitems.php:216 course/courseshowitems.php:270 -#: course/courseshowitems.php:362 course/courseshowitems.php:409 -#: course/courseshowitems.php:470 course/courseshowitems.php:533 -#: course/courseshowitems.php:646 course/courseshowitems.php:683 -#: course/courseshowitems.php:720 course/courseshowitems.php:775 -#: course/courseshowitems.php:789 course/courseshowitems.php:837 -#: course/courseshowitems.php:910 course/courseshowitems.php:938 -#: course/courseshowitems.php:1040 course/courseshowitems.php:1066 -#: course/courseshowitems.php:1189 course/courseshowitems.php:1219 -#: course/courseshowitems.php:1315 course/courseshowitems.php:1344 -#: course/courseshowitems.php:1665 course/courseshowitems.php:1737 -#: course/courseshowitems.php:1789 course/courseshowitems.php:1836 -#: course/courseshowitems.php:1883 course/courseshowitems.php:1930 -msgid "Delete" -msgstr "Löschen" +#: admin/userlti.php:198 +msgid "contextid / label" +msgstr "contextid/label" -#: infoheader.php:7 -msgid "Diagnostics" -msgstr "Diagnose" +#: admin/userlti.php:220 +msgid "Click a contextid above to list the associated placements" +msgstr "Wählen Sie oben eine contextid um die zugeordneten Tests anzuzeigen" -#: index.php:258 index.php:260 index.php:259 -msgid "Documentation" -msgstr "Dokumentation" +#: admin/userlti.php:223 +msgid "Type" +msgstr "Typ" -#: assessment/displayq2.php:1954 assessment/displayq2.php:2660 -#: assessment/displayq2.php:2778 -msgid "Dot" -msgstr "Punkt" +#: admin/userlti.php:224 course/gradebook.php:747 +msgid "Item" +msgstr "Teil" -#: assessment/displayq2.php:1878 assessment/displayq2.php:2553 -#: assessment/displayq2.php:2652 -msgid "Draw:" -msgstr "Zeichnen:" +#: admin/userlti.php:225 +msgid "Item ID" +msgstr "Baustein-ID" -#: course/courseshowitems.php:602 course/courseshowitems.php:603 -#: assessment/showtest.php:975 assessment/showtest.php:977 -#: assessment/showtest.php:1212 assessment/showtest.php:1214 -#: assessment/showtest.php:1220 assessment/showtest.php:1222 -#: assessment/showtest.php:1402 assessment/showtest.php:1404 -#: assessment/showtest.php:1410 assessment/showtest.php:1412 -msgid "Due" -msgstr "fällig" +#: admin/userlti.php:226 +msgid "Linkid" +msgstr "Link-ID" -#: assessment/showtest.php:455 assessment/showtest.php:585 -#: assessment/showtest.php:705 -msgid "Due date has passed. Submission rejected. " -msgstr "Fälligkeitsdatum ist verstrichen. Einsendung zurückgewiesen." +#: admin/userreportdetails.php:70 +msgid "Password Reset" +msgstr "Passwort zurückgesetzt" -#: assessment/showtest.php:965 assessment/showtest.php:1204 -#: assessment/showtest.php:1394 -msgid "Due in " -msgstr "Fällig in " +#: admin/userreportdetails.php:278 +msgid "Total Active Students" +msgstr "Insgesamt aktive Studierende" -#: assessment/showtest.php:963 assessment/showtest.php:1202 -#: assessment/showtest.php:1392 -msgid "Due in under " -msgstr "Fällig in unter " +#: admin/userreportdetails.php:279 +msgid "direct" +msgstr "direkt" -#: course/gradebook.php:616 -msgid "E-mail" -msgstr "E-Mail" +#: admin/userreportdetails.php:280 +msgid "via LTI" +msgstr "über LTI" -#: course/courseshowitems.php:215 course/courseshowitems.php:408 -#: course/courseshowitems.php:216 course/courseshowitems.php:409 -msgid "Edit Contents" -msgstr "Inhalte editieren" +#: admin/userreportdetails.php:289 +msgid "Set temporary password to: " +msgstr "Setze temporäres Passwort auf: " -#: course/gradebook.php:671 -msgid "Edit Offline Scores" -msgstr "Offline-Punktzahlen editieren" +#: admin/userreportdetails.php:315 admin/userreportdetails.php:356 +#: course/gradebook.php:470 util/listnewteachers.php:58 +msgid "Active" +msgstr "Aktiv" -#: course/courseshowitems.php:1287 course/courseshowitems.php:1288 -#, php-format -msgid "Edits due by %s. " -msgstr "Veränderungen fällig bis %s. " +#: admin/userreportdetails.php:316 +msgid "Student Count" +msgstr "Anzahl der Studierenden" -#: assessment/displayq2.php:727 assessment/displayq2.php:863 -#: assessment/displayq2.php:1011 assessment/displayq2.php:1162 -#: assessment/displayq2.php:2069 assessment/displayq2.php:1045 -#: assessment/displayq2.php:1196 assessment/displayq2.php:2137 -msgid "Eeek! $questions is not defined or needs to be an array" -msgstr "Eeek! $questions ist nicht definiert oder muss ein Feld sein" +#: admin/userreportdetails.php:317 +msgid "Last Activity" +msgstr "Letzte Aktivität" -#: assessment/displayq2.php:2345 assessment/displayq2.php:2388 -#: assessment/displayq2.php:3203 assessment/displayq2.php:3247 -#: assessment/displayq2.php:3352 assessment/displayq2.php:3396 -msgid "" -"Eeek! $questions is not defined or needs to be an array. Make sure " -"$questions is defined in the Common Control section." -msgstr "" -"Eeek! $question ist nicht definiert oder muss ein Array sein. Stellen Sie " -"sicher, dass $question in der Common Control Sektion definiert wird" +#: admin/userreportdetails.php:318 +msgid "LTI?" +msgstr "LTI?" -#: assessment/displayq2.php:973 assessment/displayq2.php:1285 -#: assessment/displayq2.php:1319 -msgid "Eeek! $questions or $answers is not defined or needs to be an array" -msgstr "" -"Eeek! $questions oder $answers ist nicht definiert oder muss ein Array sein" +#: admin/userreportdetails.php:321 +msgid "Based on" +msgstr "Beruht auf" -#: assessment/displayq2.php:2444 assessment/displayq2.php:3304 -#: assessment/displayq2.php:3453 -msgid "" -"Eeek! $questions or $answers is not defined or needs to be an array. Make " -"sure both are defined in the Common Control section." -msgstr "" -"Eeek! $questions oder $answers ist nicht definiert oder muss ein Array sein." -"Stellen Sie sicher, dass beider in der Common Control Sektion definiert " -"werden." +#: admin/userreportdetails.php:356 +msgid "Old" +msgstr "Alt" -#: assessment/interpret5.php:394 -#, php-format -msgid "Eeek.. unallowed macro %s" -msgstr "Eeek.. Makro %s ist nicht erlaubt" +#: admin/userreportdetails.php:367 util/listnewteachers.php:69 +msgid "LTI" +msgstr "LTI" -#: assessment/interpret5.php:326 -#, php-format -msgid "Eeek.. unallowed var %s!" -msgstr "Eeek.. Variable %s ist nicht erlaubt!" +#: admin/userreports.php:138 +msgid "Groups List" +msgstr "Gruppenliste" -#: course/gradebook.php:666 -msgid "Email" -msgstr "E-Mail" +#: admin/userreports.php:139 +msgid "New Instructors Report" +msgstr "Neu beantragte Dozenten-Kennungen" -#: index.php:341 index.php:343 index.php:342 -msgid "Enroll in a New Class" -msgstr "In einen neuen Kurs einschreiben" +#: assess2/AssessInfo.php:505 assessment/showtest.php:3283 +#: course/addassessment.php:1223 course/chgassessments.php:908 +msgid "points" +msgstr "Punkte" -#: assessment/displayq2.php:4892 assessment/displayq2.php:6419 -#: assessment/displayq2.php:6759 -#, php-format -msgid "" -"Enter %s as a fraction (like 3/5 or 10/4) or as a whole number (like 4 or -2)" -msgstr "" -"Geben Sie %s als Bruch (z.B. 3/5 oder 10/4) oder als ganze Zahl (z.B. 4 oder " -"-2) ein" +#: assess2/displayq3.php:310 assess2/questions/QuestionHtmlGenerator.php:214 +#: assessment/displayq2.php:336 +msgid "Answers may vary" +msgstr "Antworten können variieren" -#: assessment/displayq2.php:4904 assessment/displayq2.php:6436 -#: assessment/displayq2.php:6776 -#, php-format -msgid "" -"Enter %s as a fraction (like 3/5 or 10/4), a whole number (like 4 or -2), or " -"exact decimal (like 0.5 or 1.25)" +#: assess2/displayq3.php:337 assess2/displayq3.php:358 +#: assess2/questions/QuestionHtmlGenerator.php:702 +#: assess2/questions/QuestionHtmlGenerator.php:720 assessment/displayq2.php:367 +#: assessment/displayq2.php:388 +msgid "Hint:" +msgstr "Hinweis:" + +#: assess2/displayq3.php:393 assess2/displayq3.php:413 +#: assess2/displayq3.php:422 assess2/questions/QuestionHtmlGenerator.php:814 +#: assess2/questions/QuestionHtmlGenerator.php:835 +#: assess2/questions/QuestionHtmlGenerator.php:843 assessment/displayq2.php:435 +#: assessment/displayq2.php:455 assessment/displayq2.php:464 +msgid "Answer:" +msgstr "Antwort:" + +#: assess2/displayq3.php:395 assess2/displayq3.php:415 +#: assess2/displayq3.php:424 assess2/questions/QuestionHtmlGenerator.php:816 +#: assess2/questions/QuestionHtmlGenerator.php:837 +#: assess2/questions/QuestionHtmlGenerator.php:845 assessment/displayq2.php:437 +#: assessment/displayq2.php:457 assessment/displayq2.php:466 +msgid "Show Answer" +msgstr "Antwort anzeigen" + +#: assess2/displayq3.php:449 assess2/displayq3.php:451 +#: assess2/displayq3.php:610 assess2/questions/QuestionHtmlGenerator.php:953 +#: assess2/questions/models/Question.php:168 assessment/displayq2.php:491 +#: assessment/displayq2.php:493 assessment/displayq2.php:607 +#: assessment/showsoln.php:26 +msgid "Written Example" +msgstr "Musterlösung" + +#: assess2/displayq3.php:451 assess2/displayq3.php:488 +#: assess2/questions/QuestionHtmlGenerator.php:514 assessment/displayq2.php:493 +#: assessment/displayq2.php:533 assessment/showtest.php:2993 +#: assessment/showtest.php:3052 assessment/showtest.php:3054 +#: assessment/showtest.php:3587 assessment/showtest.php:3598 +#: assessment/showtest.php:3716 assessment/testutil.php:819 +#: assessment/testutil.php:916 assessment/testutil.php:918 +#: javascript/livepoll.js:418 +msgid "Question" +msgstr "Frage" + +#: assess2/displayq3.php:454 assess2/questions/QuestionHtmlGenerator.php:955 +#: assessment/displayq2.php:496 +msgid "This solution is for a similar problem, not your specific version" msgstr "" -"Geben Sie %s als Bruch (z.B. 3/5 oder 10/4), als ganze Zahl (z.B. 4 oder -2) " -"oder genaue Dezimalzahl (z.B. 0.5 oder 1.25) ein" +"Diese Lösung ist für ein ähnliches Problem, nicht für diese spezielle Version" -#: assessment/displayq2.php:4910 assessment/displayq2.php:6442 -#, php-format +#: assess2/displayq3.php:524 assess2/questions/QuestionHtmlGenerator.php:556 +#: assessment/displayq2.php:655 +msgid "Detailed Solution" +msgstr "Detaillierte Lösung" + +#: assess2/displayq3.php:526 assess2/questions/QuestionHtmlGenerator.php:558 +#: assessment/displayq2.php:657 +msgid "Show Detailed Solution" +msgstr "Zeige detaillierte Lösung an" + +#: assess2/displayq3.php:548 assessment/displayq2.php:617 +msgid "Box" +msgstr "Antwort" + +#: assess2/displayq3.php:578 assess2/questions/models/Question.php:161 +#: assessment/displayq2.php:572 +msgid "Get help: " +msgstr "Hilfe erhalten: " + +#: assess2/displayq3.php:1075 +#: assess2/questions/answerboxes/NumberAnswerBox.php:73 +#: assessment/displayq2.php:1120 msgid "" -"Enter %s as a number (like 5, -3, 2.2) or as a calculation (like 5/3, 2^3, " -"5+4)" +"Enter your answer as a list of integers separated with commas: Example: -4, " +"3, 2" msgstr "" -"Geben Sie %s als Zahl (z.B. 5, -3, 2.2) oder als Berechnung (z.B. 5/3, 2^3, " -"5+4) ein" +"Geben Sie Ihre Antwort als Liste von kommaseparierten Werten ein: Beispiel: " +"-4, 3, 2" -#: assessment/displayq2.php:4895 assessment/displayq2.php:6426 -#: assessment/displayq2.php:6766 -#, php-format +#: assess2/displayq3.php:1076 +#: assess2/questions/answerboxes/NumberAnswerBox.php:74 +#: assessment/displayq2.php:1121 +msgid "Enter a list of integers" +msgstr "Geben Sie eine Liste von ganzen Zahlen ein" + +#: assess2/displayq3.php:1078 +#: assess2/questions/answerboxes/NumberAnswerBox.php:76 +#: assessment/displayq2.php:1123 msgid "" -"Enter %s as a reduced fraction (like 5/3, not 10/6) or as a whole number " -"(like 4 or -2)" +"Enter your answer as a list of integer or decimal numbers separated with " +"commas: Examples: -4, 3, 2.5172" msgstr "" -"Geben Sie %s als gekürzten Bruch (z.B. 5/3, nicht 10/6) oder als ganze Zahl " -"(z.B. 4 oder -2) ein" +"Geben Sie Ihre Antwort als Komma-getrennte Liste von Ganz- oder " +"Dezimalzahlen ein: Beispiele: -4, 3, 2.5172" -#: assessment/displayq2.php:4898 assessment/displayq2.php:6430 -#: assessment/displayq2.php:6770 -#, php-format +#: assess2/displayq3.php:1079 +#: assess2/questions/answerboxes/NumberAnswerBox.php:77 +#: assessment/displayq2.php:1124 +msgid "Enter a list of integer or decimal numbers" +msgstr "Geben Sie eine Liste von ganzen Zahlen oder Dezimalzahlen ein" + +#: assess2/displayq3.php:1083 +#: assess2/questions/answerboxes/NumberAnswerBox.php:81 +#: assessment/displayq2.php:1128 msgid "" -"Enter %s as a reduced mixed number or as a whole number. Example: 2 1/2 = 2 " -"½" +"Enter your answer as a set of integers separated with commas: Example: {-4, " +"3, 2}" msgstr "" -"Geben Sie %s in gekürzter und gemischter Schreibweise oder als ganze Zahl " -"ein. Beispiel: 2 1/2 = 2 ½" - -#: assessment/displayq2.php:4901 -#, php-format +"Geben Sie Ihre Antwort als Menge von kommaseparierten ganzen Zahlen ein: " +"Beispiel: {-4, 3, 2}" + +#: assess2/displayq3.php:1084 +#: assess2/questions/answerboxes/NumberAnswerBox.php:82 +#: assessment/displayq2.php:1129 +msgid "Enter a set of integers" +msgstr "Geben Sie eine Menge von ganzen Zahlen ein" + +#: assess2/displayq3.php:1086 +#: assess2/questions/answerboxes/NumberAnswerBox.php:84 +#: assessment/displayq2.php:1131 msgid "" -"Enter %s as a reduced mixed number, reduced improper fraction, or as a whole " -"number. Example: 2 1/2 = 2 ½" +"Enter your answer as a set of integer or decimal numbers separated with " +"commas: Example: {-4, 3, 2.5172}" msgstr "" -"Geben Sie %s in gekürzter und gemischter Schreibweise, als gekürzten " -"unechten Bruch oder als ganze Zahl ein. Beispiel: 2 1/2 = 2 ½" +"Geben Sie Ihre Antwort als Komma-getrennte Menge von Ganz- oder " +"Dezimalzahlen ein: Beispiel: {-4, 3, 2.5172}" -#: assessment/displayq2.php:4907 assessment/displayq2.php:6439 -#: assessment/displayq2.php:6779 -#, php-format +#: assess2/displayq3.php:1087 +#: assess2/questions/answerboxes/NumberAnswerBox.php:85 +#: assessment/displayq2.php:1132 +msgid "Enter a set of integer or decimal numbers" +msgstr "Geben Sie eine Menge von ganzen Zahlen oder Dezimalzahlen ein" + +#: assess2/displayq3.php:1091 +#: assess2/questions/answerboxes/NumberAnswerBox.php:89 +#: assessment/displayq2.php:1136 +msgid "Enter your answer as an integer. Examples: 3, -4, 0" +msgstr "Geben Sie Ihre Antwort als ganze Zahl ein. Beispiele: 3,-4,0" + +#: assess2/displayq3.php:1092 +#: assess2/questions/answerboxes/NumberAnswerBox.php:90 +#: assessment/displayq2.php:1137 +msgid "Enter an integer" +msgstr "Geben Sie eine ganze Zahl ein" + +#: assess2/displayq3.php:1094 +#: assess2/questions/answerboxes/NumberAnswerBox.php:92 +#: assessment/displayq2.php:1139 msgid "" -"Enter %s as in scientific notation. Example: 3*10^2 = 3 · 102" +"Enter your answer as an integer or decimal number. Examples: 3, -4, 5.5172" msgstr "" -"Geben Sie %s in wissenschaftlicher Notation ein. Beispiel: 3*10^2 = 3 " -"· 102" - -#: assessment/displayq2.php:1717 assessment/displayq2.php:2310 -#: assessment/displayq2.php:2385 -msgid "Enter all real numbers for solutions of that type" -msgstr "Geben Sie alle realen Zahlen für Lösungen dieses Typs ein" +"Geben Sie Ihre Antwort als Ganz- oder Dezimalzahl ein: Beispiele: 3, -4, " +"5.5172" -#: assessment/displayq2.php:1354 assessment/displayq2.php:1448 -#: assessment/displayq2.php:1777 assessment/displayq2.php:1892 -#: assessment/displayq2.php:1840 assessment/displayq2.php:1957 -msgid "Enter DNE for Does Not Exist" -msgstr "Geben Sie DNE (Does Not Exist) ein, wenn keine Antwort existiert" +#: assess2/displayq3.php:1095 assess2/displayq3.php:1775 +#: assess2/questions/answerboxes/MatrixAnswerBox.php:59 +#: assess2/questions/answerboxes/NumberAnswerBox.php:93 +#: assessment/displayq2.php:1140 assessment/displayq2.php:1807 +msgid "Enter an integer or decimal number" +msgstr "Geben Sie eine ganze Zahl oder eine Dezimalzahl ein" -#: assessment/displayq2.php:679 assessment/displayq2.php:4914 -#: assessment/displayq2.php:932 assessment/displayq2.php:6446 -#: assessment/displayq2.php:965 assessment/displayq2.php:6786 +#: assess2/displayq3.php:1099 assess2/displayq3.php:8138 +#: assess2/questions/answerboxes/NumberAnswerBox.php:97 +#: assess2/questions/answerboxhelpers.php:536 assessment/displayq2.php:1144 +#: assessment/displayq2.php:7978 msgid "Enter DNE for Does Not Exist, oo for Infinity" msgstr "" "Geben Sie DNE (Does Not Exist) ein, wenn keine Antwort existiert, oder oo " "für Unendlich" -#: assessment/displayq2.php:1641 assessment/displayq2.php:2216 -#: assessment/displayq2.php:2286 -msgid "Enter DNE for an empty set, oo for Infinity" -msgstr "Geben Sie DNE für eine leere Menge oder oo für Unendlich ein" +#: assess2/displayq3.php:1105 +#: assess2/questions/answerboxes/NumberAnswerBox.php:103 +#: assessment/displayq2.php:1150 +#, php-format +msgid "Your answer should include exactly %d decimal places." +msgstr "Ihre Antwort sollte auf %d Nachkommastellen genau sein." -#: assessment/displayq2.php:1445 assessment/displayq2.php:1482 -#: assessment/displayq2.php:1889 assessment/displayq2.php:1932 -#: assessment/displayq2.php:1954 assessment/displayq2.php:1998 -msgid "Enter a complex number" -msgstr "Geben Sie eine komplexe Zahl ein" +#: assess2/displayq3.php:1106 +#: assess2/questions/answerboxes/NumberAnswerBox.php:104 +#: assessment/displayq2.php:1151 +#, php-format +msgid ", with %d decimal places" +msgstr ", mit %d Nachkommastellen" -#: assessment/displayq2.php:4905 assessment/displayq2.php:6437 -#: assessment/displayq2.php:6777 -msgid "Enter a fraction or exact decimal" -msgstr "Geben Sie einen Bruch oder eine genaue Dezimalzahl ein" +#: assess2/displayq3.php:1109 +#: assess2/questions/answerboxes/NumberAnswerBox.php:107 +#: assessment/displayq2.php:1154 +#, php-format +msgid "Your answer should be accurate to at least %d decimal places." +msgstr "Ihre Antwort sollte auf wenigstens %d Nachkommastellen genau sein." -#: assessment/displayq2.php:4893 assessment/displayq2.php:6420 -#: assessment/displayq2.php:6760 -msgid "Enter a fraction or whole number" -msgstr "Geben Sie einen Bruch oder eine ganze Zahl ein" +#: assess2/displayq3.php:1110 assess2/displayq3.php:1778 +#: assess2/questions/answerboxes/MatrixAnswerBox.php:62 +#: assess2/questions/answerboxes/NumberAnswerBox.php:108 +#: assessment/displayq2.php:1155 assessment/displayq2.php:1810 +#, php-format +msgid ", accurate to at least %d decimal places" +msgstr ", auf %d Nachkommastellen genau" -#: assessment/displayq2.php:1442 assessment/displayq2.php:1479 -#: assessment/displayq2.php:1886 assessment/displayq2.php:1929 -#: assessment/displayq2.php:1951 assessment/displayq2.php:1995 -msgid "Enter a list of complex numbers" -msgstr "Geben Sie eine Liste von komplexen Zahlen ein" +#: assess2/displayq3.php:1121 assess2/displayq3.php:1674 +#: assess2/questions/answerboxes/CalculatedAnswerBox.php:104 +#: assess2/questions/answerboxes/NumberAnswerBox.php:119 +#: assessment/displayq2.php:1166 assessment/displayq2.php:1712 +#, php-format +msgid "Your answer should have exactly %d significant figures." +msgstr "Ihre Antwort sollte genau %d signifikante Figuren haben." -#: assessment/displayq2.php:4905 -msgid "Enter a list of fractions or exact decimals" -msgstr "Geben Sie eine Liste von Brüchen oder genauen Dezimalzahlen ein" +#: assess2/displayq3.php:1122 assess2/displayq3.php:1675 +#: assess2/questions/answerboxes/CalculatedAnswerBox.php:105 +#: assess2/questions/answerboxes/NumberAnswerBox.php:120 +#: assessment/displayq2.php:1167 assessment/displayq2.php:1713 +#, php-format +msgid ", with exactly %d significant figures" +msgstr ", mit genau %d signifikanten Figuren" -#: assessment/displayq2.php:4893 -msgid "Enter a list of fractions or whole numbers" -msgstr "Geben sie eine Liste von Brüchen oder ganzen Zahlen ein" +#: assess2/displayq3.php:1125 assess2/displayq3.php:1678 +#: assess2/questions/answerboxes/CalculatedAnswerBox.php:108 +#: assess2/questions/answerboxes/NumberAnswerBox.php:123 +#: assessment/displayq2.php:1170 assessment/displayq2.php:1716 +#, php-format +msgid "Your answer should have between %d and %d significant figures." +msgstr "Ihre Antwort sollte zwischen %d und %d signifikante Stellen haben." -#: assessment/displayq2.php:4911 -msgid "Enter a list of mathematical expressions" -msgstr "Geben Sie eine Liste von mathematischen Ausdrücken ein" +#: assess2/displayq3.php:1126 assess2/displayq3.php:1679 +#: assess2/questions/answerboxes/CalculatedAnswerBox.php:109 +#: assess2/questions/answerboxes/NumberAnswerBox.php:124 +#: assessment/displayq2.php:1171 assessment/displayq2.php:1717 +#, php-format +msgid ", with %d - %d significant figures" +msgstr ", mit %d - %d signifikanten Stellen" -#: assessment/displayq2.php:4899 assessment/displayq2.php:4902 -msgid "Enter a list of mixed numbers or whole numbers" -msgstr "Geben Sie eine Liste von gemischten Zahlen oder ganzen Zahlen ein" +#: assess2/displayq3.php:1138 assess2/displayq3.php:1691 +#: assess2/questions/answerboxes/CalculatedAnswerBox.php:121 +#: assess2/questions/answerboxes/NumberAnswerBox.php:136 +#: assessment/displayq2.php:1183 assessment/displayq2.php:1729 +#, php-format +msgid "Your answer should have at least %d significant figures." +msgstr "Ihre Antwort sollte mindestens %d signifikante Figuren haben." -#: assessment/displayq2.php:1349 assessment/displayq2.php:1396 -#: assessment/displayq2.php:1772 assessment/displayq2.php:1831 -#: assessment/displayq2.php:1835 assessment/displayq2.php:1895 -msgid "Enter a list of n-tuples" -msgstr "Geben Sie eine Liste von n-Tupeln ein" +#: assess2/displayq3.php:1139 assess2/displayq3.php:1692 +#: assess2/questions/answerboxes/CalculatedAnswerBox.php:122 +#: assess2/questions/answerboxes/NumberAnswerBox.php:137 +#: assessment/displayq2.php:1184 assessment/displayq2.php:1730 +#, php-format +msgid ", with at least %d significant figures" +msgstr ", mit mindestens %d signifikanten Figuren" -#: assessment/displayq2.php:4908 -msgid "Enter a list of numbers using scientific notation" -msgstr "Geben Sie eine Liste von Zahlen in wissenschaftlicher Schreibweise ein" +#: assess2/displayq3.php:1207 assess2/displayq3.php:1369 +#: assess2/displayq3.php:2521 +#: assess2/questions/answerboxes/ChoicesAnswerBox.php:48 +#: assess2/questions/answerboxes/MultipleAnswerAnswerBox.php:49 +#: assess2/questions/answerboxes/StringAnswerBox.php:148 +#: assessment/displayq2.php:1244 assessment/displayq2.php:1405 +#: assessment/displayq2.php:2501 +msgid "Eeek! $questions is not defined or needs to be an array" +msgstr "Eeek! $questions ist nicht definiert oder muss ein Feld sein" -#: assessment/displayq2.php:1340 assessment/displayq2.php:1387 -#: assessment/displayq2.php:1760 assessment/displayq2.php:1819 -#: assessment/displayq2.php:1823 assessment/displayq2.php:1883 -msgid "Enter a list of points" -msgstr "Geben Sie eine Liste von Punkten ein" +#: assess2/displayq3.php:1279 assess2/displayq3.php:1282 +#: assess2/displayq3.php:1288 assess2/displayq3.php:1293 +#: assess2/questions/answerboxes/ChoicesAnswerBox.php:93 +#: assess2/questions/answerboxes/ChoicesAnswerBox.php:96 +#: assess2/questions/answerboxes/ChoicesAnswerBox.php:102 +#: assess2/questions/answerboxes/ChoicesAnswerBox.php:107 +#: assessment/displayq2.php:1315 assessment/displayq2.php:1318 +#: assessment/displayq2.php:1324 assessment/displayq2.php:1329 +msgid "Select an answer" +msgstr "Wählen Sie eine Antwort aus" -#: assessment/displayq2.php:4896 -msgid "Enter a list of reduced fractions or whole numbers" -msgstr "Geben Sie eine Liste von gekürzten Brüchen oder ganzen Zahlen ein" +#: assess2/displayq3.php:1352 +#: assess2/questions/answerboxes/ChoicesAnswerBox.php:165 +#: assessment/displayq2.php:1388 +msgid "Select the best answer" +msgstr "Wählen Sie die beste Antwort aus" -#: assessment/displayq2.php:1528 assessment/displayq2.php:1987 -#: assessment/displayq2.php:2054 -msgid "Enter a list of text" -msgstr "Geben Sie eine Liste von Texten ein" +#: assess2/displayq3.php:1412 assess2/displayq3.php:1415 +#: assess2/questions/answerboxes/MultipleAnswerAnswerBox.php:103 +#: assess2/questions/answerboxes/MultipleAnswerAnswerBox.php:106 +#: assessment/displayq2.php:1448 assessment/displayq2.php:1451 +msgid "Select one, none, or multiple answers" +msgstr "Wählen Sie die eine, keine oder mehrere Antworten aus" -#: assessment/displayq2.php:1346 assessment/displayq2.php:1393 -#: assessment/displayq2.php:1766 assessment/displayq2.php:1825 -#: assessment/displayq2.php:1829 assessment/displayq2.php:1889 -msgid "Enter a list of vectors" -msgstr "Geben Sie eine Liste von Vektoren ein" +#: assess2/displayq3.php:1468 +#: assess2/questions/answerboxes/MultipleAnswerAnswerBox.php:158 +#: assessment/displayq2.php:1504 +msgid "Select all correct answers" +msgstr "Wählen Sie alle korrekten Antworten aus" -#: assessment/displayq2.php:674 assessment/displayq2.php:924 -#: assessment/displayq2.php:957 -msgid "Enter a list of whole or decimal numbers" -msgstr "Geben Sie eine Liste von ganzen Zahlen oder Dezimalzahlen ein" +#: assess2/displayq3.php:1492 +#: assess2/questions/answerboxes/MatchingAnswerBox.php:58 +#: assessment/displayq2.php:1528 +msgid "Eeek! $questions or $answers is not defined or needs to be an array" +msgstr "" +"Eeek! $questions oder $answers ist nicht definiert oder muss ein Array sein" -#: assessment/displayq2.php:4911 assessment/displayq2.php:6443 -#: assessment/displayq2.php:6783 -msgid "Enter a mathematical expression" -msgstr "Geben Sie einen mathematischen Ausdruck ein" +#: assess2/displayq3.php:1592 +#: assess2/questions/answerboxes/MatchingAnswerBox.php:169 +#: assessment/displayq2.php:1628 +msgid "In each pull-down, select the item that matches with the displayed item" +msgstr "" +"Wählen Sie den Eintrag aus dem Ausklappmenü aus, der zum angezeigten Eintrag " +"passt" -#: assessment/displayq2.php:4899 assessment/displayq2.php:6431 -#: assessment/displayq2.php:6771 -msgid "Enter a mixed number or whole number" -msgstr "Geben Sie eine gemischte oder eine ganze Zahl ein" +#: assess2/displayq3.php:1594 +#: assess2/questions/answerboxes/MatchingAnswerBox.php:171 +#: assessment/displayq2.php:1630 +msgid "" +"In each pull-down on the left, select the letter (a, b, c, etc.) of the " +"matching answer in the right-hand column" +msgstr "" +"Wählen Sie den Buchstaben (a, b, c, etc.) der passenden Antwort in der " +"Spalte auf der rechten Seite aus jedem Ausklappmenü links aus" -#: assessment/displayq2.php:4902 -msgid "Enter a mixed number, improper fraction, or whole number" +#: assess2/displayq3.php:1652 +#: assess2/questions/answerboxes/CalculatedAnswerBox.php:82 +#: assessment/displayq2.php:1690 +msgid "" +"Enter your answer as a list of values separated by commas: Example: -4, 3, 2" msgstr "" -"Geben Sie eine gemischte Zahl, einen unechten Bruch oder eine ganze Zahl ein" +"Geben Sie Ihre Antwort als kommagetrennte Liste von Werten ein. Beispiel: " +"-4, 3, 2" -#: assessment/displayq2.php:4908 assessment/displayq2.php:6440 -#: assessment/displayq2.php:6780 -msgid "Enter a number using scientific notation" -msgstr "Geben Sie eine Zahl in wissenschaftlicher Schreibweise ein" +#: assess2/displayq3.php:1653 assess2/displayq3.php:1656 +#: assess2/displayq3.php:2800 +#: assess2/questions/answerboxes/CalculatedAnswerBox.php:83 +#: assess2/questions/answerboxes/CalculatedAnswerBox.php:86 +#: assess2/questions/answerboxes/CalculatedIntervalAnswerBox.php:77 +#: assessment/displayq2.php:1691 assessment/displayq2.php:1694 +#: assessment/displayq2.php:2770 +msgid "each value" +msgstr "jeder Wert" -#: assessment/displayq2.php:1337 assessment/displayq2.php:1384 -#: assessment/displayq2.php:1757 assessment/displayq2.php:1816 -#: assessment/displayq2.php:1820 assessment/displayq2.php:1880 -msgid "Enter a point" -msgstr "Geben Sie einen Punkt ein" +#: assess2/displayq3.php:1655 +#: assess2/questions/answerboxes/CalculatedAnswerBox.php:85 +#: assessment/displayq2.php:1693 +msgid "" +"Enter your answer as a set of values separated with commas: Example: {-4, 3, " +"2}" +msgstr "" +"Geben Sie Ihre Antwort als Menge von kommaseparierten Werten ein: Beispiel: " +"{-4, 3, 2}" -#: assessment/displayq2.php:4896 assessment/displayq2.php:6427 -#: assessment/displayq2.php:6767 -msgid "Enter a reduced fraction or whole number" -msgstr "Geben Sie einen verkürzten Bruch oder eine ganze Zahl ein" +#: assess2/displayq3.php:1659 +#: assess2/questions/answerboxes/CalculatedAnswerBox.php:89 +#: assessment/displayq2.php:1697 +msgid "your answer" +msgstr "Ihre Antwort" -#: assessment/displayq2.php:1343 assessment/displayq2.php:1390 -#: assessment/displayq2.php:1763 assessment/displayq2.php:1822 -#: assessment/displayq2.php:1826 assessment/displayq2.php:1886 -msgid "Enter a vector" -msgstr "Geben Sie einen Vektor ein" +#: assess2/displayq3.php:1735 assess2/displayq3.php:1853 +#: assess2/displayq3.php:1958 assess2/displayq3.php:2089 +#: assess2/displayq3.php:2278 assess2/displayq3.php:2403 +#: assess2/displayq3.php:2550 assess2/displayq3.php:2832 +#: assess2/questions/answerboxes/CalculatedAnswerBox.php:165 +#: assess2/questions/answerboxes/CalculatedComplexAnswerBox.php:99 +#: assess2/questions/answerboxes/CalculatedIntervalAnswerBox.php:109 +#: assess2/questions/answerboxes/CalculatedMatrixAnswerBox.php:130 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:109 +#: assess2/questions/answerboxes/FunctionExpressionAnswerBox.php:156 +#: assess2/questions/answerboxes/MatrixAnswerBox.php:136 +#: assess2/questions/answerboxes/StringAnswerBox.php:177 +#: assessment/displayq2.php:1765 assessment/displayq2.php:1865 +#: assessment/displayq2.php:1932 assessment/displayq2.php:1953 +#: assessment/displayq2.php:2027 assessment/displayq2.php:2277 +#: assessment/displayq2.php:2385 assessment/displayq2.php:2497 +#: assessment/displayq2.php:2796 course/modquestion.php:242 +#: course/modquestion2.php:257 course/modquestiongrid.php:231 +#: course/modquestiongrid.php:308 course/modquestiongrid2.php:240 +#: course/modquestiongrid2.php:320 +msgid "Preview" +msgstr "Vorschau" -#: assessment/displayq2.php:677 assessment/displayq2.php:930 -#: assessment/displayq2.php:963 -msgid "Enter a whole or decimal number" -msgstr "Geben Sie eine ganze Zahl oder eine Dezimalzahl ein" +#: assess2/displayq3.php:1774 +#: assess2/questions/answerboxes/MatrixAnswerBox.php:58 +#: assessment/displayq2.php:1806 +msgid "Enter each element of the matrix as number (like 5, -3, 2.2)" +msgstr "Geben Sie jedes Element der Matrix als Zahl (z.B. 5, -2, 2.2) ein" + +#: assess2/displayq3.php:1777 assess2/displayq3.php:1828 +#: assess2/displayq3.php:2686 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:71 +#: assess2/questions/answerboxes/MatrixAnswerBox.php:61 +#: assess2/questions/answerboxes/MatrixAnswerBox.php:111 +#: assessment/displayq2.php:1809 assessment/displayq2.php:1855 +#: assessment/displayq2.php:2656 +#, php-format +msgid "Your numbers should be accurate to %d decimal places." +msgstr "Ihre Zahlen sollten auf %d Nachkommastellen genau sein." + +#: assess2/displayq3.php:1826 +#: assess2/questions/answerboxes/MatrixAnswerBox.php:109 +msgid "" +"Enter your answer as a matrix filled with numbers, like [(2,3,4),(3,4,5)]" +msgstr "" +"Geben Sie Ihre Antwort als mit Zahlen gefüllte Matrix wie [(2,3,4),(3,4,5)] " +"ein" + +#: assess2/displayq3.php:1885 assess2/displayq3.php:1934 +#: assess2/questions/answerboxes/CalculatedMatrixAnswerBox.php:59 +#: assess2/questions/answerboxes/CalculatedMatrixAnswerBox.php:107 +#: assessment/displayq2.php:1897 assessment/displayq2.php:1942 +msgid "each element of the matrix" +msgstr "jedes Element der Matrix" + +#: assess2/displayq3.php:1933 +#: assess2/questions/answerboxes/CalculatedMatrixAnswerBox.php:106 +#: assessment/displayq2.php:1941 +msgid "Enter your answer as a matrix, like ((2,3,4),(1,4,5))" +msgstr "Geben Sie Ihre Antwort als Matrix wie ((2,3,4),(3,4,5)) ein." -#: assessment/displayq2.php:1254 assessment/displayq2.php:1638 -#: assessment/displayq2.php:1673 +#: assess2/displayq3.php:2002 +#: assess2/questions/answerboxes/FunctionExpressionAnswerBox.php:69 +#: assessment/displayq2.php:1996 msgid "Enter an algebraic equation" msgstr "Geben Sie eine algebraische Gleichung ein" -#: assessment/displayq2.php:1256 assessment/displayq2.php:1640 -#: assessment/displayq2.php:1675 +#: assess2/displayq3.php:2004 +#: assess2/questions/answerboxes/FunctionExpressionAnswerBox.php:72 +#: assessment/displayq2.php:1998 msgid "Enter an algebraic expression" msgstr "Geben Sie einen algebraischen Ausdruck ein" -#: assessment/displayq2.php:1663 assessment/displayq2.php:2242 -#: assessment/displayq2.php:2312 -msgid "Enter an interval corresponding to the region to be shaded" -msgstr "" -"Geben Sie ein Intervall für den Bereich ein, der schattiert werden soll" - -#: assessment/displayq2.php:1718 assessment/displayq2.php:2311 -#: assessment/displayq2.php:2386 -msgid "Enter an interval using inequalities" -msgstr "Geben Sie ein Intervall mit Ungleichungen an" +#: assess2/displayq3.php:2095 +#: assess2/questions/answerboxes/FunctionExpressionAnswerBox.php:70 +#: assessment/displayq2.php:2105 +msgid "Enter your answer as an equation. Example: y=3x^2+1, 2+x+y=3" +msgstr "Geben Sie Ihre Antwort als Gleichung ein. Beispiel: y=3x^2+1, 2+x+y=3" -#: assessment/displayq2.php:1645 assessment/displayq2.php:1722 -#: assessment/displayq2.php:2220 assessment/displayq2.php:2319 -#: assessment/displayq2.php:2290 assessment/displayq2.php:2394 -msgid "Enter an interval using interval notation" -msgstr "Geben Sie ein Intervall in Intervallschreibweise ein" +#: assess2/displayq3.php:2095 assess2/displayq3.php:2097 +#: assess2/questions/answerboxes/FunctionExpressionAnswerBox.php:70 +#: assess2/questions/answerboxes/FunctionExpressionAnswerBox.php:73 +#: assessment/displayq2.php:2105 assessment/displayq2.php:2107 +msgid "Be sure your variables match those in the question" +msgstr "" +"Stellen Sie sicher, dass Ihre Variablen mit denen in der Frage übereinstimmen" -#: assessment/displayq2.php:1352 assessment/displayq2.php:1399 -#: assessment/displayq2.php:1775 assessment/displayq2.php:1834 -#: assessment/displayq2.php:1838 assessment/displayq2.php:1898 -msgid "Enter an n-tuple" -msgstr "Geben Sie ein n-Tupel ein" +#: assess2/displayq3.php:2097 +#: assess2/questions/answerboxes/FunctionExpressionAnswerBox.php:73 +#: assessment/displayq2.php:2107 +msgid "Enter your answer as an expression. Example: 3x^2+1, x/5, (a+b)/c" +msgstr "" +"Geben Sie Ihre Antwort als Ausdruck ein. Beispiel: 3x^2+1, x/5, (a+b)/c" -#: assessment/displayq2.php:1174 assessment/displayq2.php:1541 -#: assessment/displayq2.php:1576 -msgid "Enter each element of the matrix as number (like 5, -3, 2.2)" -msgstr "Geben Sie jedes Element der Matrix als Zahl (z.B. 5, -2, 2.2) ein" +#: assess2/displayq3.php:2148 assess2/displayq3.php:2226 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:58 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:56 +#: assessment/displayq2.php:2158 assessment/displayq2.php:2230 +msgid "Enter your answer as a point. Example: (2,5.5172)" +msgstr "Geben Sie Ihre Antwort als Punkt ein. Beispiel: (2, 5.5172)" -#: assessment/displayq2.php:1531 assessment/displayq2.php:1990 -#: assessment/displayq2.php:2057 -msgid "Enter text" -msgstr "Geben Sie Text ein" +#: assess2/displayq3.php:2149 assess2/displayq3.php:2227 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:59 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:57 +#: assessment/displayq2.php:2159 assessment/displayq2.php:2231 +msgid "Enter a point" +msgstr "Geben Sie einen Punkt ein" -#: assessment/displayq2.php:1339 assessment/displayq2.php:1386 -#: assessment/displayq2.php:1759 assessment/displayq2.php:1818 +#: assess2/displayq3.php:2151 assess2/displayq3.php:2229 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:61 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:59 +#: assessment/displayq2.php:2161 assessment/displayq2.php:2233 msgid "" "Enter your answer a list of points separated with commas. Example: (1,2), " -"(3.5,5)" +"(3.5172,5)" msgstr "" -"Geben Sie Ihre Antwort als kommagetrennte Liste von Punkten ein. Beispiel: " -"(1,2), (3.5,5)" +"Geben Sie Ihre Antwort als Komma getrennte Liste von Punkten ein. Beispiel: " +"(1, 2), (3.5172, 5)" + +#: assess2/displayq3.php:2152 assess2/displayq3.php:2230 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:62 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:60 +#: assessment/displayq2.php:2162 assessment/displayq2.php:2234 +msgid "Enter a list of points" +msgstr "Geben Sie eine Liste von Punkten ein" + +#: assess2/displayq3.php:2154 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:62 +#: assessment/displayq2.php:2164 +msgid "Enter your answer as a vector. Example: <2,5.5>" +msgstr "Geben Sie Ihre Antwort als Vektor ein. Beispiel: <2,5.5>" -#: assessment/displayq2.php:1345 assessment/displayq2.php:1392 -#: assessment/displayq2.php:1765 assessment/displayq2.php:1824 +#: assess2/displayq3.php:2155 assess2/displayq3.php:2233 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:65 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:63 +#: assessment/displayq2.php:2165 assessment/displayq2.php:2237 +msgid "Enter a vector" +msgstr "Geben Sie einen Vektor ein" + +#: assess2/displayq3.php:2157 assess2/displayq3.php:2235 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:67 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:65 +#: assessment/displayq2.php:2167 assessment/displayq2.php:2239 msgid "" "Enter your answer a list of vectors separated with commas. Example: <1,2>, " -"<3.5,5>" +"<3.5172,5>" msgstr "" -"Geben Sie Ihre Antwort als kommagetrennte Liste von Vektoren ein. Beispiel: " -"<1,2>, <3.5,5>" +"Geben Sie Ihre Antwort als Komma getrennte Liste von Vektoren ein. Beispiel: " +"<1, 2>, <3.5172, 5>" -#: assessment/displayq2.php:1444 assessment/displayq2.php:1888 -msgid "Enter your answer as a complex number in a+bi form. Example: 2+5.5i" -msgstr "" -"Geben Sie Ihre Antwort als komplexe Zahl der Form a+bi ein. Beispiel: 2+5.5i" +#: assess2/displayq3.php:2158 assess2/displayq3.php:2236 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:68 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:66 +#: assessment/displayq2.php:2168 assessment/displayq2.php:2240 +msgid "Enter a list of vectors" +msgstr "Geben Sie eine Liste von Vektoren ein" -#: assessment/displayq2.php:1481 assessment/displayq2.php:1931 -#: assessment/displayq2.php:1997 -msgid "Enter your answer as a complex number in a+bi form. Example: 2+5i" +#: assess2/displayq3.php:2160 assess2/displayq3.php:2238 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:70 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:68 +#: assessment/displayq2.php:2170 assessment/displayq2.php:2242 +msgid "Enter your answer as a set of numbers. Example: {1,2,3}" +msgstr "Geben Sie Ihre ANtwort als Menge von Zahlen ein, Beispiel: {1,2,3}" + +#: assess2/displayq3.php:2161 assess2/displayq3.php:2239 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:71 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:69 +#: assessment/displayq2.php:2171 assessment/displayq2.php:2243 +msgid "Enter a set" +msgstr "Geben Sie eine Menge ein" + +#: assess2/displayq3.php:2163 assess2/displayq3.php:2241 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:73 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:71 +#: assessment/displayq2.php:2173 assessment/displayq2.php:2245 +msgid "" +"Enter your answer as a list of n-tuples of numbers separated with commas: " +"Example: (1,2),(3.5172,4)" msgstr "" -"Geben Sie Ihre Antwort als komplexe Zahl der Form a+bi ein. Beispiel: 2+5i" +"Geben Sie Ihre Antwort als Komma getrennte Liste von n-Tupeln ein. Beispiel: " +"(1, 2), (3.5172, 4)" + +#: assess2/displayq3.php:2164 assess2/displayq3.php:2242 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:74 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:72 +#: assessment/displayq2.php:2174 assessment/displayq2.php:2246 +msgid "Enter a list of n-tuples" +msgstr "Geben Sie eine Liste von n-Tupeln ein" + +#: assess2/displayq3.php:2166 assess2/displayq3.php:2244 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:76 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:74 +#: assessment/displayq2.php:2176 assessment/displayq2.php:2248 +msgid "Enter your answer as an n-tuple of numbers. Example: (2,5.5172)" +msgstr "Geben Sie Ihre Antwort als n-Tupel ein. Beispiel: (2, 5.5172)" -#: assessment/displayq2.php:1441 assessment/displayq2.php:1885 +#: assess2/displayq3.php:2167 assess2/displayq3.php:2245 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:77 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:75 +#: assessment/displayq2.php:2177 assessment/displayq2.php:2249 +msgid "Enter an n-tuple" +msgstr "Geben Sie ein n-Tupel ein" + +#: assess2/displayq3.php:2170 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:78 +#: assessment/displayq2.php:2180 +#, php-format +msgid "Each value should be accurate to %d decimal places." +msgstr "Jeder Wert sollte auf %d Nachkommastellen genau sein." + +#: assess2/displayq3.php:2171 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:79 +#: assessment/displayq2.php:2181 +#, php-format +msgid ", each value accurate to %d decimal places" +msgstr ", jeder Wert auf %d Nachkommastellen genau" + +#: assess2/displayq3.php:2174 assess2/displayq3.php:2311 +#: assess2/questions/answerboxes/ComplexAnswerBox.php:60 +#: assess2/questions/answerboxes/NTupleAnswerBox.php:82 +#: assessment/displayq2.php:2184 assessment/displayq2.php:2312 +msgid "Enter DNE for Does Not Exist" +msgstr "Geben Sie DNE (Does Not Exist) ein, wenn keine Antwort existiert" + +#: assess2/displayq3.php:2232 +#: assess2/questions/answerboxes/CalculatedNTupleAnswerBox.php:64 +#: assessment/displayq2.php:2236 +msgid "Enter your answer as a vector. Example: <2,5.5172>" +msgstr "Geben Sie Ihre Antwort als Vektor ein. Beispiel: <2, 5.5172>" + +#: assess2/displayq3.php:2304 +#: assess2/questions/answerboxes/ComplexAnswerBox.php:53 +#: assessment/displayq2.php:2305 msgid "" "Enter your answer as a list of complex numbers in a+bi form separated with " -"commas. Example: 2+5.5i,-3-4i" +"commas. Example: 2+5.5172i,-3-4i" msgstr "" -"Geben Sie Ihre Antwort als kommagetrennte Liste komplexer Zahlen der Form a" -"+bi ein. Beispiel: 2+5.5i,-3-4i" +"Geben Sie Ihre Antwort als Komma getrennte Liste von komplexen Zahlen in a" +"+bi Form ein. Beispiel: 2+5.5172i, -3-4i" + +#: assess2/displayq3.php:2305 assess2/displayq3.php:2368 +#: assess2/questions/answerboxes/CalculatedComplexAnswerBox.php:64 +#: assess2/questions/answerboxes/ComplexAnswerBox.php:54 +#: assessment/displayq2.php:2306 assessment/displayq2.php:2354 +msgid "Enter a list of complex numbers" +msgstr "Geben Sie eine Liste von komplexen Zahlen ein" + +#: assess2/displayq3.php:2307 +#: assess2/questions/answerboxes/ComplexAnswerBox.php:56 +#: assessment/displayq2.php:2308 +msgid "Enter your answer as a complex number in a+bi form. Example: 2+5.5172i" +msgstr "" +"Geben Sie Ihre Antwort als komplexe Zahl in a+bi Form ein. Beispiel: " +"2+5.5172i" + +#: assess2/displayq3.php:2308 assess2/displayq3.php:2371 +#: assess2/questions/answerboxes/CalculatedComplexAnswerBox.php:67 +#: assess2/questions/answerboxes/ComplexAnswerBox.php:57 +#: assessment/displayq2.php:2309 assessment/displayq2.php:2357 +msgid "Enter a complex number" +msgstr "Geben Sie eine komplexe Zahl ein" -#: assessment/displayq2.php:1478 assessment/displayq2.php:1928 -#: assessment/displayq2.php:1994 +#: assess2/displayq3.php:2367 +#: assess2/questions/answerboxes/CalculatedComplexAnswerBox.php:63 +#: assessment/displayq2.php:2353 msgid "" "Enter your answer as a list of complex numbers in a+bi form separated with " "commas. Example: 2+5i,-3-4i" @@ -1154,107 +1788,60 @@ msgstr "" "Geben Sie Ihre Antwort als kommagetrennte Liste komplexer Zahlen der Form a" "+bi ein. Beispiel: 2+5i,-3-4i" -#: assessment/displayq2.php:1348 assessment/displayq2.php:1395 -#: assessment/displayq2.php:1771 assessment/displayq2.php:1830 -msgid "" -"Enter your answer as a list of n-tuples of numbers separated with commas: " -"Example: (1,2),(3.5,4)" +#: assess2/displayq3.php:2370 +#: assess2/questions/answerboxes/CalculatedComplexAnswerBox.php:66 +#: assessment/displayq2.php:2356 +msgid "Enter your answer as a complex number in a+bi form. Example: 2+5i" msgstr "" -"Geben Sie Ihre Antwort als kommagetrennte Liste von n-Tupeln ein. Beispiel: " -"(1,2),(3.5,4)" +"Geben Sie Ihre Antwort als komplexe Zahl der Form a+bi ein. Beispiel: 2+5i" -#: assessment/displayq2.php:1527 assessment/displayq2.php:1986 -#: assessment/displayq2.php:2053 +#: assess2/displayq3.php:2432 +#: assess2/questions/answerboxes/StringAnswerBox.php:59 +#: assessment/displayq2.php:2416 msgid "" "Enter your answer as a list of text separated by commas. Example: dog, " "cat, rabbit." msgstr "" "Geben Sie Ihre Antwort als kommagetrennte Liste von Text ein. Beispiel: " -"Hund, Katze, Hase" +"Hund, Katze, Hase." -#: assessment/displayq2.php:1101 assessment/displayq2.php:1444 -#: assessment/displayq2.php:1478 -msgid "" -"Enter your answer as a list of values separated by commas: Example: -4, 3, 2" -msgstr "" -"Geben Sie Ihre Antwort als kommagetrennte Liste von Werten ein. Beispiel: " -"-4, 3, 2" - -#: assessment/displayq2.php:673 assessment/displayq2.php:923 -msgid "" -"Enter your answer as a list of whole or decimal numbers separated with " -"commas: Examples: -4, 3, 2.5" -msgstr "" -"Geben Sie Ihre Antwort als kommagetrennte Liste von ganzen Zahlen oder " -"Dezimalzahlen ein. Beispiel: -4, 3, 2.5" - -#: assessment/displayq2.php:1179 assessment/displayq2.php:1548 -#: assessment/displayq2.php:1583 -msgid "" -"Enter your answer as a matrix filled with numbers, like ((2,3,4),(3,4,5))" -msgstr "" -"Geben Sie Ihre Antwort als mit Zahlen gefüllte Matrix wie ((2,3,4),(3,4,5)) " -"ein." - -#: assessment/displayq2.php:1233 assessment/displayq2.php:1606 -#: assessment/displayq2.php:1641 -msgid "Enter your answer as a matrix, like ((2,3,4),(1,4,5))" -msgstr "Geben Sie Ihre Antwort als Matrix wie ((2,3,4),(3,4,5)) ein." - -#: assessment/displayq2.php:1336 assessment/displayq2.php:1383 -#: assessment/displayq2.php:1756 assessment/displayq2.php:1815 -msgid "Enter your answer as a point. Example: (2,5.5)" -msgstr "Geben Sie Ihre Antwort als Punkt ein. Beispiel: (2,5.5)" - -#: assessment/displayq2.php:1342 assessment/displayq2.php:1389 -#: assessment/displayq2.php:1762 assessment/displayq2.php:1821 -#: assessment/displayq2.php:1825 -msgid "Enter your answer as a vector. Example: <2,5.5>" -msgstr "Geben Sie Ihre Antwort als Vektor ein. Beispiel: <2,5.5>" - -#: assessment/displayq2.php:676 assessment/displayq2.php:929 -msgid "Enter your answer as a whole or decimal number. Examples: 3, -4, 5.5" -msgstr "" -"Geben Sie Ihre Antwort als ganze Zahl oder als Dezimalzahl ein. Beispiele: " -"3, -4, 5.5" - -#: assessment/displayq2.php:1319 assessment/displayq2.php:1710 -#: assessment/displayq2.php:1773 -msgid "Enter your answer as an equation. Example: y=3x^2+1, 2+x+y=3" -msgstr "Geben Sie Ihre Antwort als Gleichung ein. Beispiel: y=3x^2+1, 2+x+y=3" - -#: assessment/displayq2.php:1321 assessment/displayq2.php:1712 -#: assessment/displayq2.php:1775 -msgid "Enter your answer as an expression. Example: 3x^2+1, x/5, (a+b)/c" -msgstr "" -"Geben Sie Ihre Antwort als Ausdruck ein. Beispiel: 3x^2+1, x/5, (a+b)/c" - -#: assessment/displayq2.php:1351 assessment/displayq2.php:1398 -#: assessment/displayq2.php:1774 assessment/displayq2.php:1833 -msgid "Enter your answer as an n-tuple of numbers. Example: (2,5.5)" -msgstr "Geben Sie Ihre Antwort als n-Tupel von Zahlen ein. Beispiel: (2,5.5)" +#: assess2/displayq3.php:2433 +#: assess2/questions/answerboxes/StringAnswerBox.php:60 +#: assessment/displayq2.php:2417 +msgid "Enter a list of text" +msgstr "Geben Sie eine Liste von Texten ein" -#: assessment/displayq2.php:1530 assessment/displayq2.php:1989 -#: assessment/displayq2.php:2056 +#: assess2/displayq3.php:2435 +#: assess2/questions/answerboxes/StringAnswerBox.php:62 +#: assessment/displayq2.php:2419 msgid "Enter your answer as letters. Examples: A B C, linear, a cat" msgstr "" "Geben Sie Ihre Antwort als Wort oder Wortfolge ein. Beispiele: A B C, " "linear, eine Katze" -#: assessment/displayq2.php:1621 assessment/displayq2.php:2196 -#: assessment/displayq2.php:2264 +#: assess2/displayq3.php:2436 +#: assess2/questions/answerboxes/StringAnswerBox.php:63 +#: assessment/displayq2.php:2420 +msgid "Enter text" +msgstr "Geben Sie Text ein" + +#: assess2/displayq3.php:2555 +#: assess2/questions/answerboxes/StringAnswerBox.php:182 +#: assessment/displayq2.php:2525 +msgid "The answer must match a specified pattern" +msgstr "Die Antwort muss zu einem vorgegebenen Muster passen" + +#: assess2/displayq3.php:2658 +#: assess2/questions/answerboxes/EssayAnswerBox.php:136 +#: assessment/displayq2.php:2628 msgid "Enter your answer as text. This question is not automatically graded." msgstr "" "Geben Sie Ihre Antwort als Text ein. Diese Frage wird nicht automatisch " "bewertet." -#: assessment/displayq2.php:1992 assessment/displayq2.php:2710 -#: assessment/displayq2.php:2833 -msgid "Enter your answer by drawing on the graph." -msgstr "Geben Sie Ihre Antwort ein, indem Sie zeichnen." - -#: assessment/displayq2.php:1635 assessment/displayq2.php:2210 -#: assessment/displayq2.php:2280 +#: assess2/displayq3.php:2674 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:59 +#: assessment/displayq2.php:2644 msgid "" "Enter your answer by selecting the shade type, and by clicking and dragging " "the sliders on the normal curve" @@ -1262,2031 +1849,4861 @@ msgstr "" "Geben Sie Ihre Antwort ein, indem Sie den Schattierungstyp auswählen und die " "Schieberegler auf der Normalkurve klicken und ziehen" -#: assessment/displayq2.php:1715 -#, php-format -msgid "Enter your answer using inequality notation. Example: 3 <= %s < 4" -msgstr "" -"Geben Sie Ihre Antwort in Ungleichungsschreibweise ein. Beispiel: 3 <= %s < " -"4" +#: assess2/displayq3.php:2675 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:60 +#: assessment/displayq2.php:2645 +msgid "Adjust the sliders" +msgstr "Passen Sie die Schieberegler an" -#: assessment/displayq2.php:1639 assessment/displayq2.php:1720 -#: assessment/displayq2.php:2214 assessment/displayq2.php:2313 -msgid "Enter your answer using interval notation. Example: [2.1,5.6)" +#: assess2/displayq3.php:2678 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:63 +#: assessment/displayq2.php:2648 +msgid "Enter your answer using interval notation. Example: [2.1,5.6172)" msgstr "" -"Geben Sie Ihre Antwort in Intervallschreibweise ein. Beispiel: [2.1,5.6)" +"Geben Sie Ihre Antwort in Intervallschreibweise ein. Beispiel: [2.1, 5.6172)" -#: assessment/displayq2.php:4521 assessment/displayq2.php:4522 -#: assessment/displayq2.php:5945 assessment/displayq2.php:5946 -#: assessment/displayq2.php:6271 assessment/displayq2.php:6272 -msgid "Error - File not uploaded in preview" -msgstr "Fehler - Datei nicht in Vorschau hochgeladen" +#: assess2/displayq3.php:2679 assess2/displayq3.php:2793 +#: assess2/questions/answerboxes/CalculatedIntervalAnswerBox.php:70 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:64 +#: assessment/displayq2.php:2649 assessment/displayq2.php:2763 +msgid "Use U for union to combine intervals. Example: (-oo,2] U [4,oo)" +msgstr "" +"Benutzen Sie U (union) um Intervalle zu kombinieren. Beispiel: (-oo,2] U [4," +"oo)" -#: assessment/displayq2.php:4501 assessment/displayq2.php:4502 -#: assessment/displayq2.php:5914 assessment/displayq2.php:5915 -#: assessment/displayq2.php:6224 assessment/displayq2.php:6225 -msgid "Error - Invalid file type" -msgstr "Fehler - Ungültiger Dateityp" +#: assess2/displayq3.php:2681 assess2/displayq3.php:8136 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:66 +#: assess2/questions/answerboxhelpers.php:534 assessment/displayq2.php:2651 +#: assessment/displayq2.php:7976 +msgid "Enter DNE for an empty set. Use oo to enter Infinity." +msgstr "Geben Sie DNE für eine leere Menge oder oo für Unendlich ein." + +#: assess2/displayq3.php:2683 assess2/displayq3.php:8141 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:68 +#: assess2/questions/answerboxhelpers.php:539 assessment/displayq2.php:2653 +#: assessment/displayq2.php:7981 +msgid "Use oo to enter Infinity." +msgstr "Benutze oo um Unendlich einzugeben." + +#: assess2/displayq3.php:2688 assess2/displayq3.php:2794 +#: assess2/questions/answerboxes/CalculatedIntervalAnswerBox.php:71 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:73 +#: assessment/displayq2.php:2658 assessment/displayq2.php:2764 +msgid "Enter an interval using interval notation" +msgstr "Geben Sie ein Intervall in Intervallschreibweise ein" -#: assessment/displayq2.php:4516 assessment/displayq2.php:4517 -#: assessment/displayq2.php:5940 assessment/displayq2.php:5941 -#: assessment/displayq2.php:6266 assessment/displayq2.php:6267 -msgid "Error - no asid" -msgstr "Fehler - keine asid" +#: assess2/displayq3.php:2692 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:78 +#: assessment/displayq2.php:2662 +msgid "Left of a value" +msgstr "Links von einem Wert" -#: assessment/interpret5.php:626 -#, php-format -msgid "Error loading library %s\n" -msgstr "Fehler beim Laden der Bibliothek %s\n" +#: assess2/displayq3.php:2692 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:78 +#: assessment/displayq2.php:2662 +msgid "Right of a value" +msgstr "Rechts von einem Wert" -#: assessment/displayq2.php:4542 assessment/displayq2.php:4543 -#: assessment/displayq2.php:5974 assessment/displayq2.php:5975 -#: assessment/displayq2.php:6300 assessment/displayq2.php:6301 -msgid "Error storing file" -msgstr "Fehler beim Speichern der Datei" +#: assess2/displayq3.php:2693 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:79 +#: assessment/displayq2.php:2663 +msgid "Between two values" +msgstr "Zwischen zwei Werten" -#: assessment/displayq2.php:4552 assessment/displayq2.php:4553 -#: assessment/displayq2.php:5985 assessment/displayq2.php:5986 -#: assessment/displayq2.php:6311 assessment/displayq2.php:6312 -msgid "Error uploading file" -msgstr "Fehler beim Hochladen der Datei" +#: assess2/displayq3.php:2693 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:79 +#: assessment/displayq2.php:2663 +msgid "2 regions" +msgstr "2 Bereiche" -#: assessment/displayq2.php:4549 assessment/displayq2.php:4550 -#: assessment/displayq2.php:5982 assessment/displayq2.php:5983 -#: assessment/displayq2.php:6308 assessment/displayq2.php:6309 -msgid "Error uploading file - file too big" -msgstr "Fehler beim Hochladen der Datei - Datei zu groß" +#: assess2/displayq3.php:2693 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:79 +#: assessment/displayq2.php:2663 +msgid "Click and drag the arrows to adjust the values." +msgstr "Klicken und ziehen Sie die Pfeile, um die Werte anzupassen." -#: assessment/showtest.php:327 -msgid "Error. Access test from course page" -msgstr "Fehler. Greifen Sie auf den Test über die Kursseite zu" +#: assess2/displayq3.php:2709 +#: assess2/questions/answerboxes/IntervalAnswerBox.php:95 +#: assessment/displayq2.php:2680 +msgid "Enter an interval corresponding to the region to be shaded" +msgstr "" +"Geben Sie ein Intervall für den Bereich ein, der schattiert werden soll" -#: assessment/showtest.php:385 assessment/showtest.php:498 -#: assessment/showtest.php:606 +#: assess2/displayq3.php:2783 +#: assess2/questions/answerboxes/CalculatedIntervalAnswerBox.php:60 +#: assessment/displayq2.php:2753 +#, php-format msgid "" -"Error. It appears you have opened another assessment since you opened this " -"one. " +"Enter your answer using inequality notation. Example: 3 <= %s < 4" msgstr "" -"Fehler. Es scheint, als hätten Sie einen anderen Test geöffnet, nachdem Sie " -"diesen öffneten." +"Geben Sie Ihre Antwort als Ungleichung ein. Beispiel: 3 <= %s < 4" -#: assessment/showtest.php:393 assessment/showtest.php:506 -#: assessment/showtest.php:614 -msgid "" -"Error. Looks like your group has changed for this assessment. Please reopen " -"the assessment and try again." +#: assess2/displayq3.php:2784 +#: assess2/questions/answerboxes/CalculatedIntervalAnswerBox.php:61 +#: assessment/displayq2.php:2754 +#, php-format +msgid "Use or to combine intervals. Example: %s < 2 or %s >= 3" msgstr "" -"Fehler. Es scheint, als hätte sich Ihre Gruppe für diesen Test geändert. " -"Bitte öffnen Sie den Test erneut und versuchen es ein weiteres Mal." +"Benutzen Sie or um Intervalle zu vereinen. Beispiel: %s < 2 or %s >= 3" -#: assessment/showtest.php:2605 assessment/showtest.php:3258 -#: assessment/showtest.php:3549 -msgid "Exit Assessment" -msgstr "Test verlassen" - -#: course/courseshowitems.php:95 course/courseshowitems.php:1618 -#: course/courseshowitems.php:96 course/courseshowitems.php:1619 -msgid "Expanded" -msgstr "ausgeklappt" +#: assess2/displayq3.php:2785 +#: assess2/questions/answerboxes/CalculatedIntervalAnswerBox.php:62 +#: assessment/displayq2.php:2755 +msgid "Enter all real numbers for solutions of that type" +msgstr "Geben Sie alle realen Zahlen für Lösungen dieses Typs ein" -#: course/course.php:456 course/course.php:457 -msgid "Export" -msgstr "Export" +#: assess2/displayq3.php:2786 +#: assess2/questions/answerboxes/CalculatedIntervalAnswerBox.php:63 +#: assessment/displayq2.php:2756 +msgid "Enter an interval using inequalities" +msgstr "Geben Sie ein Intervall mit Ungleichungen an" -#: course/course.php:633 course/course.php:634 -msgid "Export Course Items" -msgstr "Kurselemente exportieren" +#: assess2/displayq3.php:2788 +#: assess2/questions/answerboxes/CalculatedIntervalAnswerBox.php:65 +#: assessment/displayq2.php:2758 +msgid "Enter your answer using interval notation. Example: [2,5)" +msgstr "Geben Sie Ihre Antwort in Intervallschreibweise ein. Beispiel: [2, 5)" -#: course/course.php:448 course/course.php:588 course/course.php:449 -#: course/course.php:589 -msgid "Export Libraries" -msgstr "Bibliotheken exportieren" +#: assess2/displayq3.php:2790 +#: assess2/questions/answerboxes/CalculatedIntervalAnswerBox.php:67 +#: assessment/displayq2.php:2760 +msgid "Separate intervals by a comma. Example: (-oo,2],[4,oo)" +msgstr "Trennen Sie Intervalle mit Kommata. Beispiel: (-oo,2],84,oo)" -#: course/course.php:446 course/course.php:583 course/course.php:447 -#: course/course.php:584 -msgid "Export Question Set" -msgstr "Fragensatz exportieren" +#: assess2/displayq3.php:2791 +#: assess2/questions/answerboxes/CalculatedIntervalAnswerBox.php:68 +#: assessment/displayq2.php:2761 +msgid "Enter a list of intervals using interval notation" +msgstr "Geben Sie eine Liste von Intervallen in Intervallschreibweise ein" -#: course/gradebook.php:527 -msgid "Export to..." -msgstr "Exportieren nach..." +#: assess2/displayq3.php:3050 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:245 +#: assessment/displayq2.php:3015 +msgid "Graph to add drawings to:" +msgstr "Graph, zu dem Zeichnungen hinzugefügt werden:" -#: course/course.php:445 course/course.php:446 -msgid "Export/Import" -msgstr "Export/Import" +#: assess2/displayq3.php:3052 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:247 +#: assessment/displayq2.php:3017 +msgid "Elements to draw:" +msgstr "Zu zeichnende Elemente:" -#: course/gradebook.php:709 -msgid "Feedback" -msgstr "Hinweise" +#: assess2/displayq3.php:3054 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:249 +#: assessment/displayq2.php:3019 +msgid "Add new drawing element" +msgstr "Neues Zeichenelement hinzufügen" -#: loginpage.php:86 loginpage.php:88 loginpage.php:87 -msgid "Force image based display" -msgstr "Bildbasierte Darstellung erzwingen" +#: assess2/displayq3.php:3073 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:268 +#: assessment/displayq2.php:3038 +msgid "Clear All" +msgstr "Alles leeren" -#: loginpage.php:84 loginpage.php:86 loginpage.php:85 -msgid "Force image-based graphs" -msgstr "Bildbasierte Graphen erzwingen" +#: assess2/displayq3.php:3077 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:272 +#: assessment/displayq2.php:3042 +msgid "Draw:" +msgstr "Zeichnen:" -#: loginpage.php:85 loginpage.php:87 loginpage.php:86 -msgid "Force image-based math" -msgstr "Bildbasierte Formeln erzwingen" +#: assess2/displayq3.php:3236 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:431 +#: assessment/displayq2.php:3201 javascript/assess2_min.js:1 +#: javascript/assessment_min.js:5 javascript/drawing.js:208 +#: javascript/drawing_min.js:1 +msgid "Line" +msgstr "Linie" -#: loginpage.php:65 loginpage.php:67 loginpage.php:66 -msgid "Forgot Password" -msgstr "Passwort vergessen" +#: assess2/displayq3.php:3238 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:433 +#: assessment/displayq2.php:3203 +msgid "Line Segment" +msgstr "Liniensegment" -#: loginpage.php:66 loginpage.php:68 loginpage.php:67 -msgid "Forgot Username" -msgstr "Benutzername vergessen" +#: assess2/displayq3.php:3240 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:435 +#: assessment/displayq2.php:3205 +msgid "Freehand Draw" +msgstr "Freihandzeichnen" -#: course/courseshowitems.php:1398 course/courseshowitems.php:1399 -msgid "Forum" -msgstr "Forum" +#: assess2/displayq3.php:3242 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:437 +#: assessment/displayq2.php:3207 +msgid "Eraser" +msgstr "Radiergummi" -#: course/course.php:410 course/course.php:462 course/course.php:481 -#: course/course.php:558 course/course.php:726 course/course.php:758 -#: course/course.php:411 course/course.php:463 course/course.php:482 -#: course/course.php:559 course/course.php:727 course/course.php:759 -msgid "Forums" -msgstr "Foren" +#: assess2/displayq3.php:3245 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:440 +#: assessment/displayq2.php:3210 +msgid "Dot" +msgstr "Punkt" -#: index.php:357 index.php:359 index.php:358 -msgid "From" -msgstr "Von" +#: assess2/displayq3.php:3247 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:442 +#: assessment/displayq2.php:3212 +msgid "Open Dot" +msgstr "Offener Punkt" + +#: assess2/displayq3.php:3249 assess2/displayq3.php:3252 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:444 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:447 +#: assessment/displayq2.php:3214 assessment/displayq2.php:3217 +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:241 javascript/drawing.js:242 +#: javascript/drawing_min.js:1 +msgid "Polygon" +msgstr "Vieleck" -#: course/gradebook.php:533 -msgid "GB Settings" -msgstr "Punkteübersichtseinstellungen" +#: assess2/displayq3.php:3304 +#: assess2/questions/answerboxes/DrawingAnswerBox.php:495 +#: assessment/displayq2.php:3268 +msgid "Enter your answer by drawing on the graph." +msgstr "Geben Sie Ihre Antwort ein, indem Sie zeichnen." -#: assessment/displayq2.php:305 assessment/displayq2.php:459 -#: assessment/displayq2.php:474 -msgid "Get help: " -msgstr "Hilfe erhalten:" +#: assess2/displayq3.php:3510 assessment/displayq2.php:3474 +msgid "Last file uploaded:" +msgstr "Zuletzt hochgeladene Datei:" -#: course/gradebook.php:704 -msgid "Grade" -msgstr "Note" +#: assess2/displayq3.php:3525 +#: assess2/questions/answerboxes/FileUploadAnswerBox.php:113 +#: assessment/displayq2.php:3489 +msgid "Select a file to upload" +msgstr "Wählen Sie eine Datei zum Hochladen aus" -#: course/gradebook.php:423 -msgid "Grade Book Averages" -msgstr "Punkteübersichts-Durchschnitte" +#: assess2/displayq3.php:3823 assess2/displayq3.php:3877 +#: assess2/questions/scorepart/ChoicesScorePart.php:51 +#: assess2/questions/scorepart/MultipleAnswerScorePart.php:43 +#: assessment/displayq2.php:3784 assessment/displayq2.php:3838 +msgid "" +"Eeek! $questions is not defined or needs to be an array. Make sure " +"$questions is defined in the Common Control section." +msgstr "" +"Eeek! $question ist nicht definiert oder muss ein Array sein. Stellen Sie " +"sicher, dass $question in der Common Control Sektion definiert wird." -#: course/gradebook.php:425 -msgid "Grade Book Student Detail" -msgstr "Punkteübersichts-Studenten-Details" +#: assess2/displayq3.php:3934 +#: assess2/questions/scorepart/MatchingScorePart.php:44 +#: assessment/displayq2.php:3895 +msgid "" +"Eeek! $questions or $answers is not defined or needs to be an array. Make " +"sure both are defined in the Common Control section." +msgstr "" +"Eeek! $questions oder $answers ist nicht definiert oder muss ein Array sein." +"Stellen Sie sicher, dass beider in der Common Control Sektion definiert " +"werden." -#: assessment/showtest.php:2525 assessment/showtest.php:3168 -#: assessment/showtest.php:3459 -msgid "Grade in Gradebook: No Credit (NC)" -msgstr "Note in Punkteübersicht: Keine Punkte (NC)" +#: assess2/displayq3.php:4617 +#: assess2/questions/scorepart/CalculatedScorePart.php:113 +#: assessment/displayq2.php:4616 +msgid "Debug info: empty, missing or invalid $answer" +msgstr "Debuginfo: leeres, fehlendes oder ungültiges $answer" -#: assessment/showtest.php:2542 assessment/showtest.php:3185 -#: assessment/showtest.php:3476 -msgid "Grade is subject to acceptance by the instructor" -msgstr "Note liegt dem Dozenten zur Überprüfung vor" +#: assess2/displayq3.php:4636 +#: assess2/questions/scorepart/CalculatedScorePart.php:133 +#: assessment/displayq2.php:4635 +msgid "Debug info: empty, missing, or invalid $answer" +msgstr "Debuginfo: leere, fehlende oder ungültiges $answer" -#: assessment/showtest.php:2401 assessment/showtest.php:3042 -#: assessment/showtest.php:3330 -msgid "Grade: " -msgstr "Note:" +#: assess2/displayq3.php:5092 +#: assess2/questions/scorepart/FunctionExpressionScorePart.php:291 +#: assessment/displayq2.php:5039 +msgid "" +"Debug info: function evaled to Not-a-number at all test points. Check " +"$domain" +msgstr "" +"Debuginfo: Funktion ergibt an allen Testpunkten 'keine Zahl'. Prüfen Sie " +"$domain" -#: course/course.php:422 course/course.php:489 course/course.php:617 -#: course/course.php:735 course/course.php:423 course/course.php:490 -#: course/course.php:618 course/course.php:736 course/gradebook.php:385 -#: course/gradebook.php:420 course/gradebook.php:511 course/gradebook.php:514 -msgid "Gradebook" -msgstr "Punkteübersicht" +#: assess2/displayq3.php:7321 assess2/displayq3.php:7407 +#: assess2/questions/scorepart/FileScorePart.php:133 +#: assessment/displayq2.php:7279 assessment/displayq2.php:7365 +msgid " Unable to open Excel file" +msgstr " Kann Excel Datei nicht öffnen" -#: assessment/showtest.php:740 assessment/showtest.php:934 -#: assessment/showtest.php:1062 -msgid "Gradebook Detail" -msgstr "Punkteübersichtsdetails" +#: assess2/displayq3.php:7341 assess2/questions/scorepart/FileScorePart.php:80 +#: assessment/displayq2.php:7299 +#, php-format +msgid "Upload of %s: " +msgstr "Hochladen von %s: " -#: course/courseshowitems.php:647 course/courseshowitems.php:684 -#: course/courseshowitems.php:721 course/courseshowitems.php:1738 -#: course/courseshowitems.php:648 course/courseshowitems.php:685 -#: course/courseshowitems.php:722 course/courseshowitems.php:1739 -msgid "Grades" -msgstr "Noten" +#: assess2/displayq3.php:7343 assess2/displayq3.php:7344 +#: assess2/questions/scorepart/FileScorePart.php:82 +#: assess2/questions/scorepart/FileScorePart.php:83 +#: assessment/displayq2.php:7301 assessment/displayq2.php:7302 +msgid "Error - Invalid file type" +msgstr "Fehler - Ungültiger Dateityp" -#: assessment/showtest.php:1712 assessment/showtest.php:2220 -#: assessment/showtest.php:2462 -msgid "Group Members:" -msgstr "Gruppenmitglieder:" +#: assess2/displayq3.php:7385 assess2/displayq3.php:7386 +#: assess2/questions/scorepart/FileScorePart.php:109 +#: assess2/questions/scorepart/FileScorePart.php:110 +#: assessment/displayq2.php:7343 assessment/displayq2.php:7344 +msgid "Error - no asid" +msgstr "Fehler - keine asid" -#: assessment/showtest.php:781 assessment/showtest.php:1000 -#: assessment/showtest.php:1140 -msgid "Group error - lost group info" -msgstr "Gruppenfehler - Gruppeninfo verloren" +#: assess2/displayq3.php:7390 assess2/displayq3.php:7391 +#: assess2/questions/scorepart/FileScorePart.php:115 +#: assess2/questions/scorepart/FileScorePart.php:116 +#: assessment/displayq2.php:7348 assessment/displayq2.php:7349 +msgid "Error - File not uploaded in preview" +msgstr "Fehler - Datei nicht in Vorschau hochgeladen" -#: assessment/showtest.php:859 assessment/showtest.php:1082 -#: assessment/showtest.php:1252 -msgid "" -"Group error. Please try reaccessing the assessment from the course page" -msgstr "" -"Gruppenfehler. Bitte versuchen Sie erneut auf den Test über die Kursseite " -"zuzugreifen" +#: assess2/displayq3.php:7415 assess2/questions/scorepart/FileScorePart.php:142 +#: assessment/displayq2.php:7373 +msgid "Successful" +msgstr "Erfolgreich" -#: course/course.php:423 course/course.php:738 course/course.php:424 -#: course/course.php:739 -msgid "Groups" -msgstr "Gruppen" +#: assess2/displayq3.php:7419 assess2/displayq3.php:7420 +#: assess2/questions/scorepart/FileScorePart.php:146 +#: assess2/questions/scorepart/FileScorePart.php:147 +#: assessment/displayq2.php:7377 assessment/displayq2.php:7378 +msgid "Error storing file" +msgstr "Fehler beim Speichern der Datei" -#: loginpage.php:82 index.php:260 index.php:262 loginpage.php:84 -#: course/course.php:468 course/course.php:637 course/course.php:469 -#: course/course.php:638 loginpage.php:83 index.php:261 -msgid "Help" -msgstr "Hilfe" +#: assess2/displayq3.php:7427 assess2/displayq3.php:7428 +#: assess2/questions/scorepart/FileScorePart.php:155 +#: assess2/questions/scorepart/FileScorePart.php:156 +#: assessment/displayq2.php:7385 assessment/displayq2.php:7386 +msgid "Error uploading file - file too big" +msgstr "Fehler beim Hochladen der Datei - Datei zu groß" -#: course/course.php:493 course/course.php:619 course/course.php:494 -#: course/course.php:620 -#, php-format -msgid "Help Using %s" -msgstr "Hilfe bei der Verwendung von %s" +#: assess2/displayq3.php:7430 assess2/displayq3.php:7431 +#: assess2/questions/scorepart/FileScorePart.php:158 +#: assess2/questions/scorepart/FileScorePart.php:159 +#: assessment/displayq2.php:7388 assessment/displayq2.php:7389 +msgid "Error uploading file" +msgstr "Fehler beim Hochladen der Datei" -#: loginpage.php:128 loginpage.php:130 loginpage.php:129 -msgid "Help for student with entering answers" -msgstr "Hilfe für Studenten bei der Antworteingabe" - -#: index.php:322 index.php:324 course/courseshowitems.php:313 -#: course/courseshowitems.php:692 course/courseshowitems.php:815 -#: course/courseshowitems.php:919 course/courseshowitems.php:1047 -#: course/courseshowitems.php:1197 course/courseshowitems.php:1323 -#: course/courseshowitems.php:1627 course/courseshowitems.php:314 -#: course/courseshowitems.php:693 course/courseshowitems.php:816 -#: course/courseshowitems.php:920 course/courseshowitems.php:1048 -#: course/courseshowitems.php:1198 course/courseshowitems.php:1324 -#: course/courseshowitems.php:1628 index.php:323 -msgid "Hidden" -msgstr "Versteckt" +#: assess2/displayq3.php:7751 assess2/questions/answerboxhelpers.php:145 +#: assess2/questions/scorepart/ComplexScorePart.php:228 +#: assessment/displayq2.php:7709 javascript/AMhelpers.js:678 +#: javascript/AMhelpers2.js:1406 javascript/AMhelpers2_min.js:1 +#: javascript/assess2_min.js:2 javascript/assessment_min.js:3 +msgid "error - more than 1 i in expression" +msgstr "Fehler - mehr als ein i im Ausdruck" -#: course/gradebook.php:1115 -msgid "Hide Locked" -msgstr "Gesperrte verbergen" +#: assess2/displayq3.php:7773 assess2/displayq3.php:7789 +#: assess2/displayq3.php:7803 assess2/displayq3.php:7813 +#: assess2/questions/answerboxhelpers.php:167 +#: assess2/questions/answerboxhelpers.php:183 +#: assess2/questions/answerboxhelpers.php:197 +#: assess2/questions/answerboxhelpers.php:207 +#: assess2/questions/scorepart/ComplexScorePart.php:250 +#: assess2/questions/scorepart/ComplexScorePart.php:266 +#: assess2/questions/scorepart/ComplexScorePart.php:280 +#: assess2/questions/scorepart/ComplexScorePart.php:290 +#: assessment/displayq2.php:7731 assessment/displayq2.php:7747 +#: assessment/displayq2.php:7761 assessment/displayq2.php:7771 +#: javascript/AMhelpers.js:699 javascript/AMhelpers.js:715 +#: javascript/AMhelpers.js:726 javascript/AMhelpers.js:737 +#: javascript/AMhelpers2.js:1427 javascript/AMhelpers2.js:1443 +#: javascript/AMhelpers2.js:1454 javascript/AMhelpers2.js:1465 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "error - invalid form" +msgstr "Fehler - ungültige Form" -#: assessment/showtest.php:1318 assessment/showtest.php:1805 -#: assessment/showtest.php:1563 assessment/showtest.php:1604 -#: assessment/showtest.php:2317 assessment/showtest.php:1792 -#: assessment/showtest.php:1833 assessment/showtest.php:2589 -msgid "Hide Question Information" -msgstr "Fragenhinweise verstecken" +#: assess2/displayq3.php:8084 assess2/questions/answerboxhelpers.php:482 +#: assessment/displayq2.php:7924 +#, php-format +msgid "" +"Enter %s as a fraction (like 3/5 or 10/4) or as an integer (like 4 or -2)" +msgstr "" +"Geben Sie %s als Bruch (z.B. 3/5 oder 10/4) oder als ganze Zahl (z.B. 4 oder " +"-2) ein" -#: course/gradebook.php:450 course/gradebook.php:586 -msgid "Hide all" -msgstr "Alle verbergen" +#: assess2/displayq3.php:8085 assess2/questions/answerboxhelpers.php:483 +#: assessment/displayq2.php:7925 +#, php-format +msgid "Enter a %s of fractions or integers" +msgstr "Geben Sie ein %s von Brüchen oder ganzen Zahlen ein" -#: assessment/displayq2.php:204 assessment/displayq2.php:222 -#: assessment/displayq2.php:272 assessment/displayq2.php:293 -#: assessment/displayq2.php:279 assessment/displayq2.php:300 -msgid "Hint:" -msgstr "Hinweis:" +#: assess2/displayq3.php:8085 assess2/questions/answerboxhelpers.php:483 +#: assessment/displayq2.php:7925 +msgid "Enter a fraction or integer" +msgstr "Geben Sie einen Bruch oder eine ganze Zahl ein" -#: loginpage.php:122 loginpage.php:124 loginpage.php:123 +#: assess2/displayq3.php:8088 assess2/questions/answerboxhelpers.php:486 +#: assessment/displayq2.php:7928 +#, php-format msgid "" -"If you already have an account, you can log on using the box to the right." +"Enter %s as a reduced fraction (like 5/3, not 10/6), as an integer (like 4 " +"or -2), or as an exact decimal (like 0.5 or 1.25)" msgstr "" -"Wenn Sie bereits ein Benutzerkonto haben, können Sie sich rechts anmelden." +"Geben Sie %s als einen gekürzten Bruch (wie 5/3 anstatt 10/6), als ganze " +"Zahl (wie 4 oder -2), oder als Dezimalzahl (wie 0.5 oder 1.25) ein" -#: loginpage.php:123 loginpage.php:125 loginpage.php:124 +#: assess2/displayq3.php:8089 assess2/questions/answerboxhelpers.php:487 +#: assessment/displayq2.php:7929 #, php-format -msgid "" -"If you are a new student to the system, Register as a new student" +msgid "Enter a %s of reduced fractions, integers, or exact decimals" +msgstr "" +"Geben Sie ein %s von gekürzten Brüchen, Ganzzahlen oder Dezimalzahlen ein" + +#: assess2/displayq3.php:8089 assess2/questions/answerboxhelpers.php:487 +#: assessment/displayq2.php:7929 +msgid "Enter a reduced fraction, integer, or exact decimal" msgstr "" -"Wenn Sie sich noch nicht registriert haben, können Sie sich als neuer Student registrieren." +"Geben Sie einen gekürzten Bruch, eine ganze Zahl oder eine Dezimalzahl ein" -#: loginpage.php:124 loginpage.php:126 loginpage.php:125 +#: assess2/displayq3.php:8091 assess2/questions/answerboxhelpers.php:489 +#: assessment/displayq2.php:7931 #, php-format msgid "" -"If you are an instructor, you can request " -"an account" +"Enter %s as a reduced fraction (like 5/3, not 10/6) or as an integer (like 4 " +"or -2)" msgstr "" -"Wenn Sie ein Dozent sind, können Sie ein " -"Benutzerkonto beantragen." +"Geben Sie %s als gekürzten Bruch (z.B. 5/3, nicht 10/6) oder als ganze Zahl " +"(z.B. 4 oder -2) ein" + +#: assess2/displayq3.php:8092 assess2/questions/answerboxhelpers.php:490 +#: assessment/displayq2.php:7932 +#, php-format +msgid "Enter a %s of reduced fractions or integers" +msgstr "Geben Sie ein %s von gekürzten Brüchen oder ganzen Zahlen ein" -#: assessment/showtest.php:1179 +#: assess2/displayq3.php:8092 assess2/questions/answerboxhelpers.php:490 +#: assessment/displayq2.php:7932 +msgid "Enter a reduced fraction or integer" +msgstr "Geben Sie einen gekürzten Bruch oder eine ganze Zahl ein" + +#: assess2/displayq3.php:8096 assess2/questions/answerboxhelpers.php:494 +#: assessment/displayq2.php:7936 +#, php-format msgid "" -"If you do not reattempt now, you will have another chance once you complete " -"the test." +"Enter %s as a mixed number or as an integer. Example: 2 1/2 = 2 ½" msgstr "" -"Wenn Sie es nicht jetzt erneut versuchen, werden Sie eine neue Gelegenheit " -"haben, sobald die den Test abschließen." +"Geben Sie %s gemischte Zahl oder als ganze Zahl ein. Beispiel: 2 1/2 = 2 " +"½" -#: assessment/showtest.php:1337 assessment/showtest.php:1820 -#: assessment/showtest.php:1582 assessment/showtest.php:1623 -#: assessment/showtest.php:2332 assessment/showtest.php:1811 -#: assessment/showtest.php:1852 assessment/showtest.php:2604 +#: assess2/displayq3.php:8098 assess2/questions/answerboxhelpers.php:496 +#: assessment/displayq2.php:7938 +#, php-format msgid "" -"If you jump to the answer, you must generate a new version to earn credit" +"Enter %s as a reduced mixed number or as an integer. Example: 2 1/2 = 2 " +"½" msgstr "" -"Wenn Sie zur Antwort springen, müssen sie eine neue Version generieren, um " -"Punkte zu erhalten" +"Geben Sie %s als gekürzte gemischte Zahl oder als ganze Zahl ein. Beispiel: " +"2 1/2 = 2 ½" -#: course/course.php:457 course/course.php:458 -msgid "Import" -msgstr "Import" +#: assess2/displayq3.php:8100 assess2/questions/answerboxhelpers.php:498 +#: assessment/displayq2.php:7940 +#, php-format +msgid "Enter a %s of mixed numbers or integers" +msgstr "Geben Sie ein %s von gemischten oder ganze Zahlen ein" -#: course/course.php:634 course/course.php:635 -msgid "Import Course Items" -msgstr "Kurselemente importieren" +#: assess2/displayq3.php:8100 assess2/questions/answerboxhelpers.php:498 +#: assessment/displayq2.php:7940 +msgid "Enter a mixed number or integer" +msgstr "Geben Sie eine gemischte oder eine ganze Zahl ein" -#: course/course.php:449 course/course.php:589 course/course.php:450 -#: course/course.php:590 -msgid "Import Libraries" -msgstr "Bibliotheken importieren" +#: assess2/displayq3.php:8103 assess2/questions/answerboxhelpers.php:501 +#: assessment/displayq2.php:7943 +#, php-format +msgid "" +"Enter %s as a mixed number, proper or improper fraction, or as an integer. " +"Example: 2 1/2 = 2 ½" +msgstr "" +"Geben Sie %s als echten oder unechten Bruch oder als gemischte Zahl oder als " +"ganze Zahl ein. Beispiel: 2 1/2 = 2 ½" -#: course/course.php:447 course/course.php:584 course/course.php:448 -#: course/course.php:585 -msgid "Import Question Set" -msgstr "Fragensatz importieren" +#: assess2/displayq3.php:8104 assess2/displayq3.php:8107 +#: assess2/questions/answerboxhelpers.php:502 +#: assess2/questions/answerboxhelpers.php:505 assessment/displayq2.php:7944 +#: assessment/displayq2.php:7947 +#, php-format +msgid "Enter a %s of mixed numbers, fractions, or integers" +msgstr "Geben Sie ein %s von gemischten Zahlen, Brüchen oder ganzen Zahlen ein" -#: assessment/displayq2.php:1055 assessment/displayq2.php:1385 -#: assessment/displayq2.php:1419 -msgid "" -"In each pull-down on the left, select the letter (a, b, c, etc.) of the " -"matching answer in the right-hand column" +#: assess2/displayq3.php:8104 assess2/questions/answerboxhelpers.php:502 +#: assessment/displayq2.php:7944 +msgid "Enter a mixed number, proper or improper fraction, or integer" msgstr "" -"Wählen Sie den Buchstaben (a, b, c, etc.) der passenden Antwort in der " -"Spalte auf der rechten Seite aus jedem Ausklappmenü links aus." +"Geben Sie eine gemischte Zahl, einen echten oder unechten Bruch oder eine " +"ganze Zahl ein" -#: assessment/displayq2.php:1053 assessment/displayq2.php:1383 -#: assessment/displayq2.php:1417 -msgid "In each pull-down, select the item that matches with the displayed item" +#: assess2/displayq3.php:8106 assess2/questions/answerboxhelpers.php:504 +#: assessment/displayq2.php:7946 +#, php-format +msgid "" +"Enter %s as a reduced mixed number, reduced proper or improper fraction, or " +"as an integer. Example: 2 1/2 = 2 ½" msgstr "" -"Wählen Sie den Eintrag aus dem Ausklappmenü aus, der zum angezeigten Eintrag " -"passt" +"Geben Sie %s als echten, unechten oder als gemischten Bruch oder als ganze " +"Zahl ein. Kürzen Sie soweit wie möglich. Beispiel: 2 1/2 = 2 ½" -#: loginpage.php:129 loginpage.php:131 loginpage.php:130 -msgid "Instructor Documentation" -msgstr "Dokumentation für Dozenten" +#: assess2/displayq3.php:8107 assess2/questions/answerboxhelpers.php:505 +#: assessment/displayq2.php:7947 +msgid "Enter a reduced mixed number, proper or improper fraction, or integer" +msgstr "" +"Geben Sie eine gekürzte gemischte Zahl, einen echten oder unechten Bruch " +"oder eine ganze Zahl ein" -#: course/course.php:387 course/course.php:388 -msgid "Instructor Preview" -msgstr "Dozenten-Vorschau" +#: assess2/displayq3.php:8111 assess2/questions/answerboxhelpers.php:509 +#: assessment/displayq2.php:7951 +#, php-format +msgid "" +"Enter %s as a mixed number (like 2 1/2), fraction (like 3/5), an integer " +"(like 4 or -2), or exact decimal (like 0.5 or 1.25)" +msgstr "" +"Geben Sie %s als gemischte Zahl (z.B. 2 1/2), als Bruch (z.B. 3/5), als " +"ganze Zahl (z.B. 4 oder -2) oder Dezimalzahl (z.B. 0.5 oder 1.25) ein" -#: course/courseshowitems.php:1451 course/courseshowitems.php:1452 +#: assess2/displayq3.php:8112 assess2/questions/answerboxhelpers.php:510 +#: assessment/displayq2.php:7952 #, php-format -msgid "Into %s" -msgstr "in %s" +msgid "Enter a %s of mixed numbers, fractions, or exact decimals" +msgstr "Geben Sie ein %s von gemischten Zahlen, Brüchen oder Dezimalzahlen ein" -#: course/courseshowitems.php:254 course/courseshowitems.php:269 -#: course/courseshowitems.php:447 course/courseshowitems.php:468 -#: course/courseshowitems.php:255 course/courseshowitems.php:270 -#: course/courseshowitems.php:448 course/courseshowitems.php:469 -msgid "Isolate" -msgstr "isolieren" +#: assess2/displayq3.php:8112 assess2/questions/answerboxhelpers.php:510 +#: assessment/displayq2.php:7952 +msgid "Enter a mixed number, fraction, or exact decimal" +msgstr "Geben Sie eine gemischte Zahl, einen Bruch oder eine Dezimalzahl ein" -#: course/gradebook.php:704 -msgid "Item" -msgstr "Teil" +#: assess2/displayq3.php:8114 assess2/questions/answerboxhelpers.php:512 +#: assessment/displayq2.php:7954 +#, php-format +msgid "" +"Enter %s as a fraction (like 3/5 or 10/4), an integer (like 4 or -2), or " +"exact decimal (like 0.5 or 1.25)" +msgstr "" +"Geben Sie %s als Bruch (z.B. 3/5 oder 10/4), als ganze Zahl (z.B. 4 oder -2) " +"oder als Dezimalzahl (z.B. 0.5 oder 1.25) ein" -#: assessment/showtest.php:1337 assessment/showtest.php:1820 -#: assessment/showtest.php:1582 assessment/showtest.php:1623 -#: assessment/showtest.php:2332 assessment/showtest.php:1811 -#: assessment/showtest.php:1852 assessment/showtest.php:2604 -msgid "Jump to Answer" -msgstr "Zur Antwort springen" +#: assess2/displayq3.php:8115 assess2/questions/answerboxhelpers.php:513 +#: assessment/displayq2.php:7955 +#, php-format +msgid "Enter a %s of fractions or exact decimals" +msgstr "Geben Sie ein %s von Brüchen oder Ganzzahlen ein" -#: assessment/showtest.php:2132 assessment/showtest.php:2766 -#: assessment/showtest.php:3054 -msgid "Jump to Question" -msgstr "Zur Frage springen" +#: assess2/displayq3.php:8115 assess2/questions/answerboxhelpers.php:513 +#: assessment/displayq2.php:7955 +msgid "Enter a fraction or exact decimal" +msgstr "Geben Sie einen Bruch oder eine genaue Dezimalzahl ein" -#: assessment/showtest.php:1552 assessment/showtest.php:1858 -#: assessment/showtest.php:2094 +#: assess2/displayq3.php:8118 assess2/questions/answerboxhelpers.php:516 +#: assessment/displayq2.php:7958 #, php-format -msgid "Jump video to %s" -msgstr "Im Video zu %s springen" +msgid "Enter %s as an integer or decimal value (like 5 or 3.72)" +msgstr "" +"Geben Sie %s als ganze Zahl oder als Dezimalzahl (z.B. 5 oder 6.72) ein" -#: course/courseshowitems.php:642 course/courseshowitems.php:716 -#: course/courseshowitems.php:643 course/courseshowitems.php:717 -msgid "LP" -msgstr "LP" +#: assess2/displayq3.php:8119 assess2/questions/answerboxhelpers.php:517 +#: assessment/displayq2.php:7959 +#, php-format +msgid "Enter a %s of integer or decimal values" +msgstr "Geben Sie eine %s von ganzen Zahlen oder Dezimalzahlen ein" -#: assessment/showtest.php:2585 assessment/showtest.php:3237 -#: assessment/showtest.php:3528 -msgid "Last Attempt:" -msgstr "Letzter Versuch:" +#: assess2/displayq3.php:8119 assess2/questions/answerboxhelpers.php:517 +#: assessment/displayq2.php:7959 +msgid "Enter an integer or decimal value" +msgstr "Geben Sie eine ganze Zahl oder eine Dezimalzahl ein" -#: index.php:406 index.php:408 index.php:407 -msgid "Last Post" -msgstr "Letzter Beitrag" +#: assess2/displayq3.php:8121 assess2/questions/answerboxhelpers.php:519 +#: assessment/displayq2.php:7961 +#, php-format +msgid "" +"Enter %s as a decimal or in scientific notation. Example: 3*10^2 = 3 " +"· 102" +msgstr "" +"Geben Sie %s als Dezimalzahl oder in wissenschaftlicher Notation ein. " +"Beispiel: 3*10^2 = 3 · 102" -#: assessment/showtest.php:2470 assessment/showtest.php:2481 -#: assessment/showtest.php:3113 assessment/showtest.php:3124 -#: assessment/showtest.php:3404 assessment/showtest.php:3415 -msgid "Last attempt: " -msgstr "Letzter Versuch: " +#: assess2/displayq3.php:8122 assess2/questions/answerboxhelpers.php:520 +#: assessment/displayq2.php:7962 +#, php-format +msgid "Enter a %s of numbers using decimals or scientific notation" +msgstr "" +"Geben Sie ein %s von Zahlen als Dezimalzahlen oder in wissenschaftlicher " +"Notation ein" -#: assessment/displayq2.php:2111 assessment/displayq2.php:2884 -#: assessment/displayq2.php:3033 -msgid "Last file uploaded:" -msgstr "Zuletzt hochgeladene Datei:" +#: assess2/displayq3.php:8122 assess2/questions/answerboxhelpers.php:520 +#: assessment/displayq2.php:7962 +msgid "Enter a number using decimals or scientific notation" +msgstr "" +"Geben Sie eine Zahl als Dezimalzahl oder in wissenschaftlicher Schreibweise " +"ein" -#: course/courseshowitems.php:642 course/courseshowitems.php:679 -#: course/courseshowitems.php:716 course/courseshowitems.php:643 -#: course/courseshowitems.php:680 course/courseshowitems.php:717 -msgid "LatePasses Allowed" -msgstr "Verspätetes Einreichen erlaubt" +#: assess2/displayq3.php:8124 assess2/questions/answerboxhelpers.php:522 +#: assessment/displayq2.php:7964 +#, php-format +msgid "" +"Enter %s as in scientific notation. Example: 3*10^2 = 3 · 102" +msgstr "" +"Geben Sie %s in wissenschaftlicher Notation ein. Beispiel: 3*10^2 = 3 " +"· 102" -#: assessment/displayq2.php:1649 assessment/displayq2.php:2224 -#: assessment/displayq2.php:2294 -#, fuzzy -msgid "Left of a value" -msgstr "Links von einem Wert" +#: assess2/displayq3.php:8125 assess2/questions/answerboxhelpers.php:523 +#: assessment/displayq2.php:7965 +#, php-format +msgid "Enter a %s of numbers using scientific notation" +msgstr "Geben Sie ein %s von Zahlen in wissenschaftlicher Notation ein" -#: course/course.php:440 course/course.php:441 -msgid "Libraries" -msgstr "Bibliotheken" +#: assess2/displayq3.php:8125 assess2/questions/answerboxhelpers.php:523 +#: assessment/displayq2.php:7965 +msgid "Enter a number using scientific notation" +msgstr "Geben Sie eine Zahl in wissenschaftlicher Schreibweise ein" -#: assessment/displayq2.php:1950 assessment/displayq2.php:2654 -#: assessment/displayq2.php:2772 -msgid "Line" -msgstr "Linie" +#: assess2/displayq3.php:8127 assess2/questions/answerboxhelpers.php:525 +#: assessment/displayq2.php:7967 +#, php-format +msgid "" +"Enter %s as a number (like 5, -3, 2.2172) or as a calculation (like 5/3, " +"2^3, 5+4)" +msgstr "" +"Geben Sie %s als Zahl (wie etwa 5, -3, 2.2172) oder als Berechnung (wie etwa " +"5/3, 2^3, 5+4) ein." -#: assessment/displayq2.php:1952 assessment/displayq2.php:2656 -#: assessment/displayq2.php:2774 -msgid "Line Segment" -msgstr "Liniensegment" +#: assess2/displayq3.php:8128 assess2/questions/answerboxhelpers.php:526 +#: assessment/displayq2.php:7968 +#, php-format +msgid "Enter a %s of mathematical expressions" +msgstr "Geben sie ein %s von mathematischen Ausdrücken ein" -#: course/courseshowitems.php:1392 course/courseshowitems.php:1393 -msgid "Link" -msgstr "Link" +#: assess2/displayq3.php:8128 assess2/questions/answerboxhelpers.php:526 +#: assessment/displayq2.php:7968 +msgid "Enter a mathematical expression" +msgstr "Geben Sie einen mathematischen Ausdruck ein" -#: course/gradebook.php:458 course/gradebook.php:594 -msgid "Links:" -msgstr "Links:" +#: assess2/displayq3.php:8131 assess2/questions/answerboxhelpers.php:529 +#: assessment/displayq2.php:7971 +msgid "Do not enter mixed numbers" +msgstr "Keine gemischten Zahlen eingeben" -#: course/courseshowitems.php:306 course/courseshowitems.php:510 -#: course/courseshowitems.php:307 course/courseshowitems.php:511 -msgid "Loading content..." -msgstr "Lade Inhalt..." +#: assess2/displayq3.php:8132 assess2/questions/answerboxhelpers.php:530 +#: assessment/displayq2.php:7972 +msgid " (no mixed numbers)" +msgstr " (keine gemischten Zahlen)" -#: course/gradebook.php:493 course/gradebook.php:503 course/gradebook.php:540 -#: course/gradebook.php:607 -msgid "Lock headers" -msgstr "Header sperren" +#: assess2/displayq3.php:8144 assess2/questions/answerboxhelpers.php:542 +#: assessment/displayq2.php:7984 +msgid "Decimal values are not allowed" +msgstr "Dezimalwerte sind nicht erlaubt" -#: index.php:325 index.php:327 index.php:326 -msgid "Lockdown" -msgstr "Sperren" +#: assess2/displayq3.php:8147 assess2/questions/answerboxhelpers.php:545 +#: assessment/displayq2.php:7987 +#, php-format +msgid "Enter %s accurate to the nearest integer." +msgstr "Geben Sie %s mit einer Genauigkeit bis zur nächsten ganzen Zahl ein." -#: index.php:252 index.php:254 course/course.php:469 course/course.php:492 -#: course/course.php:618 course/course.php:627 course/course.php:748 -#: course/course.php:767 course/course.php:470 course/course.php:493 -#: course/course.php:619 course/course.php:628 course/course.php:749 -#: course/course.php:768 index.php:253 -msgid "Log Out" -msgstr "Abmelden" +#: assess2/displayq3.php:8149 assess2/questions/answerboxhelpers.php:547 +#: assessment/displayq2.php:7989 +#, php-format +msgid "Enter %s accurate to %d decimal places." +msgstr "Geben Sie %s auf %d Nachkommastellen genau ein." -#: loginpage.php:54 loginpage.php:56 loginpage.php:55 -msgid "Login Error. Try Again" -msgstr "Fehler beim Anmelden. Erneut versuchen." +#: assess2/displayq3.php:8153 assess2/questions/answerboxhelpers.php:551 +#: assessment/displayq2.php:7993 +msgid "Trig functions (sin,cos,etc.) are not allowed" +msgstr "Trigonometrische Funktionen (sin, cos, etc.) sind nicht erlaubt" -#: course/gradebook.php:670 -msgid "Login Log" -msgstr "Login-Protokoll" +#: assess2/displayq3.php:8172 assess2/questions/QuestionHtmlGenerator.php:1013 +#: assess2/questions/answerboxhelpers.php:570 assessment/displayq2.php:8012 +msgid "Correct answer, but wrong format" +msgstr "Richtige Antwort, aber falsches Format" -#: course/gradebook.php:620 course/gradebook.php:668 course/gradebook.php:862 -#: course/gradebook.php:1052 -msgid "Make Exception" -msgstr "Ausnahme machen" +#: assess2/displayq3.php:8183 assess2/displayq3.php:8242 +#: assess2/questions/answerboxhelpers.php:581 +#: assess2/questions/answerboxhelpers.php:640 assessment/displayq2.php:8023 +#: assessment/displayq2.php:8082 +msgid "No solution" +msgstr "Keine Lösung" -#: course/course.php:439 course/course.php:440 course/gradebook.php:525 -msgid "Manage" -msgstr "Verwalten" +#: assess2/displayq3.php:8184 assess2/displayq3.php:8243 +#: assess2/questions/answerboxhelpers.php:582 +#: assess2/questions/answerboxhelpers.php:641 assessment/displayq2.php:8024 +#: assessment/displayq2.php:8083 +msgid "Infinite number of solutions" +msgstr "Unendlich viele Lösungen" -#: course/courseshowitems.php:533 course/courseshowitems.php:534 -msgid "Manage Events" -msgstr "Ereignisse verwalten" +#: assess2/displayq3.php:8188 assess2/questions/answerboxhelpers.php:586 +#: assessment/displayq2.php:8028 +msgid "One or more solutions: " +msgstr "Eine oder mehrere Lösungen: " -#: course/course.php:587 course/course.php:599 course/course.php:588 -#: course/course.php:600 -msgid "Manage Libraries" -msgstr "Bibliotheken verwalten" +#: assess2/displayq3.php:8190 assess2/questions/answerboxhelpers.php:588 +#: assessment/displayq2.php:8030 +msgid "Interval notation solution: " +msgstr "Lösung in Intervallschreibweise: " -#: course/course.php:579 course/course.php:580 -msgid "Manage Question Set" -msgstr "Fragensatz verwalten" +#: assess2/displayq3.php:8192 assess2/questions/answerboxhelpers.php:590 +#: assessment/displayq2.php:8032 +msgid "Inequality notation solution: " +msgstr "Lösung als Ungleichung: " -#: course/course.php:460 course/course.php:461 -msgid "Mass Change" -msgstr "Serienänderung" +#: assess2/displayq3.php:8194 assess2/questions/answerboxhelpers.php:592 +#: assessment/displayq2.php:8034 +msgid "One solution: " +msgstr "Eine Lösung: " + +#: assess2/gbviewassess.php:76 assess2/gbviewassess.php:79 +#: assess2/gbviewassess.php:82 assess2/gbviewassess.php:89 +#: course/course.php:500 course/course.php:585 course/gradebook.php:292 +#: course/gradebook.php:318 course/gradebook.php:397 course/gradebook.php:400 +#: course/outcomereport.php:137 course/redeemlatepass.php:37 +#: course/redeemlatepass.php:172 +msgid "Gradebook" +msgstr "Punkteübersicht" + +#: assess2/gbviewassess.php:77 course/gradebook.php:315 +#: course/outcomereport.php:311 +msgid "Student Detail" +msgstr "Studenten-Details" + +#: assess2/gbviewassess.php:80 +msgid "View Scores" +msgstr "Punkte ansehen" + +#: assess2/gbviewassess.php:83 +msgid "View Group Scores" +msgstr "Punkte der Gruppe ansehen" + +#: assess2/gbviewassess.php:85 +msgid "Student Groups" +msgstr "Studentengruppen" + +#: assess2/gbviewassess.php:87 +msgid "Diagnostic Gradebook" +msgstr "Diagnostik-Punkteübersicht" + +#: assess2/gbviewassess.php:91 course/gb-viewasid.php:579 +msgid "Assessment Detail" +msgstr "Test-Details" + +#: assess2/gbviewassess.php:107 assess2/index.php:76 footer.php:37 +#: javascript/assess2_min.js:7 mathquill/mqedlayout.js:648 +#: mathquill/mqedlayout_min.js:1 +msgid "[more..]" +msgstr "[mehr..]" + +#: assess2/index.php:56 assess2/index.php:60 assessment/showtest.php:1210 +#: assessment/showtest.php:1214 course/courseshowitems.php:1823 +msgid "Assessment" +msgstr "Test" + +#: assess2/questions/QuestionGenerator.php:187 +#, php-format +msgid "Caught warning in the question code: %s on line %d in file %s" +msgstr "Warnung im Code der Frage %s in Zeile %d in File %s" + +#: assess2/questions/QuestionGenerator.php:207 +msgid "

Caught error while evaluating this question: " +msgstr "

Fehler bei der Auswertung dieser Frage: " + +#: assess2/questions/QuestionHtmlGenerator.php:172 +#: assess2/questions/ScoreEngine.php:131 +msgid "Caught error while evaluating the code in this question: " +msgstr "Fehler bei der Auswertung des Codes in dieser Frage: " + +#: assess2/questions/QuestionHtmlGenerator.php:471 +msgid "Caught error while evaluating the text in this question: " +msgstr "Fehler bei der Auswertung des Fragentexts: " + +#: assess2/questions/answerboxes/FileUploadAnswerBox.php:58 +msgid "Choose File" +msgstr "Wähle eine Datei" + +#: assess2/questions/answerboxes/FileUploadAnswerBox.php:59 +#: assess2/questions/answerboxes/FileUploadAnswerBox.php:64 +msgid "No file chosen" +msgstr "Keine Datei gewählt" + +#: assess2/questions/answerboxes/FileUploadAnswerBox.php:98 +msgid "Last file submitted:" +msgstr "Zuletzt hochgeladene Datei:" + +#: assess2/questions/answerboxes/MultipleAnswerAnswerBox.php:69 +#: assess2/questions/scorepart/MultipleAnswerScorePart.php:63 +msgid "None of these" +msgstr "Keine davon" + +#: assess2/questions/models/Question.php:164 +msgid "Video" +msgstr "Video" -#: course/course.php:639 course/course.php:640 -msgid "Mass Change Assessments" -msgstr "Serienveränderung von Tests" +#: assess2/questions/models/Question.php:166 +msgid "Read" +msgstr "Lesen" -#: course/course.php:643 course/course.php:644 -msgid "Mass Change Dates" -msgstr "Serienveränderung von Daten" +#: assessment/catscores.php:61 +msgid "Categorized Score Breakdown" +msgstr "Kategorisierte Punktzahlaufschlüsselung" + +#: assessment/catscores.php:62 course/gradebook.php:327 +msgid "Category" +msgstr "Kategorie" + +#: assessment/catscores.php:62 +msgid "Points Earned / Possible (Percent)" +msgstr "Punkte erreicht / möglich (Prozent)" -#: course/course.php:642 course/course.php:643 -msgid "Mass Change Forums" -msgstr "Serienveränderung von Foren" +#: assessment/displayq2.php:530 +msgid "Inactive Question" +msgstr "Inaktive Frage" -#: course/gradebook.php:626 +#: assessment/displayq2.php:1852 msgid "" -"Meanings: IP-In Progress (some unattempted questions), OT-overtime, PT-" -"practice test, EC-extra credit, NC-no credit
* Has feedback, " -"d Dropped score, e Has exception LP Used " -"latepass" +"Enter your answer as a matrix filled with numbers, like ((2,3,4),(3,4,5))" msgstr "" -"Bedeutung: IP-In Progress (einige nicht bearbeitete Fragen), OT-Zeitablauf, " -"PT-Übungstest, EC-Extrapunkte, NC-keine Punkte
* Hinweise, " -"de Sonderfall LP " -"verspätet eingereicht " +"Geben Sie Ihre Antwort als mit Zahlen gefüllte Matrix wie ((2,3,4),(3,4,5)) " +"ein." + +#: assessment/header.php:296 header.php:260 +msgid "Course Navigation" +msgstr "Kurs-Navigation" -#: course/gradebook.php:466 +#: assessment/interpret5.php:47 +msgid "bad question id in includeqtextfrom" +msgstr "Falsche question id in includeqtextfrom" + +#: assessment/interpret5.php:148 msgid "" -"Meanings: IP-In Progress (some unattempted questions), OT-overtime, PT-" -"practice test, EC-extra credit, NC-no credit
d Dropped " -"score. e Has exception LP Used latepass" +"error with for code.. must be \"for ($var=a..b) {todo}\" where a and b are " +"whole numbers or variables only" msgstr "" -"Bedeutung: IP-In Progress (einige nicht bearbeitete Fragen), OT-Zeitablauf, " -"PT-Übungstest, EC-Extrapunkte, NC-keine Punkte
de Sonderfall LP verspätet eingereicht " +"Fehler im for-Code.. muss sein \"for ($var=a..b) {todo}\" wobei a und b nur " +"ganze Zahlen oder Variablen sein dürfen" -#: index.php:357 index.php:359 index.php:358 course/gradebook.php:616 -#: course/gradebook.php:667 -msgid "Message" -msgstr "Nachricht" +#: assessment/interpret5.php:158 +msgid "need curlys for if statement at beginning of line" +msgstr "benötige Klammern für if-Ausdruck am Anfang der Zeile" -#: assessment/testutil.php:661 assessment/testutil.php:796 -msgid "Message instructor about this question" -msgstr "Dozenten wegen Frage benachrichtigen" +#: assessment/interpret5.php:174 +msgid "need curlys for else statement" +msgstr "benötige Klammern für else-Ausdruck" -#: index.php:253 index.php:255 course/course.php:408 course/course.php:479 -#: course/course.php:555 course/course.php:723 course/course.php:755 -#: course/course.php:409 course/course.php:480 course/course.php:556 -#: course/course.php:724 course/course.php:756 assessment/showtest.php:759 -#: index.php:254 assessment/showtest.php:953 assessment/showtest.php:1084 -msgid "Messages" -msgstr "Nachrichten" +#: assessment/interpret5.php:184 +msgid "need condition for elseif" +msgstr "benötige Bedingung für elseif" + +#: assessment/interpret5.php:196 +msgid "else used without leading if statement" +msgstr "else wird ohne vorangehende if Anweisung verwendet" + +#: assessment/interpret5.php:202 +msgid "line of type $a=b if $c==0 where $d==0 is invalid" +msgstr "Zeile vom Typ $a=b if $c==0 where $d==0 ist ungültig" -#: index.php:328 index.php:330 index.php:329 +#: assessment/interpret5.php:338 +msgid "Variable missing a name" +msgstr "Unbenannte Variable" + +#: assessment/interpret5.php:342 #, php-format -msgid "Messages (%d)" -msgstr "Nachrichten (%d)" +msgid "Eeek.. unallowed var %s!" +msgstr "Eeek.. Variable %s ist nicht erlaubt!" -#: course/courseshowitems.php:162 course/courseshowitems.php:215 -#: course/courseshowitems.php:269 course/courseshowitems.php:361 -#: course/courseshowitems.php:408 course/courseshowitems.php:468 -#: course/courseshowitems.php:773 course/courseshowitems.php:787 -#: course/courseshowitems.php:835 course/courseshowitems.php:908 -#: course/courseshowitems.php:936 course/courseshowitems.php:1038 -#: course/courseshowitems.php:1064 course/courseshowitems.php:1187 -#: course/courseshowitems.php:1217 course/courseshowitems.php:1313 -#: course/courseshowitems.php:1342 course/courseshowitems.php:1664 -#: course/courseshowitems.php:1787 course/courseshowitems.php:1834 -#: course/courseshowitems.php:1881 course/courseshowitems.php:1928 -#: course/courseshowitems.php:163 course/courseshowitems.php:216 -#: course/courseshowitems.php:270 course/courseshowitems.php:362 -#: course/courseshowitems.php:409 course/courseshowitems.php:469 -#: course/courseshowitems.php:774 course/courseshowitems.php:788 -#: course/courseshowitems.php:836 course/courseshowitems.php:909 -#: course/courseshowitems.php:937 course/courseshowitems.php:1039 -#: course/courseshowitems.php:1065 course/courseshowitems.php:1188 -#: course/courseshowitems.php:1218 course/courseshowitems.php:1314 -#: course/courseshowitems.php:1343 course/courseshowitems.php:1665 -#: course/courseshowitems.php:1788 course/courseshowitems.php:1835 -#: course/courseshowitems.php:1882 course/courseshowitems.php:1929 -msgid "Modify" -msgstr "Anpassen" +#: assessment/interpret5.php:412 +#, php-format +msgid "Eeek.. unallowed macro %s" +msgstr "Eeek.. Makro %s ist nicht erlaubt" -#: course/courseshowitems.php:568 course/courseshowitems.php:569 -msgid "Never" -msgstr "Niemals" +#: assessment/interpret5.php:429 +#, php-format +msgid "Warning... unquoted string %s.. treating as string" +msgstr "" +"Warnung... %s ohne Anführungszeichen ... wird als Zeichenkette behandelt" -#: course/course.php:422 course/course.php:489 course/course.php:575 -#: course/course.php:617 course/course.php:716 course/courseshowitems.php:153 -#: course/courseshowitems.php:206 course/courseshowitems.php:260 -#: course/courseshowitems.php:352 course/courseshowitems.php:399 -#: course/courseshowitems.php:459 course/courseshowitems.php:154 -#: course/courseshowitems.php:207 course/courseshowitems.php:261 -#: course/courseshowitems.php:353 course/courseshowitems.php:400 -#: course/courseshowitems.php:460 course/course.php:423 course/course.php:490 -#: course/course.php:576 course/course.php:618 course/course.php:717 -#: course/gradebook.php:516 -msgid "New" -msgstr "Neu" +#: assessment/interpret5.php:537 assessment/mathphp2.php:435 +msgid "unmatched parens/brackets - likely will cause an error" +msgstr "unpaarige Klammern - wird voraussichtlich einen Fehler versuchen" + +#: assessment/interpret5.php:554 +msgid "\"invalid - unquoted backticks\"" +msgstr "\"ungültig - Backticks nicht in Anführungszeichen\"" -#: index.php:255 index.php:257 course/course.php:241 course/course.php:285 -#: course/course.php:242 course/course.php:286 index.php:256 +#: assessment/interpret5.php:651 assessment/interpret5.php:697 +msgid "Invalid variable" +msgstr "Ungültige Variable" + +#: assessment/interpret5.php:720 +msgid "Invalid variable: " +msgstr "Ungültige Variable: " + +#: assessment/interpret5.php:733 #, php-format -msgid "New (%d)" -msgstr "Neue (%d)" +msgid "Error loading library %s\n" +msgstr "Fehler beim Laden der Bibliothek %s\n" + +#: assessment/libs/stats.php:682 +msgid "Pie Chart" +msgstr "Tortendiagramm" + +#: assessment/libs/stats.php:684 course/gradebook.php:747 +msgid "Percent" +msgstr "Prozent" -#: course/courseshowitems.php:1178 course/courseshowitems.php:1209 -#: course/courseshowitems.php:1179 course/courseshowitems.php:1210 +#: assessment/macros.php:199 #, php-format -msgid "New Posts (%s)" -msgstr "Neue Beiträge (%s)" +msgid "Open dot at %s" +msgstr "Offener Punkt bei %s" -#: course/courseshowitems.php:1303 course/courseshowitems.php:1335 -#: course/courseshowitems.php:1304 course/courseshowitems.php:1336 -msgid "New Revisions" -msgstr "Neue Revisionen" +#: assessment/macros.php:202 +#, php-format +msgid "Dot at %s" +msgstr "Punkt bei %s" -#: course/courseshowitems.php:1162 course/courseshowitems.php:1163 +#: assessment/macros.php:233 #, php-format -msgid "New Threads due %s. " -msgstr "Neue Themen fällig %s. " +msgid "Text label, color %s, at %s reading: %s" +msgstr "Angezeigter Text, Farbe %s, bei %s gelesen: %s" -#: index.php:390 index.php:392 index.php:391 -msgid "New forum posts" -msgstr "Neue Forenbeiträge" +#: assessment/macros.php:2118 +msgid "he" +msgstr "er" -#: index.php:350 index.php:352 index.php:351 -msgid "New messages" -msgstr "Neue Nachrichten" +#: assessment/macros.php:2118 +msgid "him" +msgstr "ihm" + +#: assessment/macros.php:2118 +msgid "his" +msgstr "sein" + +#: assessment/macros.php:2120 +msgid "she" +msgstr "sie" + +#: assessment/macros.php:2120 +msgid "her" +msgstr "ihr(e)" + +#: assessment/macros.php:2120 +msgid "hers" +msgstr "ihre" + +#: assessment/macros.php:3228 +msgid "No answer selected. Try again." +msgstr "Keine Antwort ausgewählt. Bitte erneut versuchen." + +#: assessment/macros.php:3263 +msgid "This answer does not appear to be a valid number." +msgstr "Diese Antwort scheint keine gültige Zahl zu sein." + +#: assessment/printtest.php:39 +msgid "Show Intro and Between-Question Text" +msgstr "Zeige Einführung und Text zwischen Fragen" + +#: assessment/printtest.php:42 assessment/printtest.php:164 +msgid "Hide Intro and Between-Question Text" +msgstr "Verstecke Einführung und Text zwischen Fragen" + +#: assessment/printtest.php:50 +msgid "Show Questions" +msgstr "Zeige Fragen" + +#: assessment/printtest.php:53 assessment/printtest.php:165 +msgid "Hide Questions" +msgstr "Verstecke Fragen" + +#: assessment/printtest.php:161 +msgid "Print Ready Version" +msgstr "Druckversion" + +#: assessment/printtest.php:162 +msgid "Print" +msgstr "Druck" + +#: assessment/printtest.php:167 javascript/livepoll.js:556 +msgid "Show Answers" +msgstr "Antworten anzeigen" + +#: assessment/printtest.php:229 +msgid "Showing Current Versions" +msgstr "Zeige die aktuelle Version" + +#: assessment/printtest.php:229 assessment/printtest.php:232 +msgid "Show Scored View" +msgstr "Zeige benotete Version" + +#: assessment/printtest.php:229 assessment/printtest.php:234 +msgid "Show Last Attempts" +msgstr "Zeige die letzten Versuche" + +#: assessment/printtest.php:232 +msgid "Showing Last Attempts" +msgstr "Die letzten Versuche" + +#: assessment/printtest.php:234 +msgid "Showing Scored View" +msgstr "Zeige Ansicht mit Punkten" + +#: assessment/showsoln.php:26 +msgid "of a similar problem" +msgstr "eines ähnlichen Problems" + +#: assessment/showtest.php:28 +msgid "" +"You are not authorized to view this page. If you are trying to reaccess an " +"assessment you've already started, access it from the course page" +msgstr "" +"Sie sind nicht berechtigt, auf diese Seite zuzugreifen. Wenn Sie versuchen, " +"erneut auf einen Test zuzugreifen, den Sie bereits gestartet haben, greifen " +"Sie über die Kursseite darauf zu" + +#: assessment/showtest.php:135 +msgid "" +"This assessment is past the due date, and is now in un-graded review mode " +"where no scores will be saved." +msgstr "" +"Dieser Test ist nach dem Ende der Einreichungsfrist im Überprüfungsmodus. Es " +"werden keine Punktzahlen gespeichert." + +#: assessment/showtest.php:136 +#, php-format +msgid "" +"You have %d LatePass(es) available which you could use to re-open the " +"assignment for scored work." +msgstr "" +"Sie können %d mal verspätet einreichen. Dies können Sie benutzen, um den " +"Test für bewertete Eingaben nochmals zu öffnen." + +#: assessment/showtest.php:137 assessment/showtest.php:155 bltilaunch.php:213 +#: bltilaunch.php:1778 course/courseshowitems.php:903 +#: course/courseshowitems.php:939 course/courseshowitems.php:970 +#: course/courseshowitems.php:1554 course/courseshowitems.php:1601 +#: course/gradebook.php:862 forums/thread.php:171 +msgid "Use LatePass" +msgstr "Verspätet einreichen" + +#: assessment/showtest.php:138 +msgid "This will re-open the assessment for graded work" +msgstr "" +"Das öffnet den Test erneut für eine Bearbeitung, die auch bewertet wird" + +#: assessment/showtest.php:140 +msgid "" +"If you open the assessment in un-graded review mode now, you will not be " +"able to use a LatePass later" +msgstr "" +"Wenn Sie diesen Test jetzt im Überprüfungsmodus ansehen, können Sie ihn " +"nicht mehr verspätet einreichen" + +#: assessment/showtest.php:148 +msgid "This assessment is not available yet" +msgstr "Dieser Test ist noch nicht verfügbar" + +#: assessment/showtest.php:150 +msgid "This assessment is closed" +msgstr "Dieser Test ist geschlossen" + +#: assessment/showtest.php:167 +msgid "" +"If you view this scored assignment, you will not be able to use a LatePass " +"on it" +msgstr "" +"Wenn Sie diesen bewerteten Test ansehen, können Sie ihn nicht mehr verspätet " +"einreichen" + +#: assessment/showtest.php:169 assessment/showtest.php:1252 +msgid "View your scored assessment" +msgstr "Ihre bepunkteten Tests anzeigen" + +#: assessment/showtest.php:213 +msgid "You cannot start this assessment yet." +msgstr "Sie könnendiesen Test noch nicht starten." + +#: assessment/showtest.php:215 +#, php-format +msgid "Access to this assessment requires a score of %d%s on %s" +msgstr "Der Zugang zu diesem Test erfordert mindestens %d%s Punkte bei %s" + +#: assessment/showtest.php:217 +msgid " points" +msgstr " Punkte" + +#: assessment/showtest.php:278 +msgid "Password incorrect. Try again." +msgstr "Passwort inkorrekt. Erneut versuchen." + +#: assessment/showtest.php:287 +msgid "This assessment requires the use of Remote Proctor Now (RPNow)." +msgstr "Dieser Test benötigt die Verwendung von Remote Proctor Now (RPNow)." + +#: assessment/showtest.php:289 +msgid "Password required for access." +msgstr "Für den Zugriff wird ein Passwort benötigt." + +#: assessment/showtest.php:328 +msgid "No questions in assessment!" +msgstr "Keine Fragen in dem Test!" + +#: assessment/showtest.php:338 +msgid "Assessment has no questions!" +msgstr "Test hat keine Fragen!" + +#: assessment/showtest.php:362 +msgid "" +"You are not yet a member of a group. Contact your instructor to be added to " +"a group." +msgstr "" +"Sie sind noch nicht Mitglied einer Gruppe. Kontaktieren Sie ihren Dozenten, " +"um zu einer Gruppe hinzugefügt zu werden." + +#: assessment/showtest.php:393 +msgid "Error DupASID." +msgstr "Fehler DupASID." + +#: assessment/showtest.php:393 +msgid "Try again" +msgstr "Veruchen Sie es erneut" + +#: assessment/showtest.php:537 +msgid "Error. Access assessment from course page" +msgstr "Fehler. Greifen Sie auf den Test über die Kursseite zu" + +#: assessment/showtest.php:653 +msgid "" +"Error. It appears you have opened another assessment since you opened this " +"one. " +msgstr "" +"Fehler. Es scheint, als hätten Sie einen anderen Test geöffnet, nachdem Sie " +"diesen öffneten. " + +#: assessment/showtest.php:654 +msgid "" +"Only one open assessment can be handled at a time. Please reopen the " +"assessment and try again. " +msgstr "" +"Es kann nur ein Test gleichzeitig geöffnet sein. Bitte öffnen Sie den Test " +"erneut und versuchen Sie es ein weiteres Mal. " + +#: assessment/showtest.php:655 assessment/showtest.php:662 +msgid "Return to course page" +msgstr "Zur Kursseite zurückkehren" + +#: assessment/showtest.php:661 +msgid "" +"Error. Looks like your group has changed for this assessment. Please reopen " +"the assessment and try again." +msgstr "" +"Fehler. Es scheint, als hätte sich Ihre Gruppe für diesen Test geändert. " +"Bitte öffnen Sie den Test erneut und versuchen es ein weiteres Mal." + +#: assessment/showtest.php:689 assessment/showtest.php:714 +#: assessment/showtest.php:735 +msgid "Assessment is closed" +msgstr "Test ist geschlossen" + +#: assessment/showtest.php:759 +msgid "Due date has passed. Submission rejected. " +msgstr "Fälligkeitsdatum ist verstrichen. Einsendung zurückgewiesen. " + +#: assessment/showtest.php:805 +msgid "Time limit has expired. Submission rejected. " +msgstr "Das Zeitlimit ist abgelaufen. Einsendung zurückgewiesen. " + +#: assessment/showtest.php:807 +msgid "Your time limit on this assessment has expired." +msgstr "Ihr Zeitfenster zum Abschließen dieses Tests ist abgelaufen." + +#: assessment/showtest.php:1164 +msgid "Unable to connect to LivePoll Hub. Please try again later." +msgstr "" +"Keine Verbindung zum LivePoll Server möglich. Bitte versuchen Sie es später " +"erneut." + +#: assessment/showtest.php:1192 +msgid "Gradebook Detail" +msgstr "Punkteübersichtsdetails" + +#: assessment/showtest.php:1193 +msgid "View as student" +msgstr "Als Student anzeigen" + +#: assessment/showtest.php:1200 assessment/showtest.php:1220 +#: assessment/showtest.php:1259 course/course.php:449 +msgid "Edit User Preferences" +msgstr "Benutzerspezifische Einstellungen bearbeiten" + +#: assessment/showtest.php:1232 assessment/showtest.php:1243 +msgid "This will discard any unsaved work." +msgstr "Dies wird alle nicht gespeicherte Arbeit verwerfen." + +#: assessment/showtest.php:1232 course/course.php:484 course/course.php:571 +#: index.php:362 msgs/msglist.php:608 +msgid "Messages" +msgstr "Nachrichten" + +#: assessment/showtest.php:1243 +msgid "Redeem LatePass" +msgstr "Verspätet einreichen" + +#: assessment/showtest.php:1272 +msgid "Group error - lost group info" +msgstr "Gruppenfehler - Gruppeninfo verloren" + +#: assessment/showtest.php:1292 +msgid "password incorrect" +msgstr "Passwort inkorrekt" + +#: assessment/showtest.php:1346 +msgid "Select group members" +msgstr "Wählen Sie Gruppenmitglieder aus" + +#: assessment/showtest.php:1354 +msgid "" +"Group error. Please try reaccessing the assessment from the course page" +msgstr "" +"Gruppenfehler. Bitte versuchen Sie erneut auf den Test über die Kursseite " +"zuzugreifen" + +#: assessment/showtest.php:1364 +msgid "Current Group Members:" +msgstr "Aktuelle Gruppenmitglieder:" + +#: assessment/showtest.php:1386 +msgid "Select a name.." +msgstr "Wählen Sie einen Namen aus.." + +#: assessment/showtest.php:1398 +msgid "" +"Each group member (other than the currently logged in student) to be added " +"should select their name and enter their password here." +msgstr "" +"Jedes Gruppenmitglied (ausser dem gerade angemeldetem Studenten), dass " +"hinzugefügt werden soll, muss hier seinen Namen auswählen und sein Passwort " +"eingeben." + +#: assessment/showtest.php:1400 +msgid "" +"Each group member (other than the currently logged in student) to be added " +"should select their name here." +msgstr "" +"Jedes Gruppenmitglied (ausser dem gerade angemeldetem Studenten), dass " +"hinzugefügt werden soll, muss hier seinen Namen auswählen." + +#: assessment/showtest.php:1410 +msgid "Password" +msgstr "Passwort" + +#: assessment/showtest.php:1413 +msgid "Record Group and Continue" +msgstr "Gruppe speichern und fortfahren" + +#: assessment/showtest.php:1442 +msgid "Teacher Acting as " +msgstr "Lehrer agiert als " + +#: assessment/showtest.php:1452 +msgid "Practice Assessment" +msgstr "Übungstest" + +#: assessment/showtest.php:1452 +msgid "Create new version." +msgstr "Neue Version erzeugen." + +#: assessment/showtest.php:1459 +#, php-format +msgid "This assignment is past the original due date of %s." +msgstr "Dieser Test ist über die Deadline von %s hinaus." + +#: assessment/showtest.php:1461 +msgid "You have used a LatePass" +msgstr "Sie haben verspätet eingereicht" + +#: assessment/showtest.php:1463 +msgid "You were granted an extension" +msgstr "Sie haben eine Verlängerung bekommen" + +#: assessment/showtest.php:1467 +#, php-format +msgid "" +"Problems answered correctly after the original due date are subject to a %d" +"%% penalty" +msgstr "" +"Korrekte Antworten nach der Abgabefrist werden %d %% Punktabzug bestraft" + +#: assessment/showtest.php:1475 course/gradebook.php:351 +#: course/gradebook.php:503 +msgid "Past due" +msgstr "Überfällig" + +#: assessment/showtest.php:1478 +msgid "Due in under " +msgstr "Fällig in unter " + +#: assessment/showtest.php:1480 +msgid "Due in " +msgstr "Fällig in " + +#: assessment/showtest.php:1483 course/exportcalfeed.php:36 +msgid "hours" +msgstr "Stunden" + +#: assessment/showtest.php:1485 assessment/showtest.php:3656 +#: course/drillassess.php:233 course/exportcalfeed.php:36 +msgid "minutes" +msgstr "Minuten" + +#: assessment/showtest.php:1488 assessment/showtest.php:1490 +#: assessment/showtest.php:1495 assessment/showtest.php:1500 +#: course/courseshowitems.php:708 +msgid "Due" +msgstr "Fällig" + +#: assessment/showtest.php:1521 course/courseshowitems.php:857 +#: course/gradebook.php:822 course/treereader.php:393 +msgid "hour" +msgstr "Stunde" + +#: assessment/showtest.php:1523 assessment/showtest.php:1530 +#: course/courseshowitems.php:859 course/courseshowitems.php:866 +#: course/drillassess.php:233 course/gradebook.php:824 course/gradebook.php:831 +#: course/treereader.php:395 course/treereader.php:402 +msgid "minute" +msgstr "Minute" + +#: assessment/showtest.php:1525 assessment/showtest.php:1532 +#: course/courseshowitems.php:861 course/courseshowitems.php:868 +#: course/drillassess.php:236 course/gradebook.php:826 course/gradebook.php:833 +#: course/treereader.php:397 course/treereader.php:404 +msgid "second" +msgstr "Sekunde" + +#: assessment/showtest.php:1535 +msgid "second(s)" +msgstr "Sekunde(n)" + +#: assessment/showtest.php:1538 +#, php-format +msgid "Timelimit: %s. Time Expired" +msgstr "Zeitlimit: %s. Zeit abgelaufen" + +#: assessment/showtest.php:1555 +msgid "Timelimit" +msgstr "Zeitlimit" + +#: assessment/showtest.php:1557 +msgid "Time limit shortened because of due date" +msgstr "Zeitlimit wegen Fälligkeitsdatum verkürzt" + +#: assessment/showtest.php:1563 +msgid "remaining" +msgstr "verbleibend" + +#: assessment/showtest.php:1563 course/addblock.php:429 +#: course/chgblocks.php:245 course/gbsettings.php:317 course/listusers.php:711 +#: course/listusers.php:715 javascript/posts.js:35 javascript/posts.js:56 +msgid "Hide" +msgstr "Verstecken" + +#: assessment/showtest.php:1569 assessment/showtest.php:2583 +msgid "In Review Mode - no scores will be saved" +msgstr "Im Korrekturmodus - keine Bewertungen werden gespeichert" + +#: assessment/showtest.php:1569 +msgid "Create new versions of all questions." +msgstr "Neue Version aller Fragen erzeugen." + +#: assessment/showtest.php:1571 +msgid "Time limit expired" +msgstr "Zeitlimit abgelaufen" + +#: assessment/showtest.php:1630 assessment/showtest.php:1736 +#: javascript/AMhelpers.js:2343 javascript/assessment_min.js:3 +msgid "Show Intro/Instructions" +msgstr "Zeige Einführung/Anweisungen" + +#: assessment/showtest.php:1641 +#, php-format +msgid "" +"Question %d has been submitted since you viewed it. Your answer just " +"submitted was not scored or recorded." +msgstr "" +"Frage %d wurde abgeschickt seit Sie sie betrachteten. Ihre gerade " +"abgeschickte Antwort wurde nicht bewertet oder gespeichert." + +#: assessment/showtest.php:1660 +msgid "" +"Answers saved, but not submitted for grading. You may continue with the " +"assessment, or come back to it later. " +msgstr "" +"Antwort gespeichert, aber noch nicht zur Bewertung abgegeben. Sie können mit " +"dem Test fortfahren oder später dazu zurück kehren. " + +#: assessment/showtest.php:1661 +msgid "The timelimit will continue to count down" +msgstr "Das Zeitlimit wird mit dem Herunterzählen fortfahren" + +#: assessment/showtest.php:1663 +msgid "Return to assessment" +msgstr "Zurück zum Test oder" + +#: assessment/showtest.php:1680 +msgid "" +"The last question has been submittted since you viewed it, and that grade is " +"shown below. Your answer just submitted was not scored or recorded." +msgstr "" +"Die letzte Frage wurde abgeschickt seit Sie sie betrachteten und die " +"Punktzahl wird unten angezeigt. Ihre gerade abgeschickte Antwort wurde nicht " +"bewertet oder gespeichert." + +#: assessment/showtest.php:1697 +msgid "Previous Question" +msgstr "Vorherige Frage" + +#: assessment/showtest.php:1699 assessment/showtest.php:1813 +#: assessment/showtest.php:2074 assessment/showtest.php:2265 +msgid "Score before penalty on last attempt: " +msgstr "Punktzahl vor Strafe beim letzten Versuch: " + +#: assessment/showtest.php:1703 +msgid "Score on last attempt" +msgstr "Punktzahl beim letzten Versuch" + +#: assessment/showtest.php:1705 +msgid "Score in gradebook" +msgstr "Punktzahl in Punkteübersicht" + +#: assessment/showtest.php:1710 assessment/showtest.php:1841 +#: assessment/showtest.php:1853 assessment/showtest.php:2088 +msgid "Reattempt last question" +msgstr "Letzte Frage erneut versuchen" + +#: assessment/showtest.php:1710 +msgid "" +"If you do not reattempt now, you will have another chance once you complete " +"the assessment." +msgstr "" +"Wenn Sie es jetzt nicht noch einmal versuchen, bekommen Sie eine weitere " +"Möglichleit, wenn Sie den Test abgeben." + +#: assessment/showtest.php:1715 assessment/showtest.php:1844 +#: assessment/showtest.php:2008 assessment/showtest.php:2094 +#: assessment/showtest.php:2301 assessment/showtest.php:2957 +msgid "Try another similar question" +msgstr "Andere ähnliche Frage versuchen" + +#: assessment/showtest.php:1737 assessment/showtest.php:1801 +#: assessment/showtest.php:1941 assessment/showtest.php:2145 +#: assessment/showtest.php:2620 assessment/showtest.php:2674 +#: assessment/showtest.php:2705 assessment/showtest.php:2771 +#: assessment/showtest.php:2817 +msgid "Intro or instructions" +msgstr "Zeige Einführung/Anweisungen" + +#: assessment/showtest.php:1752 assessment/showtest.php:1907 +#: assessment/showtest.php:1951 assessment/showtest.php:1978 +#: assessment/showtest.php:2688 assessment/showtest.php:2727 +#: assessment/showtest.php:2749 +msgid "Hide Question Information" +msgstr "Fragenhinweise verstecken" + +#: assessment/showtest.php:1753 assessment/showtest.php:1757 +#: assessment/showtest.php:1908 assessment/showtest.php:1912 +#: assessment/showtest.php:1952 assessment/showtest.php:1956 +#: assessment/showtest.php:1979 assessment/showtest.php:2157 +#: assessment/showtest.php:2631 assessment/showtest.php:2689 +#: assessment/showtest.php:2693 assessment/showtest.php:2728 +#: assessment/showtest.php:2750 assessment/showtest.php:2781 +#: assessment/showtest.php:2849 +msgid "Pre-question text" +msgstr "Text vor der Frage" + +#: assessment/showtest.php:1756 assessment/showtest.php:1911 +#: assessment/showtest.php:1955 assessment/showtest.php:2692 +msgid "Show Question Information" +msgstr "Fragenhinweise anzeigen" + +#: assessment/showtest.php:1778 assessment/showtest.php:2201 +msgid "" +"This question has been submittted since you viewed it, and that grade is " +"shown below. Your answer just submitted was not scored or recorded." +msgstr "" +"Diese Frage wurde abgeschickt seit Sie sie betrachteten und die Punktzahl " +"wird unten angezeigt. Ihre gerade abgeschickte Antwort wurde nicht bewertet " +"oder gespeichert." + +#: assessment/showtest.php:1805 assessment/showtest.php:1922 +#: assessment/showtest.php:1966 assessment/showtest.php:1986 +#: assessment/showtest.php:2715 assessment/showtest.php:2737 +#: assessment/showtest.php:2893 assessment/showtest.php:2905 +msgid "Start of Questions" +msgstr "Beginn der Fragen" + +#: assessment/showtest.php:1818 assessment/showtest.php:1993 +#: assessment/showtest.php:2080 assessment/showtest.php:2270 +msgid "Score on last attempt: " +msgstr "Punktzahl beim letzten Versuch: " + +#: assessment/showtest.php:1821 assessment/showtest.php:1996 +#: assessment/showtest.php:2083 assessment/showtest.php:2273 +msgid "Score in gradebook: " +msgstr "Punktzahl in Punkteübersicht: " + +#: assessment/showtest.php:1825 assessment/showtest.php:2276 +msgid "Note:" +msgstr "Hinweis:" + +#: assessment/showtest.php:1825 assessment/showtest.php:2276 +msgid "" +"This question contains parts that can not be auto-graded. Those parts will " +"count as a score of 0 until they are graded by your instructor" +msgstr "" +"Diese Frage enthält Teile, die nicht automatisch bewertet werden können. " +"Diese Teile werden mit 0 angezeigt, bis sie von Ihrem Dozenten bewertet " +"werden" + +#: assessment/showtest.php:1830 +msgid "Question Scored" +msgstr "Frage bewertet" + +#: assessment/showtest.php:1847 +msgid ", reattempt last question below, or select another question." +msgstr "" +", versuchen Sie die letzte Frage erneut, oder wählen Sie eine andere Frage." + +#: assessment/showtest.php:1849 assessment/showtest.php:1855 +msgid ", or select another question" +msgstr ", oder wählen Sie eine andere Frage" + +#: assessment/showtest.php:1860 +msgid "Reattempt last question below, or select another question" +msgstr "" +"Versuchen Sie die letzte Frage erneut, oder wählen Sie eine andere Frage" + +#: assessment/showtest.php:1862 +msgid "Select another question" +msgstr "Wählen Sie eine andere Frage aus" + +#: assessment/showtest.php:1869 assessment/showtest.php:2319 +#: assessment/showtest.php:2533 assessment/showtest.php:2963 +msgid "This question, with your last answer" +msgstr "Diese Frage, mit Ihrer letzten Antwort" + +#: assessment/showtest.php:1873 assessment/showtest.php:2323 +#: assessment/showtest.php:2537 assessment/showtest.php:2965 +msgid " and correct answer" +msgstr " und der korrekten Antwort" + +#: assessment/showtest.php:1879 assessment/showtest.php:2329 +#: assessment/showtest.php:2333 assessment/showtest.php:2543 +#: assessment/showtest.php:2547 assessment/showtest.php:2968 +#: assessment/showtest.php:2970 +msgid ", is displayed below" +msgstr ", wird unten angezeigt" + +#: assessment/showtest.php:1927 assessment/showtest.php:1971 +#: assessment/showtest.php:2742 +msgid "Jump to Answer" +msgstr "Zur Antwort springen" + +#: assessment/showtest.php:1927 assessment/showtest.php:1971 +#: assessment/showtest.php:2742 +msgid "" +"If you jump to the answer, you must generate a new version to earn credit" +msgstr "" +"Wenn Sie zur Antwort springen, müssen sie eine neue Version generieren, um " +"Punkte zu erhalten" + +#: assessment/showtest.php:1933 +msgid "When you are done, " +msgstr "Wenn Sie fertig sind, " + +#: assessment/showtest.php:1934 +msgid "click here to see a summary of your scores" +msgstr "klicken Sie hier, um eine Zusammenfassung Ihrer Punkte zu sehen" + +#: assessment/showtest.php:1988 +msgid "You've already done this problem." +msgstr "Sie haben dieses Problem bereits behandelt." + +#: assessment/showtest.php:2002 +msgid "Reattempt this question" +msgstr "Diese Frage erneut versuchen" + +#: assessment/showtest.php:2012 assessment/showtest.php:2821 +#: assessment/showtest.php:3022 assessment/testutil.php:1066 +msgid "When you are done, click here to see a summary of your score" +msgstr "" +"Wenn Sie fertig sind, klicken Sie hier um eine Zusammendassung Ihrer " +"Bewertung zu sehen" + +#: assessment/showtest.php:2016 +msgid "Question with last attempt is displayed for your review only" +msgstr "Frage mit letztem Versuch wird nur zur Überprüfung angezeigt" + +#: assessment/showtest.php:2054 +msgid "" +"The last question has been submitted since you viewed it, and that score is " +"shown below. Your answer just submitted was not scored or recorded." +msgstr "" +"Die letzte Frage wurde abgeschickt seit Sie sie betrachteten und die " +"Punktzahl wird unten angezeigt. Ihre gerade abgeschickte Antwort wurde nicht " +"bewertet oder gespeichert." + +#: assessment/showtest.php:2123 +msgid "" +"Question scored. Continue with assessment, or when you " +"are done click here to " +"see a summary of your score." +msgstr "" +"Frage bewertet. Test fortsetzen, oder wenn Sie fertig " +"sind klicken Sie hier " +"um die Zusammenfassung Ihrer Bewertung zu sehen." + +#: assessment/showtest.php:2125 +msgid "Question scored. Continue with assessment" +msgstr "Frage bewertet. Test fortsetzen" + +#: assessment/showtest.php:2177 assessment/showtest.php:2800 +#, php-format +msgid "Submit Question %d" +msgstr "Frage %d absenden" + +#: assessment/showtest.php:2184 assessment/showtest.php:2645 +#: assessment/showtest.php:2808 +msgid "Post-question text" +msgstr "Text nach der Frage" + +#: assessment/showtest.php:2225 assessment/showtest.php:2232 +#: assessment/showtest.php:2235 +#, php-format +msgid "Continue video to %s" +msgstr "Im Video zu %s fortfahren" + +#: assessment/showtest.php:2228 +#, php-format +msgid "Jump video to %s" +msgstr "Im Video zu %s springen" + +#: assessment/showtest.php:2241 +msgid "or try the problem again" +msgstr "oder versuchen Sie das Problem erneut" + +#: assessment/showtest.php:2243 +msgid "Try the problem again" +msgstr "Das Problem erneut versuchen" + +#: assessment/showtest.php:2282 +msgid "Question scored." +msgstr "Frage bepunktet." + +#: assessment/showtest.php:2316 assessment/showtest.php:2954 +msgid "No attempts remain on this problem." +msgstr "Keine Versuche für dieses Problem verbleibend." + +#: assessment/showtest.php:2527 +msgid "wrong question or not open for displaying scored result" +msgstr "falsche Frage oder nicht offen für die Anzeige der Punkte" + +#: assessment/showtest.php:2575 +msgid "" +"Your time limit has expired. If you try to submit any questions, your " +"submissions will be rejected." +msgstr "" +"Ihr Zeitlimit ist abgelaufen. Wenn Sie versuchen Fragen abzuschicken, " +"werden Ihren Einsendungen zurückgewiesen." + +#: assessment/showtest.php:2577 +msgid "" +"Your time limit has expired. If you submit any questions, your assessment " +"will be marked overtime, and will have to be reviewed by your instructor." +msgstr "" +"Ihr Zeitlimit ist abgelaufen. Wenn Sie Fragen abschicken, wird ihr Test als " +"verspätet gekennzeichnet und muss vom Dozenten überprüft werden." + +#: assessment/showtest.php:2585 assessment/showtest.php:3015 +msgid "Total Points Possible: " +msgstr "Gesamt mögliche Punkte: " + +#: assessment/showtest.php:2589 +msgid "This is a group assessment. Any changes affect all group members." +msgstr "" +"Dies ist ein Gruppentest. Jede Änderung betrifft alle Gruppenmitglieder." + +#: assessment/showtest.php:2591 +msgid "Group Members:" +msgstr "Gruppenmitglieder:" + +#: assessment/showtest.php:2605 +msgid "Add Group Members" +msgstr "Gruppenmitglieder hinzufügen" + +#: assessment/showtest.php:2654 +msgid "Save answers" +msgstr "Antworten speichern" + +#: assessment/showtest.php:2654 +msgid "" +"This will save your answers so you can come back later and finish, but not " +"submit them for grading. Be sure to come back and submit your answers before " +"the due date." +msgstr "" +"Dies wird Ihre Antworten speichern, aber nicht zur Benotung absenden, so " +"dass Sie später zum Fertigstellen zurückkommen können." + +#: assessment/showtest.php:3006 +msgid "Previous Page" +msgstr "Vorherige Seite" + +#: assessment/showtest.php:3010 +msgid "Next Page" +msgstr "Nächste Seite" + +#: assessment/showtest.php:3038 assessment/showtest.php:3366 +msgid "Question navigation" +msgstr "Fragen-Navigation" + +#: assessment/showtest.php:3040 assessment/showtest.php:3382 +#: course/course.php:511 course/courseshowitems.php:132 +#: course/courseshowitems.php:2166 +msgid "Questions" +msgstr "Fragen" + +#: assessment/showtest.php:3060 +msgid "Edit Settings" +msgstr "Bearbeite Einstellungen" + +#: assessment/showtest.php:3065 +msgid "Show question on this computer before it is opened for student input" +msgstr "" +"Zeige Frage auf diesem Compouter bevor sie für die Studenteneingabe geöffnet " +"wird" + +#: assessment/showtest.php:3067 +msgid "Show results live as students submit answers" +msgstr "Zeige Lösungen live während die Studenten ihre Antworten abgeben" + +#: assessment/showtest.php:3069 +msgid "Show results automatically after closing student input" +msgstr "Zeige Lösungen automatisch nach Schliessen der Studenteneingabe" + +#: assessment/showtest.php:3071 +msgid "Show answers automatically after closing student input" +msgstr "Zeige Antworten automatisch nach Schliessen der Studenteneingabe" + +#: assessment/showtest.php:3073 +msgid "Use per-question time limit" +msgstr "Benutze eine Zeitgrenze pro Frage" + +#: assessment/showtest.php:3076 +msgid "Hide Settings" +msgstr "Verstecke Einstellungen" + +#: assessment/showtest.php:3079 +msgid "Select a Question" +msgstr "Wähle eine Frage aus" + +#: assessment/showtest.php:3080 javascript/livepoll.js:520 +msgid "Open Student Input" +msgstr "Öffne Studenteneingabe" + +#: assessment/showtest.php:3080 javascript/livepoll.js:549 +msgid "Close Student Input" +msgstr "Schliesse Studenteneingabe" + +#: assessment/showtest.php:3081 +msgid "Show Question" +msgstr "Zeige Fragen" + +#: assessment/showtest.php:3082 +msgid "Show Results" +msgstr "Zeige Lösungen" + +#: assessment/showtest.php:3083 javascript/livepoll.js:439 +#: javascript/livepoll.js:525 +msgid "Show Answers When Closed" +msgstr "Zeige Antworten wenn geschlossen" + +#: assessment/showtest.php:3117 javascript/livepoll.js:163 +msgid "Waiting for the instructor to start a question" +msgstr "Warten, dass der Dozent eine Frage startet" + +#: assessment/showtest.php:3202 +msgid "Video and question navigation" +msgstr "Video- und Fragen-Navigation" + +#: assessment/showtest.php:3203 assessment/showtest.php:3231 +#: assessment/showtest.php:3367 +msgid "Skip Navigation" +msgstr "Navigation überspringen" + +#: assessment/showtest.php:3210 +msgid "Jump to Question" +msgstr "Zur Frage springen" + +#: assessment/showtest.php:3230 +msgid "Page and question navigation" +msgstr "Seiten- und Fragen-Navigation" + +#: assessment/showtest.php:3232 +msgid "Pages" +msgstr "Seiten" + +#: assessment/showtest.php:3283 +msgid "point" +msgstr "Punkt" + +#: assessment/showtest.php:3283 assessment/testutil.php:406 +#: assessment/testutil.php:472 +msgid "out of" +msgstr "von" + +#: assessment/showtest.php:3285 +msgid "unattempted" +msgstr "nicht versucht" + +#: assessment/showtest.php:3354 assessment/showtest.php:3506 +msgid "Print Version" +msgstr "Druckversion" + +#: assessment/showtest.php:3370 +msgid "Resources" +msgstr "Matrialien" + +#: assessment/showtest.php:3420 assessment/showtest.php:3422 +msgid "untried" +msgstr "unversucht" + +#: assessment/showtest.php:3427 +msgid "incorrect - can retry" +msgstr "falsch - weitere Versuche möglich" + +#: assessment/showtest.php:3429 +msgid "partially correct - can retry" +msgstr "teilweise korrekt - weitere Versuche möglich" + +#: assessment/showtest.php:3432 +msgid "can retry" +msgstr "weitere Versuche möglich" + +#: assessment/showtest.php:3437 assessment/showtest.php:3448 +msgid "cannot retry" +msgstr "keine weiteren Versuche" + +#: assessment/showtest.php:3440 course/drillassess.php:417 +msgid "correct" +msgstr "korrekt" + +#: assessment/showtest.php:3442 +msgid "incorrect - cannot retry" +msgstr "falsch - keine weiteren Versuche" + +#: assessment/showtest.php:3444 +msgid "partially correct - cannot retry" +msgstr "teilweise korrekt - keine weiteren Versuche" + +#: assessment/showtest.php:3499 +msgid "Review: " +msgstr "Kontrollansicht: " + +#: assessment/showtest.php:3501 +msgid "Grade: " +msgstr "Note: " + +#: assessment/showtest.php:3573 +msgid "Date: " +msgstr "Datum: " + +#: assessment/showtest.php:3576 +msgid "Scores:" +msgstr "Punktzahlen:" + +#: assessment/showtest.php:3588 assessment/showtest.php:3599 +msgid "Last attempt: " +msgstr "Letzter Versuch: " + +#: assessment/showtest.php:3590 +msgid "Not answered" +msgstr "Nicht beantwortet" + +#: assessment/showtest.php:3592 assessment/showtest.php:3603 +#: assessment/showtest.php:3719 +msgid "Score in Gradebook: " +msgstr "Punktzahl in Punkteübersicht: " + +#: assessment/showtest.php:3618 +#, php-format +msgid "Total Points on Last Attempts: %d out of %d possible" +msgstr "Gesamte Punkte bei letzten Versuchen: %d von %d möglichen" + +#: assessment/showtest.php:3622 +#, php-format +msgid "Total Points Earned: %d out of %d possible: " +msgstr "Gesamt erreichte Punkte: %d von %d möglichen: " + +#: assessment/showtest.php:3624 +#, php-format +msgid "Total Points in Gradebook: %d out of %d possible: " +msgstr "Gesamte Punkte in Punkteübersicht: %d von %d möglichen: " + +#: assessment/showtest.php:3643 +#, php-format +msgid "A score of %s is required to receive credit for this assessment" +msgstr "Eine Bewertung von %s wird benötigt, um diesen Test zu bestehen" + +#: assessment/showtest.php:3643 +msgid "Grade in Gradebook: No Credit (NC)" +msgstr "Note in Punkteübersicht: Keine Punkte (NC)" + +#: assessment/showtest.php:3646 +msgid "Your scores have been recorded for this assessment." +msgstr "Ihre Punktzahlen wurden für diesen Test gespeichert." + +#: assessment/showtest.php:3653 +msgid "Time limit exceeded by" +msgstr "Zeitlimit überschritten um" + +#: assessment/showtest.php:3659 course/drillassess.php:236 +msgid "seconds" +msgstr "Sekunden" + +#: assessment/showtest.php:3660 +msgid "Grade is subject to acceptance by the instructor" +msgstr "Note liegt dem Dozenten zur Überprüfung vor" + +#: assessment/showtest.php:3666 +msgid "" +"Reattempt assessment on questions " +"allowed (note: where reattempts are allowed, all scores, correct and " +"incorrect, will be cleared)" +msgstr "" +"Test nochmal versuchen bei " +"Fragen, die dies zulassen (Bemerkung: Wenn Wiederholungen erlaubt sind, " +"werden alle Bewertungen, korrekt oder falsch, gelöscht)" + +#: assessment/showtest.php:3669 +msgid "" +"Reattempt assessment on " +"questions that can be improved where allowed" +msgstr "" +"Test nochmal versuchen bei " +"Fragen, die dies zulassen und verbessert werden können" + +#: assessment/showtest.php:3672 assessment/testutil.php:1053 +msgid "" +"Reattempt assessment on all " +"questions where allowed" +msgstr "" +"Test nochmal versuchen bei allen " +"Fragen. die dies erlauben" + +#: assessment/showtest.php:3677 assessment/testutil.php:1062 +msgid "" +"Try similar problems for all " +"questions with less than perfect scores where allowed." +msgstr "" +"Ähnliche Probleme versuchen " +"(alle erlaubten Fragen mit noch nicht erreichter Bestpunktzahl)" + +#: assessment/showtest.php:3678 assessment/testutil.php:1060 +msgid "" +"Try similar problems for all " +"questions where allowed." +msgstr "" +"Ähnliche Probleme versuchen (alle " +"erlaubten Fragen)" + +#: assessment/showtest.php:3716 +msgid "Last Attempt:" +msgstr "Letzter Versuch:" + +#: assessment/showtest.php:3740 assessment/showtest.php:3747 +msgid "or" +msgstr "oder" + +#: assessment/showtest.php:3742 +msgid "Exit Assessment" +msgstr "Test verlassen" + +#: assessment/showtest.php:3749 +msgid "Return to Course Page" +msgstr "Zur Kursseite zurückkehren" + +#: assessment/showtest.php:3757 +msgid "" +"Viewing the score summary will use up an attempt on any unanswered " +"questions. Continue?" +msgstr "" +"Das Ansehen der Punkteübersicht verbraucht für jede Frage einen Versuch. " +"Fortsetzen?" + +#: assessment/testutil.php:476 +msgid " (* not auto-graded)" +msgstr " (* nicht automatisch bewertet" + +#: assessment/testutil.php:808 +msgid "Question ID: " +msgstr "FragenID: " + +#: assessment/testutil.php:809 assessment/testutil.php:816 +#: course/testquestion.php:328 +msgid "License" +msgstr "Lizenz" + +#: assessment/testutil.php:821 +#, php-format +msgid "Question %d of %d" +msgstr "Frage %d von %d" + +#: assessment/testutil.php:824 assessment/testutil.php:1004 +msgid "Question Withdrawn" +msgstr "Frage zurückgezogen" + +#: assessment/testutil.php:829 +msgid "Points possible: " +msgstr "Punkte möglich: " + +#: assessment/testutil.php:831 +msgid "Points available on this attempt: %1$g of original %2$g" +msgstr "Für diesen Versuch verfügbare Punkte: %1$g von ursprünglich %2$g" + +#: assessment/testutil.php:836 +msgid "Unlimited attempts." +msgstr "Beliebig viele Versuche." + +#: assessment/testutil.php:838 +msgid "No attempts remain." +msgstr "Keine Versuche verbleibend." + +#: assessment/testutil.php:841 assessment/testutil.php:1026 +#, php-format +msgid "This is attempt %1$d of %2$d." +msgstr "Dies ist Versuch %1$d von %2$d." + +#: assessment/testutil.php:844 assessment/testutil.php:1030 +#: course/gradebook.php:479 +msgid "Category:" +msgstr "Kategorie:" + +#: assessment/testutil.php:848 assessment/testutil.php:850 +msgid "Score on last attempt:" +msgstr "Punktzahl beim letzten Versuch:" + +#: assessment/testutil.php:853 assessment/testutil.php:855 +msgid "Score in gradebook:" +msgstr "Punktzahl in Punkteübersicht:" + +#: assessment/testutil.php:867 +msgid "Out of:" +msgstr "Außerhalb von:" + +#: assessment/testutil.php:897 +msgid "Message instructor about this question" +msgstr "Dozenten wegen Frage benachrichtigen" + +#: assessment/testutil.php:904 +msgid "Post this question to forum" +msgstr "Einen Beitrag zu dieser Frage im Forum verfassen" + +#: assessment/testutil.php:925 assessment/testutil.php:927 +#: assessment/testutil.php:946 assessment/testutil.php:948 +#: assessment/testutil.php:1082 assessment/testutil.php:1084 +msgid "Untried" +msgstr "Nicht versucht" + +#: assessment/testutil.php:932 assessment/testutil.php:956 +#: assessment/testutil.php:1089 +msgid "Incorrect but can retry" +msgstr "Falsch - weitere Versuche möglich" + +#: assessment/testutil.php:934 assessment/testutil.php:958 +#: assessment/testutil.php:1091 +msgid "Partially correct and can retry" +msgstr "Teilweise korrekt - weitere Versuche möglich" + +#: assessment/testutil.php:937 assessment/testutil.php:961 +#: assessment/testutil.php:1094 course/treereader.php:380 +msgid "Attempted" +msgstr "Versucht" + +#: assessment/testutil.php:950 assessment/testutil.php:963 +#: assessment/testutil.php:982 +msgid "" +"Are you sure you want to jump to this question, discarding any work you have " +"not submitted?" +msgstr "" +"Sind Sie sicher, dass Sie zu dieser Frage springen wollen und den bisher " +"nicht Abgeschicktes verlieren wollen?" + +#: assessment/testutil.php:969 assessment/testutil.php:987 +#: assessment/testutil.php:1099 assessment/testutil.php:1115 +msgid "No attempts remaining" +msgstr "Keine Versuche mehr möglich" + +#: assessment/testutil.php:980 assessment/testutil.php:998 +#: assessment/testutil.php:1110 assessment/testutil.php:1126 +#: course/treereader.php:376 +msgid "Unattempted" +msgstr "Nicht versucht" + +#: assessment/testutil.php:1009 +#, php-format +msgid "Points: %1$d out of %2$d possible." +msgstr "Punkte: %1$d von %2$d möglich." + +#: assessment/testutil.php:1011 +#, php-format +msgid "%d available on this attempt." +msgstr "%d verfügbar bei diesem Versuch." + +#: assessment/testutil.php:1015 +msgid "Points possible:" +msgstr "Punkte möglich:" + +#: assessment/testutil.php:1017 +#, php-format +msgid "Points available on this attempt: %1$d of original %2$d" +msgstr "Punkte verfügbar bei diesem Versuch: %1$d von original %2$d" + +#: assessment/testutil.php:1024 +msgid "Unlimited attempts" +msgstr "Beliebig viele Versuche" + +#: assessment/testutil.php:1043 +msgid "Assessment is complete with perfect score." +msgstr "Test ist komplett mit perfekter Punktzahl." + +#: assessment/testutil.php:1047 +msgid "" +"Reattempt assessment on questions " +"where allowed" +msgstr "" +"Test nochmal versuchen bei " +"Fragen, die dies erlauben" + +#: assessment/testutil.php:1049 +msgid "" +"Reattempt assessment on questions " +"allowed (note: all scores, correct and incorrect, will be cleared)" +msgstr "" +"Test erneut versuchen bei allen " +"Fragen, die dies erlauben (Hinweis: Alle Punkte - sowohl von korrekten als " +"auch von unkorrekten Antworten - werden gelöscht)" + +#: assessment/testutil.php:1051 +msgid "" +"Reattempt assessment on " +"questions missed where allowed" +msgstr "" +"Test erneut versuchen (alle " +"Fragen die dies erlauben und die nicht richtig beantwortet wurden)" + +#: assessment/testutil.php:1056 +msgid "No attempts left on current versions of questions." +msgstr "Keine Versuche für die Fragen in der aktuellen Version übrig." + +#: course/addassessment.php:78 course/addassessment2.php:115 +msgid "Unnamed Assessment" +msgstr "Unbenannter Test" + +#: course/addassessment.php:127 course/addassessment2.php:103 +#: course/addquestions.php:169 +msgid "Yes, Clear" +msgstr "Ja, Löschen" + +#: course/addassessment.php:549 course/addassessment.php:597 +#: course/addassessment2.php:548 course/addassessment2.php:602 +#: course/chgassessments.php:1025 +msgid "" +"This assessment contains items that are not automatically graded. Your " +"grade may be inaccurate until your instructor grades these items." +msgstr "" +"Dieser Test enthält Fragen, die nicht automatisch bewertet werden. Ihre " +"Bewertung kann unvollständig sein, bis Ihr Dozent diese Fragen bewertet hat." + +#: course/addassessment.php:608 course/addassessment2.php:613 +msgid "Create Assessment" +msgstr "Test anlegen" + +#: course/addassessment.php:615 course/addassessment2.php:620 +#: course/addquestions.php:487 +#, php-format +msgid "" +"It appears this assessment is using an older [Q #] or [QUESTION #] tag. You " +"can %sconvert that into a new format%s if you would like." +msgstr "" +"Es scheint, dieser Test benutzt das veraltete [Q#] oder [QUESTION#]. Sie " +"können eine %sKonvertierung in das neue Format%s vornehmen, wenn Sie möchten." + +#: course/addassessment.php:901 course/addassessment2.php:842 +#, php-format +msgid "This will discard any changes you have made on this page" +msgstr "Dies wird alle Änderungen auf dieser Seite verwerfen" + +#: course/addassessment.php:902 course/addassessment2.php:843 +#: course/gb-rescoreq.php:212 course/gb-rescoreq2.php:53 +#, php-format +msgid "Add/Remove Questions" +msgstr "Fragen hinzufügen/entfernen" + +#: course/addassessment.php:1213 +msgid "No prerequisite" +msgstr "Keine Vorausstzung" + +#: course/addassessment.php:1213 +msgid "Show only after" +msgstr "Anzeigen nach" + +#: course/addassessment.php:1213 +msgid "Show greyed until" +msgstr "Zeige ausgegraut bis zum" + +#: course/addassessment.php:1223 course/chgassessments.php:908 +msgid "percent" +msgstr "Prozent" + +#: course/addassessment2.php:709 course/convertintro.php:57 +msgid "Modify Assessment" +msgstr "Test ändern" + +#: course/addassessment2.php:711 course/courseshowitems.php:1887 +#: course/courseshowitems.php:1889 +msgid "Add Assessment" +msgstr "Test" + +#: course/addassessment2.php:795 +msgid "Create new set of groups" +msgstr "Neue Gruppen hinzufügen" + +#: course/addblock.php:259 +msgid "Create Block" +msgstr "Neuer Block" + +#: course/addblock.php:430 course/chgblocks.php:246 +msgid "Show greyed out before start date, hide after end date" +msgstr "Zeige ausgegraut vor dem Start-Datum und blende nach dem End-Datum aus" + +#: course/addblock.php:431 course/chgblocks.php:247 +msgid "Hide before start date, show greyed out after end date" +msgstr "Blende vor dem Start-Datum aus und zeige ausgegraut nach dem End-Datum" + +#: course/addblock.php:432 course/chgblocks.php:248 +msgid "Show greyed out before and after" +msgstr "Zeige vor dem Start- und nach dem End-Datum ausgegraut" + +#: course/addforum.php:340 +msgid "Create Forum" +msgstr "Forum anlegen" + +#: course/addgrades.php:66 +msgid "Delete Item" +msgstr "Element löschen" + +#: course/addgrades.php:622 +msgid "Use Quicksearch Entry" +msgstr "Verwende Schnellsuche" + +#: course/addinlinetext.php:309 course/addlinkedtext.php:359 +msgid "Create Item" +msgstr "Element anlegen" + +#: course/addoutcomes.php:206 +msgid "Are you sure you want to delete this outcome?" +msgstr "Sind Sie sicher, dass Sie dieses Thema löschen wollen?" + +#: course/addoutcomes.php:216 +msgid "" +"Are you sure you want to delete this outcome group? This will not delete " +"the included outcomes." +msgstr "" +"Sind Sie sicher, dass Sie diese Themengruppe löschen wollen? Das löscht die " +"darin enthaltenen Themen nicht." + +#: course/addoutcomes.php:233 course/addoutcomes.php:235 +#: course/outcomemap.php:175 course/outcomereport.php:135 +msgid "Course Outcomes" +msgstr "Kursergebnisse" + +#: course/addoutcomes.php:237 +msgid "View Outcomes Map" +msgstr "Zeige Themenübersicht" + +#: course/addoutcomes.php:237 +msgid "View Outcomes Report" +msgstr "Zeige Themen-Bericht" + +#: course/addoutcomes.php:239 +msgid "" +"Use colored boxes to drag-and-drop order and move outcomes inside groups." +msgstr "" +"Ziehen Sie die farbigen Boxen, um die Reihenfolge der Themen in den Gruppen " +"zu verändern." + +#: course/addoutcomes.php:244 +msgid "Add Outcome Group" +msgstr "Neue Themengruppe" + +#: course/addoutcomes.php:245 +msgid "Add Outcome" +msgstr "Thema hinzufügen" + +#: course/addquestions.php:893 +msgid "Reported Broken" +msgstr "Als defekt markiert" + +#: course/addquestions.php:1191 +msgid "Assessment Settings" +msgstr "Testeinstellungen" + +#: course/addquestions.php:1280 +msgid "" +"You can break your assessment into pages by using the +Text button and " +"selecting the New Page option." +msgstr "" +"Sie können Ihren Test in Seiten aufteilen, indem Sie die Schaltfläche +Text " +"verwenden und die Option Neue Seite auswählen." + +#: course/addquestions.php:1430 course/manageqset.php:1295 +msgid "Search cut off at 300 results" +msgstr "Suche nach 300 Ergebnissen abgeschnitten" + +#: course/addquestions.php:1431 +msgid "Showing " +msgstr "Zeige " + +#: course/addquestions.php:1434 course/showlinkedtext.php:154 +msgid "Previous" +msgstr "Zurück" + +#: course/addquestions.php:1438 course/showlinkedtext.php:165 +msgid "Next" +msgstr "Weiter" + +#: course/addrubric.php:92 +msgid "Create Rubric" +msgstr "Neue Rubrik" + +#: course/addwiki.php:171 +msgid "Create Wiki" +msgstr "Neues Wiki" + +#: course/addwiki.php:246 wikis/viewwiki.php:268 wikis/viewwiki.php:278 +#: wikis/viewwiki.php:290 +msgid "Yes, I'm Sure" +msgstr "Ja, ich bin sicher" + +#: course/assessendmsg.php:113 +msgid "Save" +msgstr "Speichern" + +#: course/chgassessments.php:1076 course/chgassessments2.php:748 +#: course/chgblocks.php:304 course/chgforums.php:505 course/chgoffline.php:207 +msgid "Apply Changes" +msgstr "Änderungen speichern" + +#: course/chgblocks.php:136 +msgid "No restriction" +msgstr "Keine Einschränkung" + +#: course/chgblocks.php:187 +msgid "Blocks to Change" +msgstr "Blöcke ändern" + +#: course/chgblocks.php:188 course/gradeallq.php:314 course/gradeallq2.php:321 +#: course/gradebook.php:330 course/gradebook.php:355 course/gradebook.php:482 +#: course/gradebook.php:507 course/gradebook.php:527 course/gradebook.php:1125 +#: course/gradebook.php:1514 forums/newthreads.php:102 +msgid "All" +msgstr "Alle" + +#: course/chgblocks.php:189 course/gradebook.php:432 course/gradebook.php:458 +#: course/gradebook.php:527 course/gradebook.php:735 course/listusers.php:706 +#: forums/newthreads.php:102 index.php:95 +msgid "None" +msgstr "Keine" + +#: course/chgoffline.php:49 course/managestugrps.php:572 +msgid "Yes, Delete" +msgstr "Ja, Löschen" + +#: course/contentstats.php:123 +msgid "No clicks on links in this item yet" +msgstr "Noch keine Links geklickt" + +#: course/contentstats.php:125 +msgid "No student posts or replies in this forum yet" +msgstr "Noch keine studentischen Beiträge oder Antworten in diesem Forum" + +#: course/contentstats.php:131 +msgid "" +"This page only shows who has made posts and replies. For forum viewing data, " +"look in the forum thread list and click the number in the Views column" +msgstr "" +"Diese Seite zeigt nur, wer Beiträge oder Antworten verfasst hat. Für " +"Informationen über Lesezugriffe gehen Sie zur Themenübersicht des Forums und " +"klicken Sie auf die Zahl in der Spalte Gelesen" + +#: course/contentstats.php:148 course/contentstats.php:149 +#: course/sendmsgmodal.php:202 msgs/msglist.php:539 +msgid "Send Message" +msgstr "Nachricht absenden" + +#: course/convertintro.php:59 course/convertintro.php:60 +msgid "Convert Intro" +msgstr "Konvertiere in" + +#: course/convertintro.php:62 +msgid "" +"This assessment is using an older [QUESTION #] tag approach for embedding " +"questions in text. There is now a simpler approach that will allow you to " +"edit the between question text on the Add/Remove Questions page." +msgstr "" +"Dieser Test benutz die veraltete [Question#]-Methode, um Fragen in Text " +"einzubetten. Es gibt nun auf der Seite \"Fragen hinzufügen/entfernen\" eine " +"einfachere Methode, mit der Text zwischen Fragen bearbeitet werden kann." + +#: course/convertintro.php:64 +msgid "" +"This assessment is using an older [Q #] tag approach for providing " +"introduction text or videos before questions. There is now a simpler " +"approach that will allow you to edit the before question text on the Add/" +"Remove Questions page." +msgstr "" +"Dieser Test benutz die veraltete [Q#]-Methode, um Text oder Videos vor " +"Fragen anuzeigen. Es gibt nun auf der Seite \"Fragen hinzufügen/entfernen\" " +"eine einfachere Methode, mit der Text vor einer Frage bearbeitet werden kann." + +#: course/convertintro.php:66 +msgid "" +"Converting assessments to use the new approach sometimes has issues, so " +"please confirm below that everything looks as expected. To be totally safe, " +"you may wish to make a copy of your assessment before trying to convert it." +msgstr "" +"Die Konvertierung von tests bereitet mitunter Probleme, deshalb bestätigen " +"Sie bitte unten, dass alles wie erwartet aussieht. Um auf der sicheren Seite " +"zu sein, können Sie vor der Konvertierung ein Kopie Ihres tests anlegen." + +#: course/convertintro.php:67 +msgid "The following will be the main intro/instruction text" +msgstr "Dies wird der Haupttext zu Anleitung/Einführung" + +#: course/convertintro.php:73 +msgid "The remaining shows the text, along with the position of the questions." +msgstr "Das Folgende zeigt den text mit der Position der Fragen." + +#: course/convertintro.php:75 +msgid "The remaining which questions the text segments will show before." +msgstr "Die restlichenFragen, die den text unterteilen, werden oben angezeigt." + +#: course/convertintro.php:83 course/convertintro.php:95 +#, php-format +msgid "Question %d displays here" +msgstr "Hier wird Frage %d angezeigt" + +#: course/convertintro.php:89 +msgid "New Page: " +msgstr "Neue Seite " + +#: course/convertintro.php:101 +#, php-format +msgid "The following will display before question %d" +msgstr "Das Folgende wird vor Frage %d angezeigt" + +#: course/convertintro.php:103 +#, php-format +msgid "The following will display before questions %d - %d" +msgstr "Das Folgende wird vor den Fragen %d - %d angezeigt" + +#: course/convertintro.php:110 +msgid "Do you want to convert this assessment?" +msgstr "Wollen Sie diesen Test konvertieren?" + +#: course/convertintro.php:113 +msgid "Convert" +msgstr "Konvertieren" + +#: course/convertintro.php:114 +msgid "Nevermind" +msgstr "Los" + +#: course/convertintro.php:119 +msgid "Convert All Assessments in Course" +msgstr "Alle Tests im Kurs konvertieren" + +#: course/copyitems.php:648 +msgid "Browse Courses" +msgstr "Kursübersicht" + +#: course/copyitems.php:654 +msgid "Or, select from the course list below" +msgstr "Oder wählen Sie aus der untenstehenden Kursliste" + +#: course/copyitems.php:656 +msgid "Course List" +msgstr "Kursliste" + +#: course/course.php:33 course/coursemap.php:15 course/coursereports.php:19 +#: course/report-weeklylab.php:46 +msgid "" +"You are not enrolled in this course. Please return to the Home Page and enroll\n" +msgstr "" +"Sie sind nicht in diesem Kurs eingeschrieben. Bitte gehen Sie zur Hauptseite zurück und schreiben Sie sich ein.\n" + +#: course/course.php:106 +msgid "Course does not exist" +msgstr "Kurs existiert nicht" + +#: course/course.php:106 +msgid "Return to home page" +msgstr "Zur Startseite zurückkehren" + +#: course/course.php:248 course/course.php:266 course/course.php:268 +#: diag/index.php:249 diag/index.php:254 +msgid "Back" +msgstr "Zurück" + +#: course/course.php:282 course/course.php:333 index.php:364 +#, php-format +msgid "New (%d)" +msgstr "Neue (%d)" + +#: course/course.php:446 +msgid "Instructor Preview" +msgstr "Dozenten-Vorschau" + +#: course/course.php:475 +msgid "Instructor tool navigation" +msgstr "Navigation für Dozenten" + +#: course/course.php:476 course/course.php:561 +msgid "Views" +msgstr "Ansichten" + +#: course/course.php:477 +msgid "Student View" +msgstr "Studentenansicht" + +#: course/course.php:478 course/course.php:563 course/course.php:701 +msgid "Quick Rearrange" +msgstr "Schnelles Umordnen" + +#: course/course.php:482 +msgid "Communication" +msgstr "Kommunikation" + +#: course/course.php:486 course/course.php:541 course/course.php:575 +msgid "Forums" +msgstr "Foren" + +#: course/course.php:491 course/course.php:498 +msgid "Tools" +msgstr "Werkzeuge" + +#: course/course.php:493 course/course.php:503 +msgid "Outcomes" +msgstr "Themen" + +#: course/course.php:499 +msgid "Roster" +msgstr "Teilnehmerliste" + +#: course/course.php:500 course/course.php:585 course/courseshowitems.php:327 +#: course/courseshowitems.php:374 course/courseshowitems.php:419 +#: course/courseshowitems.php:512 course/courseshowitems.php:554 +#: course/courseshowitems.php:604 course/gradebook.php:402 +msgid "New" +msgstr "Neu" + +#: course/course.php:504 course/course.php:578 course/courseshowitems.php:1872 +#: course/exportcalfeed.php:59 course/moveitem.php:156 +msgid "Calendar" +msgstr "Kalender" + +#: course/course.php:505 course/course.php:580 course/coursemap.php:194 +#: course/coursemap.php:197 +msgid "Course Map" +msgstr "Kursübersicht" + +#: course/course.php:512 course/gradebook.php:450 +msgid "Manage" +msgstr "Verwalten" + +#: course/course.php:513 +msgid "Libraries" +msgstr "Bibliotheken" + +#: course/course.php:518 +msgid "Export/Import" +msgstr "Export/Import" + +#: course/course.php:525 +msgid "Course Items" +msgstr "Kurselemente" + +#: course/course.php:526 course/courseshowitems.php:119 +#: course/courseshowitems.php:136 course/courseshowitems.php:157 +#: course/courseshowitems.php:175 course/courseshowitems.php:177 +#: course/courseshowitems.php:2088 course/courseshowitems.php:2173 +#: course/courseshowitems.php:2229 course/courseshowitems.php:2276 +#: course/courseshowitems.php:2323 course/courseshowitems.php:2370 +#: course/courseshowitems.php:2417 +msgid "Copy" +msgstr "Kopieren" + +#: course/course.php:527 course/gradebook.php:454 +msgid "Export" +msgstr "Export" + +#: course/course.php:529 +msgid "Import" +msgstr "Import" + +#: course/course.php:533 +msgid "Mass Change" +msgstr "Serienänderung" + +#: course/course.php:536 course/course.php:538 +msgid "Assessments" +msgstr "Tests" + +#: course/course.php:542 +msgid "Blocks" +msgstr "Blöcke" + +#: course/course.php:543 +msgid "Dates" +msgstr "Daten" + +#: course/course.php:544 +msgid "Time Shift" +msgstr "Zeitverschiebung" + +#: course/course.php:548 index.php:369 +msgid "Help" +msgstr "Hilfe" + +#: course/course.php:549 course/course.php:605 index.php:360 +msgid "Log Out" +msgstr "Abmelden" + +#: course/course.php:556 +msgid "Tools navigation" +msgstr "Werkzeuge (Navigation)" + +#: course/course.php:562 +msgid "Instructor View" +msgstr "Dozenten-Ansicht" + +#: course/course.php:589 +msgid "Quick Links" +msgstr "Schnellansicht" + +#: course/course.php:606 +#, php-format +msgid "Help Using %s" +msgstr "Hilfe bei der Verwendung von %s" + +#: course/course.php:610 +msgid "Unenroll From Course" +msgstr "Aus dem Kurs austragen" + +#: course/course.php:631 forums/posts.php:462 msgs/msghistory.php:147 +msgid "Expand All" +msgstr "Alle ausklappen" + +#: course/course.php:632 forums/posts.php:463 msgs/msghistory.php:148 +msgid "Collapse All" +msgstr "Alle einklappen" + +#: course/course.php:687 +msgid "Instructor" +msgstr "Dozent" + +#: course/course.php:713 +msgid "Quick Rearrange." +msgstr "Schnelles Umordnen." + +#: course/course.php:713 +msgid "Back to regular view" +msgstr "Zurück zur regulären Ansicht" + +#: course/course.php:716 +msgid "Use icons to drag-and-drop order." +msgstr "Ziehen Sie die Icons, um die Reihenfolge zu verändern." + +#: course/course.php:716 +msgid "" +"Click the icon next to a block to expand or collapse it. Click an item title " +"to edit it in place." +msgstr "" +"Klicken Sie auf das Icon neben einem Block um ihn zu- oder aufzuklappen. " +"Klicken Sie auf den Titel eines Elements um es zu editieren." + +#: course/course.php:719 +msgid "Use colored boxes to drag-and-drop order." +msgstr "Ziehen Sie die farbigen Boxen, um die Reihenfolge zu verändern." + +#: course/course.php:719 +msgid "" +"Click the B next to a block to expand or collapse it. Click an item title to " +"edit it in place." +msgstr "" +"Klicken Sie auf das B neben einem Block um ihn zu- oder aufzuklappen. " +"Klicken Sie auf den Titel eines Elements um es zu editieren." + +#: course/coursemap.php:146 +msgid "Inline text item" +msgstr "Eingebetteter Text" + +#: course/coursemap.php:198 +msgid "" +"Select an item to jump to its location in the course, or a folder to view " +"the contents" +msgstr "" +"Wählen Sie ein Element um im Kurs dort hinzuspringen oder einen Ordner, um " +"seinen Inhalt anzusehen" + +#: course/courseshowitems.php:112 +msgid "Edit Contents" +msgstr "Inhalte editieren" + +#: course/courseshowitems.php:114 course/courseshowitems.php:432 +#: course/courseshowitems.php:617 +msgid "Isolate" +msgstr "Isolieren" + +#: course/courseshowitems.php:117 course/courseshowitems.php:134 +#: course/courseshowitems.php:155 course/courseshowitems.php:172 +#: course/courseshowitems.php:680 +msgid "Move" +msgstr "Verschieben" + +#: course/courseshowitems.php:120 +msgid "Toggle NewFlag" +msgstr "Neu/Alt" + +#: course/courseshowitems.php:138 course/courseshowitems.php:140 +#: course/courseshowitems.php:2175 course/courseshowitems.php:2177 +msgid "Grades" +msgstr "Noten" + +#: course/courseshowitems.php:142 course/courseshowitems.php:159 +#: course/courseshowitems.php:180 +msgid "Stats" +msgstr "Statistik" + +#: course/courseshowitems.php:158 course/courseshowitems.php:2418 +#: course/gradebook.php:358 course/gradebook.php:423 course/gradebook.php:429 +msgid "Scores" +msgstr "Punktzahlen" + +#: course/courseshowitems.php:253 course/courseshowitems.php:258 +#: course/courseshowitems.php:730 course/courseshowitems.php:735 +#: course/courseshowitems.php:740 course/courseshowitems.php:1134 +#: course/courseshowitems.php:1139 course/courseshowitems.php:1256 +#: course/courseshowitems.php:1261 course/courseshowitems.php:1364 +#: course/courseshowitems.php:1369 course/courseshowitems.php:1495 +#: course/courseshowitems.php:1500 course/courseshowitems.php:1679 +#: course/courseshowitems.php:1684 course/courseshowitems.php:2030 +#: course/courseshowitems.php:2035 course/courseshowitems.php:2110 +#: course/courseshowitems.php:2115 course/courseshowitems.php:2120 +#: course/courseshowitems.php:2190 course/courseshowitems.php:2195 +#: course/courseshowitems.php:2237 course/courseshowitems.php:2242 +#: course/courseshowitems.php:2284 course/courseshowitems.php:2289 +#: course/courseshowitems.php:2331 course/courseshowitems.php:2336 +#: course/courseshowitems.php:2378 course/courseshowitems.php:2383 +#: course/masschgdates.php:264 course/masschgdates.php:656 +#: course/masschgdates.php:684 javascript/masschgdates.js:373 +msgid "Always" +msgstr "Immer" + +#: course/courseshowitems.php:266 course/courseshowitems.php:2041 +#: course/gbsettings.php:245 +msgid "Expanded" +msgstr "Ausgeklappt" + +#: course/courseshowitems.php:268 course/courseshowitems.php:2043 +msgid "as Folder" +msgstr "als Ordner" + +#: course/courseshowitems.php:270 +msgid "as TreeReader" +msgstr "als Baumansicht" + +#: course/courseshowitems.php:272 course/courseshowitems.php:2045 +#: course/gbsettings.php:245 +msgid "Collapsed" +msgstr "Eingeklappt" + +#: course/courseshowitems.php:295 +#, php-format +msgid "Showing %s Always" +msgstr "%s immer anzeigen" + +#: course/courseshowitems.php:297 course/courseshowitems.php:2052 +#, php-format +msgid "Showing %1$s %2$s until %3$s" +msgstr "%1$s %2$s anzeigen bis %3$s" + +#: course/courseshowitems.php:465 course/courseshowitems.php:650 +msgid "Loading content..." +msgstr "Lade Inhalt..." + +#: course/courseshowitems.php:473 course/courseshowitems.php:1035 +#: course/courseshowitems.php:1198 course/courseshowitems.php:1328 +#: course/courseshowitems.php:1460 course/courseshowitems.php:1619 +#: course/courseshowitems.php:1772 course/courseshowitems.php:2050 +#: course/gbsettings.php:245 course/masschgdates.php:264 +#: javascript/masschgdates.js:373 +msgid "Hidden" +msgstr "Versteckt" + +#: course/courseshowitems.php:475 +msgid "Currently Showing" +msgstr "Gerade angezeigt" + +#: course/courseshowitems.php:477 +msgid " as Folder. " +msgstr " als Ordner. " + +#: course/courseshowitems.php:479 +msgid " as TreeReader. " +msgstr " als Baumansicht. " + +#: course/courseshowitems.php:481 +msgid " Collapsed. " +msgstr " Eingeklappt. " + +#: course/courseshowitems.php:483 course/courseshowitems.php:486 +#, php-format +msgid "Showing %1$s %2$s to %3$s" +msgstr "Zeige %1$s %2$s bis %3$s" + +#: course/courseshowitems.php:681 +msgid "Manage Events" +msgstr "Ereignisse verwalten" + +#: course/courseshowitems.php:715 +msgid "With LatePass, due" +msgstr "Mit verspätetem Einreichen fällig bis zum" + +#: course/courseshowitems.php:717 +msgid "With extension, due" +msgstr "Nach Verlängerung fällig am" + +#: course/courseshowitems.php:786 +msgid "Prerequisite: " +msgstr "Voraussetzung " + +#: course/courseshowitems.php:787 +msgid " on " +msgstr " über " + +#: course/courseshowitems.php:821 +msgid "You have some unanswered questions" +msgstr "Sie haben unbeantwortete Fragen" + +#: course/courseshowitems.php:824 +msgid "All questions attempted" +msgstr "Alle Fragen wurden versucht" + +#: course/courseshowitems.php:827 +msgid "Score: " +msgstr "Punkte " + +#: course/courseshowitems.php:831 +msgid "You haven't started this assessment yet" +msgstr "Sie haben diesen Test noch nicht begonnen" + +#: course/courseshowitems.php:846 course/courseshowitems.php:989 +msgid "Available until" +msgstr "Verfügbar bis" + +#: course/courseshowitems.php:871 course/gradebook.php:836 +#: course/treereader.php:407 +msgid " second(s)" +msgstr " Sekunde(n)" + +#: course/courseshowitems.php:880 course/gradebook.php:839 +#, php-format +msgid "" +"This assessment has a time limit of %s, but that will be restricted by the " +"upcoming due date. Click OK to start or continue working on the assessment." +msgstr "" +"Dieser Test hat ein Zeitlimit von %s, maximal bis zum Ende der " +"Einreichfrist. Klicken Sie OK, um zu Starten, oder um an dem Test " +"weiterzuarbeiten." + +#: course/courseshowitems.php:882 course/gradebook.php:841 +#: course/treereader.php:413 +#, php-format +msgid "" +"This assessment has a time limit of %s. Click OK to start or continue " +"working on the assessment." +msgstr "" +"Dieser Test hat ein Zeilimit von %s. Klicken Sie OK, um zu Starten, oder um " +"an dem Test weiterzuarbeiten." + +#: course/courseshowitems.php:898 course/courseshowitems.php:944 +#: course/courseshowitems.php:1064 course/courseshowitems.php:1545 +#: course/courseshowitems.php:1657 +msgid "LatePasses Allowed" +msgstr "Verspätetes Einreichen erlaubt" + +#: course/courseshowitems.php:898 course/courseshowitems.php:1064 +#: course/courseshowitems.php:1545 course/courseshowitems.php:1657 +msgid "LP" +msgstr "LP" + +#: course/courseshowitems.php:905 course/courseshowitems.php:910 +#: course/courseshowitems.php:1560 course/courseshowitems.php:1607 +#: forums/thread.php:177 +msgid "Un-use LatePass" +msgstr "Nicht mehr verspätet einreichen" + +#: course/courseshowitems.php:908 course/courseshowitems.php:949 +#: course/courseshowitems.php:1551 +msgid " LatePass Allowed" +msgstr " Verspätetes Einreichen erlaubt" + +#: course/courseshowitems.php:931 +#, php-format +msgid "Past Due Date of %s. Showing as Practice" +msgstr "Nach dem Fälligkeitsdatum %s. Anzeige zur Übung" + +#: course/courseshowitems.php:933 +#, php-format +msgid "Past Due Date of %s. Showing as Review" +msgstr "Über Fälligkeitsdatum %s. Anzeige im Überprüfungsmodus" + +#: course/courseshowitems.php:936 +msgid "until" +msgstr "bis" + +#: course/courseshowitems.php:952 +msgid "This assessment is in practice mode - no scores will be saved" +msgstr "" +"Dieser Test ist im Übungsmodus. Es werden keine Punktzahlen gespeichert" + +#: course/courseshowitems.php:954 +msgid "This assessment is in review mode - no scores will be saved" +msgstr "" +"Dieser Test ist im Überprüfungsmodus. Es werden keine Punktzahlen gespeichert" + +#: course/courseshowitems.php:969 +msgid "This assessment was due" +msgstr "Dieser Test ist geschlossen" + +#: course/courseshowitems.php:1013 course/courseshowitems.php:1301 +#: course/courseshowitems.php:1574 +#, php-format +msgid "Will be available starting %1$s" +msgstr "Ist ab %1$s verfügbar" + +#: course/courseshowitems.php:1015 +#, php-format +msgid "This assessment was due %1$s" +msgstr "Dieser Test war am %1$s fällig" + +#: course/courseshowitems.php:1037 +msgid "Waiting for date to be set via LTI" +msgstr "Warte darauf, dass das Fälligkeitsdatum vom LMS über LTI gesetzt wird" + +#: course/courseshowitems.php:1039 +#, php-format +msgid "Available %1$s until %2$s" +msgstr "Verfügbar %1$s bis %2$s" + +#: course/courseshowitems.php:1042 +#, php-format +msgid ", Practice until %s" +msgstr ", Üben bis %s" + +#: course/courseshowitems.php:1044 +#, php-format +msgid ", Review until %s" +msgstr ", überprüfen bis %s" + +#: course/courseshowitems.php:1145 course/courseshowitems.php:1271 +#: course/courseshowitems.php:1428 course/courseshowitems.php:1506 +#: course/courseshowitems.php:1727 +msgid "Showing Always " +msgstr "Immer anzeigen " + +#: course/courseshowitems.php:1148 course/courseshowitems.php:1274 +#: course/courseshowitems.php:1431 course/courseshowitems.php:1509 +#: course/courseshowitems.php:1730 +msgid "Showing until:" +msgstr "Zeige bis:" + +#: course/courseshowitems.php:1200 course/courseshowitems.php:1330 +#: course/courseshowitems.php:1462 course/courseshowitems.php:1621 +#: course/courseshowitems.php:1774 +#, php-format +msgid "Showing %1$s until %2$s" +msgstr "Zeige %1$s bis %2$s" + +#: course/courseshowitems.php:1303 +#, php-format +msgid "This item was available until %1$s" +msgstr "Dieses Element war verfügbar bis %1$s" + +#: course/courseshowitems.php:1515 course/courseshowitems.php:1626 +#: forums/thread.php:156 +#, php-format +msgid "New Threads due %s. " +msgstr "Neue Themen fällig %s. " + +#: course/courseshowitems.php:1517 course/courseshowitems.php:1583 +#: course/courseshowitems.php:1628 forums/thread.php:158 +#, php-format +msgid "New Threads were due %s. " +msgstr "Neue Themen waren bis %s fällig. " + +#: course/courseshowitems.php:1522 course/courseshowitems.php:1633 +#: forums/thread.php:164 +#, php-format +msgid "Replies due %s. " +msgstr "Antworten fällig %s. " + +#: course/courseshowitems.php:1524 course/courseshowitems.php:1590 +#: course/courseshowitems.php:1635 forums/thread.php:166 +#, php-format +msgid "Replies were due %s. " +msgstr "Antworten waren bis %s fällig. " + +#: course/courseshowitems.php:1535 course/courseshowitems.php:1645 +#, php-format +msgid "New Posts (%s)" +msgstr "Neue Beiträge (%s)" + +#: course/courseshowitems.php:1576 +#, php-format +msgid "This forum closed %1$s" +msgstr "Dieses Forum wurde am %1$s geschlossen" + +#: course/courseshowitems.php:1581 +#, php-format +msgid "New Threads will be due %s. " +msgstr "Neue Theme nsind bis %s fällig. " + +#: course/courseshowitems.php:1588 +#, php-format +msgid "Replies will be due %s. " +msgstr "Antworten sind bis %s fällig. " + +#: course/courseshowitems.php:1735 +#, php-format +msgid "Edits due by %s. " +msgstr "Änderungen fällig bis %s. " + +#: course/courseshowitems.php:1753 course/courseshowitems.php:1783 +msgid "New Revisions" +msgstr "Neue Revisionen" + +#: course/courseshowitems.php:1809 course/courseshowitems.php:1811 +#: course/courseshowitems.php:1813 +msgid "Add here:" +msgstr "Füge hier hinzu:" + +#: course/courseshowitems.php:1836 +msgid "Text" +msgstr "Text" + +#: course/courseshowitems.php:1842 +msgid "Link" +msgstr "Link" + +#: course/courseshowitems.php:1848 +msgid "Forum" +msgstr "Forum" + +#: course/courseshowitems.php:1854 +msgid "Wiki" +msgstr "Wiki" + +#: course/courseshowitems.php:1860 +msgid "Drill" +msgstr "Training" + +#: course/courseshowitems.php:1866 +msgid "Block" +msgstr "Block" + +#: course/courseshowitems.php:1878 +msgid "Add An Item" +msgstr "Hinzufügen" + +#: course/courseshowitems.php:1885 +msgid "Add An Item..." +msgstr "Hinzufügen..." + +#: course/courseshowitems.php:1892 +msgid "Add Inline Text" +msgstr "Eingebetteten Text" + +#: course/courseshowitems.php:1893 +msgid "Add Link" +msgstr "Link hinzufügen" + +#: course/courseshowitems.php:1894 +msgid "Add Forum" +msgstr "Forum" + +#: course/courseshowitems.php:1895 +msgid "Add Wiki" +msgstr "Wiki" + +#: course/courseshowitems.php:1896 +msgid "Add Drill" +msgstr "Training hinzufügen" + +#: course/courseshowitems.php:1897 +msgid "Add Block" +msgstr "Block" + +#: course/courseshowitems.php:1898 +msgid "Add Calendar" +msgstr "Kalender" + +#: course/courseshowitems.php:1917 +#, php-format +msgid "Into %s" +msgstr "Nach %s" + +#: course/courseshowitems.php:1921 +msgid "Out of Block" +msgstr "Außerhalb des Blocks" + +#: course/courseshowitems.php:2089 course/gradebook.php:437 +msgid "NewFlag" +msgstr "NewFlag" + +#: course/courseshowitems.php:2138 +#, php-format +msgid "Available until %s" +msgstr "Verfügbar bis %s" + +#: course/courseshowitems.php:2143 +#, php-format +msgid "Practice until %s" +msgstr "Üben bis %s" + +#: course/courseshowitems.php:2145 +#, php-format +msgid "Review until %s" +msgstr "Überprüfung bis %s" + +#: course/courseshowitems.php:2150 +#, php-format +msgid "Available %1$s to %2$s" +msgstr "Verfügbar %1$s to %2$s" + +#: course/courseshowitems.php:2153 +#, php-format +msgid ", practice until %s" +msgstr ", üben bis %s" + +#: course/courseshowitems.php:2155 +#, php-format +msgid ", review until %s" +msgstr ", Überprüfung bis %s" + +#: course/courseshowitems.php:2216 course/courseshowitems.php:2263 +#: course/courseshowitems.php:2310 course/courseshowitems.php:2357 +#: course/courseshowitems.php:2404 +#, php-format +msgid " showing until %s" +msgstr " wird angezeigt bis %s" + +#: course/courseshowitems.php:2222 course/courseshowitems.php:2269 +#: course/courseshowitems.php:2316 course/courseshowitems.php:2363 +#: course/courseshowitems.php:2410 +#, php-format +msgid " showing %1$s until %2$s" +msgstr " wird angezeigt %1$s bis %2$s" + +#: course/drillassess.php:10 +msgid "You don't have authority to access this item" +msgstr "Sie haben keine Zugriffsrechte auf dieses Objekt" + +#: course/drillassess.php:14 +msgid "Invalid course id or drill assessment id" +msgstr "Ungültige Kurs oder Trainings-Test ID" + +#: course/drillassess.php:18 course/drillassess.php:222 +#: course/drillassess.php:224 +msgid "Drill Assessment" +msgstr "Trainings-Test" + +#: course/drillassess.php:36 +msgid "Invalid drill assessment id" +msgstr "Ungültige Trainings-Test ID" + +#: course/drillassess.php:106 +#, php-format +msgid "Current: %d question(s) correct" +msgstr "Zurzeit: %d Frage(n) korrekt" + +#: course/drillassess.php:108 +#, php-format +msgid "Current: %d question(s) attempted" +msgstr "Zurzeit: %d Frage(n) versucht" + +#: course/drillassess.php:110 +#, php-format +msgid "Current: %d question(s) correct out of %d attempt(s)" +msgstr "Zurzeit: %d Frage(n) korrekt von %d Versuch(en)" + +#: course/drillassess.php:112 +#, php-format +msgid "Current: %d question streak (correct in a row) out of %d attempt(s)" +msgstr "Zurzeit: %d korrekte Fragen in Folge von %d Versuch(en)" + +#: course/drillassess.php:146 +#, php-format +msgid "%d hours, " +msgstr "%d Stunden, " + +#: course/drillassess.php:151 +#, php-format +msgid "%d minutes, " +msgstr "%d Minuten, " + +#: course/drillassess.php:154 +#, php-format +msgid "%d seconds." +msgstr "%d Sekunden." + +#: course/drillassess.php:168 +#, php-format +msgid "%d questions completed " +msgstr "%d Fragen komplett " + +#: course/drillassess.php:170 +#, php-format +msgid "%d questions answered correctly " +msgstr "%d Fragen korrekt beantwortet " + +#: course/drillassess.php:172 +#, php-format +msgid "%d question streak completed " +msgstr "%d Fragen in Folge korrekt beantwortet " + +#: course/drillassess.php:183 +#, php-format +msgid "%d questions answered correctly in %d seconds" +msgstr "%d Fragen korrekt beantwortet in %d Sekunden" + +#: course/drillassess.php:193 +#, php-format +msgid "out of %d questions attempted" +msgstr "von %d Fragen versucht" + +#: course/drillassess.php:203 +#, php-format +msgid "in %s" +msgstr "in %s" + +#: course/drillassess.php:227 +msgid "Goal: " +msgstr "Ziel: " + +#: course/drillassess.php:231 +msgid "Answer as many questions correctly as possible in " +msgstr "Beantworte so viele Fragen wie möglich in " + +#: course/drillassess.php:240 +#, php-format +msgid "Attempt %d questions" +msgstr "Versuche %d Fragen" + +#: course/drillassess.php:242 +#, php-format +msgid "Get %d questions correct" +msgstr "Beantworte %d Fragen korrekt" + +#: course/drillassess.php:244 +#, php-format +msgid "Get a streak of %d questions correct in a row" +msgstr "Beantworte %d Fragen in Folge korrekt" + +#: course/drillassess.php:247 +msgid "in the shortest time possible" +msgstr "in der kürzest möglichen Zeit" + +#: course/drillassess.php:249 +msgid "in the fewest total attempts" +msgstr "mit möglichst wenig Versuchen" + +#: course/drillassess.php:256 +msgid "Drills" +msgstr "Trainings" + +#: course/drillassess.php:271 +msgid "Last score" +msgstr "Letzte Bewertung" + +#: course/drillassess.php:276 course/drillassess.php:278 +msgid "Personal best" +msgstr "Persönlicher Rekord" + +#: course/drillassess.php:283 +msgid "Class best" +msgstr "Klassenrekord" + +#: course/drillassess.php:296 +msgid "Select a drill to begin" +msgstr "Wähle eine Trainingsmöglichkeit" + +#: course/drillassess.php:300 +msgid "Score on last question" +msgstr "Bewertung der letzten Frage" + +#: course/drillassess.php:305 +msgid "Drill Complete" +msgstr "Training vollständig" + +#: course/drillassess.php:308 +msgid "Congrats! That's a new personal best!" +msgstr "Glückwunsch! Dies ist ein neuer persönlicher Rekord!" + +#: course/drillassess.php:311 +msgid "Congrats! That's a new class best!" +msgstr "Glückwunsch! Dies ist ein neuer Klassenrekord!" + +#: course/drillassess.php:349 +msgid "Time" +msgstr "Zeit" + +#: course/drillassess.php:365 +msgid "Displaying last question with solution" +msgstr "Stelle letzte Frage mit Lösung dar" + +#: course/drillassess.php:365 course/drillassess.php:377 embedq.php:193 +msgid "New Question" +msgstr "Neue Frage" + +#: course/drillassess.php:379 embedq.php:191 +msgid "Check Answer" +msgstr "Antwort prüfen" + +#: course/drillassess.php:419 +msgid "attempts" +msgstr "Versuche" + +#: course/drillassess.php:485 +#, php-format +msgid "%s out of %d" +msgstr "%s von %d" + +#: course/drillassess.php:526 +#, php-format +msgid "%s out of %d (parts: %s)" +msgstr "%s von %d (Teile: %s)" + +#: course/editsnippets.php:51 +msgid "Snippets saved" +msgstr "Fragment gespeichert" + +#: course/editsnippets.php:90 course/editsnippets.php:241 +msgid "Snippet Title" +msgstr "Fragment-Titel" + +#: course/editsnippets.php:112 course/editsnippets.php:233 +msgid "Group Title" +msgstr "Gruppen-Titel" + +#: course/editsnippets.php:121 course/editsnippets.php:236 +msgid "Add Snippet" +msgstr "Textfragment hinzufügen" + +#: course/editsnippets.php:145 +msgid "Are you SURE you want to delete this snippet?" +msgstr "Sind Sie SICHER, dass Sie dieses Fragment löschen wollen?" + +#: course/editsnippets.php:223 course/editsnippets.php:225 +msgid "Prewritten Snippets" +msgstr "Vorgefertigte Fragmente" + +#: course/editsnippets.php:254 +msgid "Add Group" +msgstr "Gruppe hinzufügen" + +#: course/exception.php:186 +msgid "Create Exception" +msgstr "Ausnahme machen" + +#: course/exception.php:189 +msgid "Clear Exception" +msgstr "Ausnahme löschen" + +#: course/exportcalfeed.php:36 +msgid "no notification" +msgstr "keine Benachrichtigung" + +#: course/exportcalfeed.php:36 +msgid "days" +msgstr "Tage" + +#: course/exportcalfeed.php:41 +msgid "Updating..." +msgstr "Aktualisiere..." + +#: course/exportcalfeed.php:49 +msgid "Updated" +msgstr "Aktualisiert" + +#: course/exportcalfeed.php:51 +msgid "Error - try again" +msgstr "Fehler - versuchen Sie es noch einmal" + +#: course/exportcalfeed.php:60 course/exportcalfeed.php:62 +msgid "Generate Calendar Feed" +msgstr "Erzeuge Kalender-Feed" + +#: course/exportcalfeed.php:65 +msgid "" +"The link below can be used to subscribe to a calendar feed for the due dates " +"and events in this course. " +msgstr "" +"Über den Link unten können Sie einen Kalender-Feed für die Ereignisse in " +"diesem Kurs, z.B. für die Fälligkeit von Tests, abonnieren. " + +#: course/exportcalfeed.php:68 +msgid "Calendar feed link" +msgstr "Link für Kalender-Feed" + +#: course/exportcalfeed.php:98 +msgid "To load in the calendar feed" +msgstr "Um den Kalender-Feed zu laden" + +#: course/exportcalfeed.php:99 +msgid "" +"Start by copying the link above. Usually you can do that by right-clicking " +"on it and Copy Link Address" +msgstr "" +"Kopieren Sie den obigen Link. Normalerweise können Sie dazu den Link mit der " +"rechten Maustaste anklicken und dann die Link-Adresse kopieren" + +#: course/exportcalfeed.php:100 +msgid "Google Calendar" +msgstr "Google-Kalender" + +#: course/exportcalfeed.php:102 +msgid "" +"In the left column, click the triangle after \"Other calendars\" and select " +"\"Add by URL\". Paste in the feed link and Add Calendar." +msgstr "" +"Klicken Sie das Dreieck in der linken Spalte nach \"Andere Kalender\" an und " +"wählen Sie \"Nach URL hinzufügen\". Fügen Sie den Link ein und klicken Sie " +"auf \"Kalender hinzufügen\"." + +#: course/exportcalfeed.php:104 +msgid "" +"If you wish to set up notifications/alarms, after adding the calendar click " +"the arrow that shows when you hover over the calendar. Click Edit " +"Notifications, then under Event Notifications click Add a notification." +msgstr "" +"Um Benachrichtigungen/Alarme einzuschalten, nachdem Sie den Kalender " +"hinzugefügt haben, klicken Sie auf den Pfeil der erscheint, wenn die Maus " +"sich über dem Kalender befindet. Klicken Sie \"Benachrichtigungen bearbeiten" +"\", dann klicken Sie unter Benachrichtigungen auf \"Benachrichtigung " +"hinzufügen\"." + +#: course/exportcalfeed.php:107 tinymce4/plugins/lists/plugin.min.js:1 +msgid "iOS" +msgstr "iOS" + +#: course/exportcalfeed.php:109 +msgid "" +"Go to Settings, then \"Mail, Contacts, and Calendars\". Tap \"Add Account\", " +"then \"Other\". Tap \"Add Subscribed Calendar\" and paste in the feed link." +msgstr "" +"Gehen Sie zu \"Einstellungen\", dann \"Mail, Kontakte und Kalender\". " +"Klicken Sie auf \"Kennung hinzufügen\", dann \"Andere\". Klicken Sie auf " +"\"Abonnierten Kalender hinzufügen\" und fügen Sie den Link des Feed ein." + +#: course/gb-excuse.php:16 course/gb-excuse.php:49 course/gradebook.php:172 +#: course/gradebook.php:738 course/isolateassessgrade.php:21 +#: course/isolateassessgrade.php:245 +msgid "Excuse Grade" +msgstr "Bewertung nach Entschuldigung" + +#: course/gb-excuse.php:35 course/gb-excuse.php:59 course/gradebook.php:176 +#: course/gradebook.php:739 course/isolateassessgrade.php:25 +#: course/isolateassessgrade.php:246 +msgid "Un-excuse Grade" +msgstr "Keine verspäteten Eineichungen" + +#: course/gb-export.php:200 course/gb-export.php:208 course/gradebook.php:1228 +#: course/gradebook.php:1311 course/gradebook.php:1313 +#: course/outcomereport.php:249 course/outcomereport.php:321 +msgid "Total" +msgstr "Gesamtpunktzahl" -#: course/courseshowitems.php:164 course/courseshowitems.php:217 -#: course/courseshowitems.php:271 course/courseshowitems.php:363 -#: course/courseshowitems.php:410 course/courseshowitems.php:471 -#: course/courseshowitems.php:1666 course/courseshowitems.php:165 -#: course/courseshowitems.php:218 course/courseshowitems.php:272 -#: course/courseshowitems.php:364 course/courseshowitems.php:411 -#: course/courseshowitems.php:472 course/courseshowitems.php:1667 -#: course/gradebook.php:558 -msgid "NewFlag" -msgstr "NewFlag" +#: course/gb-export.php:202 course/gb-export.php:204 course/gb-export.php:235 +#: course/gb-export.php:484 course/gradebook.php:1043 course/gradebook.php:1045 +#: course/gradebook.php:1311 course/gradebook.php:1342 +#: course/gradebook.php:1583 course/gradebook.php:1585 +msgid "pts" +msgstr "Pkt" -#: assessment/showtest.php:1780 assessment/showtest.php:2292 -#: assessment/showtest.php:2564 -msgid "Next" -msgstr "Weiter" +#: course/gb-export.php:215 course/gradebook.php:1318 +msgid "Weighted Total %" +msgstr "Gewichtete Gesamtpunktzahl %" -#: index.php:362 index.php:412 index.php:364 index.php:414 index.php:363 -#: index.php:413 -msgid "No Subject" -msgstr "Kein Betreff" +#: course/gb-export.php:271 course/gb-export.php:327 course/gradebook.php:1372 +#: course/gradebook.php:1430 course/gradebook.php:1713 +#: course/gradebook.php:1784 course/gradebook.php:1826 +#: course/gradebook.php:1851 +msgid "5-number summary:" +msgstr "5-Zahlen-Statistik:" -#: assessment/testutil.php:817 -msgid "No attempts left on current versions of questions." -msgstr "Keine Versuche für die Fragen in der aktuellen Version übrig" +#: course/gb-itemanalysis.php:69 course/gb-itemanalysis2.php:70 +msgid "Grade this question for all students" +msgstr "Diese Frage für alle Studierenden bewerten" -#: assessment/showtest.php:1626 assessment/showtest.php:1998 -#: assessment/showtest.php:1942 assessment/showtest.php:2522 -#: assessment/showtest.php:2178 assessment/showtest.php:2804 -msgid "No attempts remain on this problem." -msgstr "Keine Versuche für dieses Problem verbleibend" +#: course/gb-rescoreq.php:162 course/gb-rescoreq.php:213 +#: course/gb-rescoreq.php:215 course/gb-rescoreq2.php:54 +#: course/gb-rescoreq2.php:56 +msgid "Regrade Question" +msgstr "Bewertung der Frage überprüfen" -#: assessment/testutil.php:625 -msgid "No attempts remain." -msgstr "Keine Versuche verbleibend" +#: course/gb-rescoreq.php:163 +msgid "Please be patient - this page will auto-submit when it is done loading" +msgstr "" +"Bitte haben Sie etwas Geduld - Diese Seite wird aktualisiert, wenn Sie " +"fertig geladen ist" -#: index.php:353 index.php:355 index.php:354 -msgid "No new messages" -msgstr "Keine neuen Nachrichten" +#: course/gb-rescoreq.php:220 course/gb-rescoreq2.php:61 +msgid "This will allow you rescore this question. " +msgstr "Dies erlaubt eine neue Bewertung der Antwort. " -#: index.php:393 index.php:395 index.php:394 -msgid "No new posts" -msgstr "Keine neuen Beiträge" +#: course/gb-rescoreq.php:221 course/gb-rescoreq2.php:62 +msgid "This is intended to be used after fixing a bug in the question code. " +msgstr "" +"Dies wird verwendet, nachdem ein Problem im Code der Frage korrigiert wurde. " -#: assessment/showtest.php:141 assessment/showtest.php:196 -#: assessment/showtest.php:225 -msgid "No questions in assessment!" -msgstr "Keine Fragen in dem Test!" +#: course/gb-rescoreq.php:222 +msgid "" +"This page will re-submit the student's answer to their best-scored version " +"of this question (the latest version if all are 0), scoring it as if it was " +"their first attempt. " +msgstr "" +"Diese Seite wird die Antwort der Studierenden erneut als am Besten bewertete " +"Version einreichen (als jüngste Version, wenn alle 0 sind). Sie wird so " +"bewertet, als ob es der erste Versuch ist. " -#: course/gradebook.php:544 course/gradebook.php:598 course/gradebook.php:615 -#: course/gradebook.php:861 -msgid "None" -msgstr "Keine" +#: course/gb-rescoreq.php:223 +msgid "" +"This process will wipe out all record of other attempts the student made on " +"this question, and reset their attempt count to 1 on this question. " +msgstr "" +"Dies löscht alle Daten über andere Versuche des Studenten zu dieser Frage. " +"Die Anzahl der bisher gemachten Versuche dieser Frage wird auf 1 " +"zurückgesetzt. " -#: course/course.php:679 course/course.php:680 -msgid "Normal" -msgstr "Normal" +#: course/gb-rescoreq.php:225 +msgid "Which answer from the student do you want to resubmit?" +msgstr "Welche Antwort möchten Sie neu einreichen?" -#: course/gradebook.php:447 course/gradebook.php:583 -msgid "Not Counted:" -msgstr "Nicht gewertet:" +#: course/gb-rescoreq.php:227 +msgid "" +"The first attempt. Recommended for single-part questions, to rescore the " +"student's first try." +msgstr "" +"Die erste Antwort. Empfohlen für Fragen mit einem Teil um den ersten Versuch " +"des Studenten neu zu bewerten." -#: assessment/showtest.php:2472 assessment/showtest.php:3115 -#: assessment/showtest.php:3406 -msgid "Not answered" -msgstr "Nicht beantwortet" +#: course/gb-rescoreq.php:229 +msgid "" +"The last attempt. Recommended for multi-part questions, to preserve the " +"score on working parts." +msgstr "" +"Der letzte Versuch. Empfohlen für Multipart-Fragen, um die Punkte der " +"bereits bearbeiteten Teile zu erhalten." -#: assessment/showtest.php:1259 assessment/showtest.php:1599 -#: assessment/showtest.php:1486 assessment/showtest.php:1905 -#: assessment/showtest.php:1715 assessment/showtest.php:2141 -msgid "Note:" -msgstr "Hinweis:" +#: course/gb-rescoreq.php:231 course/gb-rescoreq2.php:72 +msgid "Are you SURE you want to proceed?" +msgstr "Sind Sie SICHER, dass Sie fortsetzen wollen?" -#: course/course.php:775 course/course.php:776 -msgid "Now" -msgstr "Jetzt" +#: course/gb-rescoreq.php:232 course/gb-rescoreq2.php:73 +msgid "Rescore Question" +msgstr "Punkte der Frage überprüfen" + +#: course/gb-rescoreq.php:235 +msgid "" +"When you continue, all students' attempts will be loaded up on your screen " +"and then automatically submitted for regrading. " +msgstr "" +"Wenn Sie fortfahren, werden alle Versuche aller Studierenden auf Ihren " +"Bildschirm geladen und automatisch zur erneuten Bewertung eingereicht. " -#: course/gradebook.php:524 -msgid "Offline Grades:" -msgstr "Offline-Noten:" +#: course/gb-rescoreq.php:236 course/gb-rescoreq2.php:76 +msgid "Please be patient - it may take a minute or two" +msgstr "Bitte haben Sie Geduld, das kann ein oder zwei Minuten dauern" -#: assessment/showtest.php:386 assessment/showtest.php:499 -#: assessment/showtest.php:607 +#: course/gb-rescoreq2.php:63 msgid "" -"Only one open assessment can be handled at a time. Please reopen the " -"assessment and try again. " +"This page will re-submit the student's answer to this question, scoring it " +"as if it was their first try on that version. This will be repeated for all " +"versions of the assessment or question." msgstr "" -"Es kann nur ein Test gleichzeitig geöffnet sein. Bitte öffnen Sie den Test " -"erneut und versuchen Sie es ein weiteres Mal." +"Diese Seite wird die Antwort des Studierenden auf diese Frage erneut " +"einreichen. Die Antwort wird so gewertet, als ob sie der erste Versuch zu " +"dieser Frage wäre. Dies wird für alle Versionen des Tests oder der Frage " +"wiederholt." -#: assessment/displayq2.php:1956 assessment/displayq2.php:2662 -#: assessment/displayq2.php:2780 -#, fuzzy -msgid "Open Dot" -msgstr "Punkt öffnen" +#: course/gb-rescoreq2.php:64 +msgid "" +"This process will wipe out all record of other tries the student made on " +"this question, and reset their try count to 1 on this question. " +msgstr "" +"Dies löscht alle Daten über andere Versuche des Studierenden zu dieser " +"Frage. Die Anzahl der bisherigen Versuche dieser Frage wird auf 1 " +"zurückgesetzt. " -#: course/courseshowitems.php:1455 course/courseshowitems.php:1456 -msgid "Out of Block" -msgstr "Außerhalb des Blocks" +#: course/gb-rescoreq2.php:66 +msgid "Which try from the student do you want to resubmit?" +msgstr "Welche Antwort des Studenten möchten Sie erneut einreichen?" -#: assessment/testutil.php:647 -msgid "Out of:" -msgstr "Außerhalb von:" +#: course/gb-rescoreq2.php:68 +msgid "" +"The first try. Recommended for single-part questions, to rescore the " +"student's first try." +msgstr "" +"Erster Versuch Empfohlen für Fragen mit nur einem Teil um den ersten Versuch " +"des Studierenden neu zu bewerten." -#: assessment/showtest.php:2154 assessment/showtest.php:2788 -#: assessment/showtest.php:3076 -msgid "Pages" -msgstr "Seiten" +#: course/gb-rescoreq2.php:70 +msgid "" +"The last try. Recommended for multi-part questions, to preserve the score on " +"working parts." +msgstr "" +"Der letzte Versuch. Empfohlen für Multipart-Fragen, um die Punkte der " +"bereits bearbeiteten Teile zu erhalten." + +#: course/gb-viewasid.php:181 course/gb-viewasid.php:269 +#: course/gb-viewasid.php:380 +msgid "Really Clear" +msgstr "Wirklich löschen" + +#: course/gb-viewasid.php:210 +msgid "Really Separate" +msgstr "Wirklich trennen" + +#: course/gb-viewasid.php:381 +msgid "Really Clear and Regen" +msgstr "Wirklich löschen und neu erzeugen" + +#: course/gb-viewasid.php:589 +msgid "Show Score Summary" +msgstr "Zeige Punktezusammenfassung" + +#: course/gb-viewasid.php:860 +msgid "Hide Correct Questions" +msgstr "Korrekt beantwortete Fragen ausblenden" + +#: course/gb-viewasid.php:861 javascript/gb-scoretools.js:32 +msgid "Hide Perfect Questions" +msgstr "Perfekt beantwortete Fragen ausblenden" + +#: course/gb-viewasid.php:862 course/gradeallq.php:328 +#: course/gradeallq2.php:335 javascript/gb-scoretools.js:43 +msgid "Hide Unanswered Questions" +msgstr "Unbeantwortete Fragen ausblenden" + +#: course/gb-viewasid.php:863 course/gradeallq.php:330 +#: course/gradeallq2.php:337 +msgid "Show All Answers" +msgstr "Alle Antworten anzeigen" + +#: course/gb-viewasid.php:864 +msgid "Preview All" +msgstr "Vorschau" -#: loginpage.php:63 assessment/showtest.php:910 loginpage.php:62 -#: assessment/showtest.php:1135 assessment/showtest.php:1322 -msgid "Password" -msgstr "Passwort" +#: course/gb-viewasid.php:956 course/gb-viewasid.php:1081 +#: course/gradebook.php:766 +msgid "Feedback" +msgstr "Hinweise" -#: assessment/showtest.php:100 assessment/showtest.php:151 -#: assessment/showtest.php:174 -msgid "Password incorrect. Try again." -msgstr "Passwort inkorrekt. Erneut versuchen." +#: course/gb-viewasid.php:1125 +msgid "General Instructor Feedback" +msgstr "Allgemeine Rückmeldung vom Lehrer" -#: assessment/showtest.php:111 assessment/showtest.php:165 -#: assessment/showtest.php:188 -msgid "Password required for access." -msgstr "Für den Zugriff wird ein Passwort benötigt" +#: course/gb-viewasid.php:1172 +msgid "Show Score Details" +msgstr "Zeige Punkte-Details" -#: course/gradebook.php:454 course/gradebook.php:590 -msgid "Past & Attempted" -msgstr "Überfällig & versucht" +#: course/gb-viewasid.php:1281 +msgid "Withdrawn" +msgstr "Zurückgezogen" -#: course/gradebook.php:456 course/gradebook.php:592 -msgid "Past & Available" -msgstr "Überfällig & verfügbar" +#: course/gbcomments.php:205 +msgid "Save Comments" +msgstr "Kommentare speichern" -#: course/gradebook.php:868 -msgid "Past Due" -msgstr "Überfälig" +#: course/gbsettings.php:283 course/gradebook.php:424 +msgid "Points" +msgstr "Punkte" -#: course/courseshowitems.php:672 course/courseshowitems.php:673 -msgid "Past Due Date. Showing as Review" -msgstr "Über Fälligkeitsdatum. Zeige zur Überprüfung" +#: course/gbsettings.php:283 course/gradebook.php:425 +msgid "Percents" +msgstr "Prozent" -#: course/gradebook.php:871 -msgid "Past Due and Attempted" -msgstr "Überfällig und versucht" +#: course/gbsettings.php:317 course/listusers.php:710 course/listusers.php:714 +#: javascript/posts.js:38 javascript/posts.js:62 +msgid "Show" +msgstr "Anzeigen" -#: course/gradebook.php:874 -msgid "Past Due and Available" -msgstr "Überfällig und verfügbar" +#: course/gbsettings.php:329 +msgid "Right" +msgstr "Rechts" -#: assessment/showtest.php:960 course/gradebook.php:453 -#: course/gradebook.php:589 assessment/showtest.php:1199 -#: assessment/showtest.php:1389 -msgid "Past due" -msgstr "Überfällig" +#: course/gbsettings.php:329 +msgid "Left" +msgstr "Links" -#: course/gradebook.php:704 -msgid "Percent" -msgstr "Prozent" +#: course/gbsettings.php:336 +msgid "Bottom" +msgstr "Unten" -#: course/gradebook.php:597 -msgid "Pics:" -msgstr "Bilder:" +#: course/gbsettings.php:336 +msgid "Top" +msgstr "Oben" -#: assessment/catscores.php:44 -msgid "Points Earned / Possible (Percent)" -msgstr "Punkte erreicht / möglich (Prozent)" +#: course/gbtable2.php:2391 course/showfeedback.php:76 +#, php-format +msgid "Feedback on Version %d:" +msgstr "Rückmeldung zu Version %d:" -#: assessment/testutil.php:618 assessment/testutil.php:780 +#: course/gbtable2.php:2397 course/showfeedback.php:48 +#: course/showfeedback.php:82 #, php-format -msgid "Points available on this attempt: %1$d of original %2$d" -msgstr "Punkte verfügbar bei diesem Versuch: %1$d von original %2$d" +msgid "Feedback on Question %d:" +msgstr "Rückmeldung zu Frage %d:" -#: assessment/testutil.php:778 -msgid "Points possible:" -msgstr "Punkte möglich:" +#: course/gbtable2.php:2403 course/showfeedback.php:90 +msgid "Overall feedback on this attempt:" +msgstr "Gesamt-Rückmeldung zu diesem Versuch:" -#: assessment/testutil.php:616 -msgid "Points possible: " -msgstr "Punkte möglich: " +#: course/gbtable2.php:2405 course/showfeedback.php:45 +#: course/showfeedback.php:88 +msgid "Overall feedback:" +msgstr "Gesamt-Rückmeldung:" -#: assessment/testutil.php:772 +#: course/gbtable2.php:2411 course/showfeedback.php:96 #, php-format -msgid "Points: %1$d out of %2$d possible." -msgstr "Punkte: %1$d von %2$d möglich" +msgid "Feedback on attempt %d" +msgstr "Rückmeldung zu Versuch %d" -#: assessment/displayq2.php:1958 assessment/displayq2.php:1961 -#: assessment/displayq2.php:2664 assessment/displayq2.php:2667 -#: assessment/displayq2.php:2782 assessment/displayq2.php:2785 -msgid "Polygon" -msgstr "Vieleck" +#: course/gradeallq.php:313 course/gradeallq2.php:320 +msgid "Limit to section" +msgstr "Begrenzen auf Abschnitt" -#: course/gradebook.php:704 -msgid "Possible" -msgstr "Möglich" +#: course/gradeallq.php:326 course/gradeallq2.php:333 +#: javascript/gb-scoretools.js:7 +msgid "Hide Questions with Perfect Scores" +msgstr "Fragen mit voller Punktzahl ausblenden" -#: assessment/testutil.php:664 assessment/testutil.php:799 -msgid "Post this question to forum" -msgstr "Einen Beitrag zu dieser Frage im Forum verfassen" +#: course/gradeallq.php:327 course/gradeallq2.php:334 +#: javascript/gb-scoretools.js:20 +msgid "Hide Nonzero Score Questions" +msgstr "Blende Fragen mit mehr als 0 Punkten aus" -#: index.php:331 index.php:333 index.php:332 -#, php-format -msgid "Posts (%d)" -msgstr "Beiträge (%d)" - -#: assessment/displayq2.php:1177 assessment/displayq2.php:1223 -#: assessment/displayq2.php:1278 assessment/displayq2.php:1422 -#: assessment/displayq2.php:1505 assessment/displayq2.php:1545 -#: assessment/displayq2.php:1750 assessment/displayq2.php:1486 -#: assessment/displayq2.php:1546 assessment/displayq2.php:1592 -#: assessment/displayq2.php:1602 assessment/displayq2.php:1667 -#: assessment/displayq2.php:1860 assessment/displayq2.php:1958 -#: assessment/displayq2.php:2065 assessment/displayq2.php:2352 -#: assessment/displayq2.php:1521 assessment/displayq2.php:1581 -#: assessment/displayq2.php:1627 assessment/displayq2.php:1637 -#: assessment/displayq2.php:1703 assessment/displayq2.php:1925 -#: assessment/displayq2.php:2025 assessment/displayq2.php:2133 -#: assessment/displayq2.php:2428 -msgid "Preview" -msgstr "Vorschau" +#: course/gradeallq.php:329 course/gradeallq2.php:336 +msgid "Prepare for Printing (Slow)" +msgstr "Vorbereitung zum Druck (langsam)" -#: assessment/showtest.php:1166 assessment/showtest.php:1381 -#: assessment/showtest.php:1601 -msgid "Previous Question" -msgstr "Vorherige Frage" +#: course/gradeallq.php:331 course/gradeallq2.php:338 +msgid "Preview All Files" +msgstr "Vorschau aller Dateien" -#: course/gradebook.php:616 -msgid "Print Report" -msgstr "Zeugnis drucken" +#: course/gradeallq.php:338 course/gradeallq2.php:345 javascript/rubric.js:70 +#: javascript/rubric_min.js:1 +msgid "Full Credit" +msgstr "Volle Punkte" -#: assessment/showtest.php:2406 assessment/showtest.php:2910 -#: assessment/showtest.php:3047 assessment/showtest.php:3198 -#: assessment/showtest.php:3335 -msgid "Print Version" -msgstr "Druckversion" +#: course/gradeallq.php:339 course/gradeallq2.php:346 +msgid "No Credit" +msgstr "Keine Punkte" -#: loginpage.php:49 loginpage.php:51 loginpage.php:50 -msgid "Problems with session storage" -msgstr "Probleme mit dem Speicher für die Sitzungsverwaltung" - -#: assessment/testutil.php:679 assessment/testutil.php:681 -#: assessment/showtest.php:2469 assessment/showtest.php:2480 -#: assessment/showtest.php:2585 assessment/showtest.php:2558 -#: assessment/showtest.php:3112 assessment/showtest.php:3123 -#: assessment/showtest.php:3237 assessment/showtest.php:2840 -#: assessment/showtest.php:2898 assessment/showtest.php:2900 -#: assessment/showtest.php:3403 assessment/showtest.php:3414 -#: assessment/showtest.php:3528 -msgid "Question" -msgstr "Frage" +#: course/gradeallq.php:343 course/gradeallq2.php:350 +msgid "Quick Save" +msgstr "Schnelles Speichern" -#: assessment/showtest.php:1110 assessment/showtest.php:1325 -#: assessment/showtest.php:1545 -#, php-format -msgid "" -"Question %d has been submitted since you viewed it. Your answer just " -"submitted was not scored or recorded." -msgstr "" -"Frage %d wurde abgeschickt seit Sie sie betrachteten. Ihre gerade " -"abgeschickte Antwort wurde nicht bewertet oder gespeichert." +#: course/gradeallq.php:665 course/gradeallq2.php:573 +msgid "Question Feedback" +msgstr "Rückmeldung zur Frage" -#: assessment/testutil.php:611 assessment/testutil.php:767 -msgid "Question Withdrawn" -msgstr "Frage zurückgezogen" +#: course/gradeallq.php:696 course/gradeallq2.php:603 +msgid "No submission to show" +msgstr "Keine Einreichung anzuzeigen" -#: assessment/showtest.php:1274 assessment/showtest.php:1605 -#: assessment/showtest.php:1911 assessment/showtest.php:2147 -msgid "Question scored." -msgstr "Frage bepunktet" +#: course/gradebook.php:30 course/showfeedbackall.php:12 +msgid "Error - you are not a student, teacher, or tutor for this course" +msgstr "Fehler - Sie sind in diesem Kurs kein Student, Lehrer oder Tutor" -#: assessment/showtest.php:1456 -msgid "" -"Question scored. Continue with assessment, or click here to finalize and " -"summarize score." -msgstr "" -"Frage bepunktet. Mit Test fortfahren, oder klicken Sie " -"hier um Punktzahl zu " -"finalisieren und zusammenzuzählen." +#: course/gradebook.php:184 +msgid "Unenroll Students" +msgstr "Studenten austragen" -#: assessment/showtest.php:1368 assessment/showtest.php:1654 -#: assessment/showtest.php:1883 -msgid "Question with last attempt is displayed for your review only" -msgstr "Frage mit letztem Versuch wird nur zur Überprüfung angezeigt" +#: course/gradebook.php:193 +msgid "Lock Students" +msgstr "Student sperren" -#: course/course.php:438 course/courseshowitems.php:644 -#: course/courseshowitems.php:681 course/courseshowitems.php:718 -#: course/courseshowitems.php:1735 course/courseshowitems.php:645 -#: course/courseshowitems.php:682 course/courseshowitems.php:719 -#: course/courseshowitems.php:1736 course/course.php:439 -#: assessment/showtest.php:2282 assessment/showtest.php:2601 -#: assessment/showtest.php:2923 assessment/showtest.php:2886 -#: assessment/showtest.php:3211 -msgid "Questions" -msgstr "Fragen" +#: course/gradebook.php:208 +msgid "Back to Gradebook" +msgstr "Zurück zur Punkteübersicht" -#: course/course.php:693 course/course.php:694 -msgid "Quick" -msgstr "Schnell" +#: course/gradebook.php:312 +msgid "Student Grade Detail" +msgstr "Studenten-Noten-Details" -#: course/course.php:433 course/course.php:577 course/course.php:744 -#: course/course.php:434 course/course.php:578 course/course.php:745 -msgid "Quick View" -msgstr "Schnellansicht" +#: course/gradebook.php:321 +msgid "Grade Book Averages" +msgstr "Punkteübersichts-Durchschnitte" -#: course/course.php:708 course/course.php:709 -msgid "Quick View." -msgstr "Schnellansicht" +#: course/gradebook.php:323 +msgid "Grade Book Student Detail" +msgstr "Punkteübersichts-Studenten-Details" -#: assessment/showtest.php:1179 assessment/showtest.php:1266 -#: assessment/showtest.php:1424 assessment/showtest.php:1394 -#: assessment/showtest.php:1502 assessment/showtest.php:1512 -#: assessment/showtest.php:1726 assessment/showtest.php:1614 -#: assessment/showtest.php:1731 assessment/showtest.php:1741 -#: assessment/showtest.php:1955 -msgid "Reattempt last question" -msgstr "Letzte Frage erneut versuchen" +#: course/gradebook.php:343 +msgid "Category Totals" +msgstr "Gesamtpunktzahlen (Kategorie)" -#: assessment/showtest.php:1357 assessment/showtest.php:1643 -#: assessment/showtest.php:1872 -msgid "Reattempt this question" -msgstr "Diese Frage erneut versuchen" +#: course/gradebook.php:345 course/gradebook.php:497 +msgid "Not Counted:" +msgstr "Nicht gewertet:" -#: course/course.php:710 course/course.php:711 -msgid "Record Changes" -msgstr "Änderungen speichern" +#: course/gradebook.php:346 course/gradebook.php:498 +#: includes/calendardisp.php:871 +msgid "Show all" +msgstr "Alle anzeigen" -#: assessment/showtest.php:913 assessment/showtest.php:1138 -#: assessment/showtest.php:1325 -msgid "Record Group and Continue" -msgstr "Gruppe speichern und fortfahren" +#: course/gradebook.php:347 course/gradebook.php:499 +msgid "Show stu view" +msgstr "Studentenansicht zeigen" -#: assessment/showtest.php:766 assessment/showtest.php:967 -#: assessment/showtest.php:980 assessment/showtest.php:1101 -#: assessment/showtest.php:1120 -msgid "Redeem LatePass" -msgstr "Verspätet einreichen" +#: course/gradebook.php:348 course/gradebook.php:500 +msgid "Hide all" +msgstr "Alle verbergen" -#: loginpage.php:64 loginpage.php:66 loginpage.php:65 -msgid "Register as a new student" -msgstr "Als neuer Student registrieren" +#: course/gradebook.php:350 course/gradebook.php:502 +msgid "Show:" +msgstr "Anzeigen:" -#: course/courseshowitems.php:1165 course/courseshowitems.php:1166 -#, php-format -msgid "Replies due %s. " -msgstr "Antworten fällig %s. " +#: course/gradebook.php:352 course/gradebook.php:504 +msgid "Past & Attempted" +msgstr "Überfällig & versucht" -#: assessment/showtest.php:2609 assessment/showtest.php:3262 -#: assessment/showtest.php:3553 -msgid "Return to Course Page" -msgstr "Zur Kursseite zurückkehren" +#: course/gradebook.php:353 course/gradebook.php:505 +msgid "Available Only" +msgstr "Nur verfügbare" -#: assessment/showtest.php:387 assessment/showtest.php:394 -#: assessment/showtest.php:500 assessment/showtest.php:507 -#: assessment/showtest.php:608 assessment/showtest.php:615 -msgid "Return to course page" -msgstr "Zur Kursseite zurückkehren" +#: course/gradebook.php:354 course/gradebook.php:506 +msgid "Past & Available" +msgstr "Überfällig & verfügbar" -#: course/courseshowitems.php:1719 course/courseshowitems.php:1720 -#, php-format -msgid "Review until %s" -msgstr "Überprüfung bis %s" +#: course/gradebook.php:356 +msgid "Links:" +msgstr "Links:" -#: assessment/showtest.php:2399 assessment/showtest.php:3040 -#: assessment/showtest.php:3328 -msgid "Review: " -msgstr "Kontrollansicht:" +#: course/gradebook.php:357 course/gradebook.php:428 +msgid "View/Edit" +msgstr "Anzeigen/Ändern" -#: assessment/displayq2.php:1649 assessment/displayq2.php:2224 -#: assessment/displayq2.php:2294 -#, fuzzy -msgid "Right of a value" -msgstr "Rechts von einem Wert" +#: course/gradebook.php:364 +msgid "" +"Meanings: IP-In Progress (some unattempted questions), UA-Unsubmitted " +"attempt, OT-overtime, PT-practice test, EC-extra credit, NC-no credit
d Dropped score. x Excused score. e Has " +"exception LP Used latepass" +msgstr "" +"Erklärung: IP - In Bearbeitung (einige Fragen noch nicht beantwortet), UA - " +"Nicht eingereichte Frage, OT - Zeitüberschreitung, PT - Übungs-Test, EC - " +"Extra-Punkte, NC - Keine Punkte
d Punkte ignoriert. x Punkte aus Kulanz. e Ausnahme LP Verspätet " +"eingereicht" -#: course/course.php:421 course/course.php:574 course/course.php:732 -#: course/course.php:422 course/course.php:575 course/course.php:733 -msgid "Roster" -msgstr "Teilnehmerliste" +#: course/gradebook.php:406 +msgid "View diagnostic gradebook" +msgstr "Zeige diagnostische Punkteübersicht" -#: course/gradebook.php:860 course/gradebook.php:1051 -msgid "Save Changes" -msgstr "Veränderungen speichern" +#: course/gradebook.php:412 +msgid "Toggles" +msgstr "Umschalter" -#: assessment/showtest.php:1753 assessment/showtest.php:2265 -#: assessment/showtest.php:2529 -msgid "Save answers" -msgstr "Antworten speichern" +#: course/gradebook.php:414 +msgid "Headers" +msgstr "Kopfzeilen" -#: assessment/showtest.php:1168 assessment/showtest.php:1247 -#: assessment/showtest.php:1410 assessment/showtest.php:1588 -#: assessment/showtest.php:1383 assessment/showtest.php:1474 -#: assessment/showtest.php:1712 assessment/showtest.php:1894 -#: assessment/showtest.php:1603 assessment/showtest.php:1703 -#: assessment/showtest.php:1941 assessment/showtest.php:2130 -msgid "Score before penalty on last attempt: " -msgstr "Punktzahl vor Strafe beim letzten Versuch:" +#: course/gradebook.php:415 +msgid "Locked" +msgstr "Gesperrt" -#: assessment/showtest.php:2474 assessment/showtest.php:2485 -#: assessment/showtest.php:2588 assessment/showtest.php:3117 -#: assessment/showtest.php:3128 assessment/showtest.php:3240 -#: assessment/showtest.php:3408 assessment/showtest.php:3419 -#: assessment/showtest.php:3531 -msgid "Score in Gradebook: " -msgstr "Punktzahl in Punkteübersicht: " +#: course/gradebook.php:416 +msgid "Unlocked" +msgstr "Entsperrt" -#: assessment/showtest.php:1174 assessment/showtest.php:1389 -#: assessment/showtest.php:1609 -msgid "Score in gradebook" -msgstr "Punktzahl in Punkteübersicht" +#: course/gradebook.php:419 +msgid "Width" +msgstr "Breite" -#: assessment/testutil.php:635 assessment/testutil.php:638 -msgid "Score in gradebook:" -msgstr "Punktzahl in Punkteübersicht:" +#: course/gradebook.php:420 +msgid "Fixed" +msgstr "Fixiert" -#: assessment/showtest.php:1255 assessment/showtest.php:1351 -#: assessment/showtest.php:1419 assessment/showtest.php:1596 -#: assessment/showtest.php:1482 assessment/showtest.php:1637 -#: assessment/showtest.php:1721 assessment/showtest.php:1902 -#: assessment/showtest.php:1711 assessment/showtest.php:1866 -#: assessment/showtest.php:1950 assessment/showtest.php:2138 -msgid "Score in gradebook: " -msgstr "Punktzahl in Punkteübersicht: " +#: course/gradebook.php:421 +msgid "Full" +msgstr "Voll" -#: assessment/showtest.php:1172 assessment/showtest.php:1387 -#: assessment/showtest.php:1607 -msgid "Score on last attempt" -msgstr "Punktzahl beim letzten Versuch" +#: course/gradebook.php:427 +msgid "Links" +msgstr "Links" -#: assessment/testutil.php:635 assessment/testutil.php:637 -msgid "Score on last attempt:" -msgstr "Punktzahl beim letzten Versuch:" +#: course/gradebook.php:431 +msgid "Pics" +msgstr "Bilder" -#: assessment/showtest.php:1252 assessment/showtest.php:1348 -#: assessment/showtest.php:1416 assessment/showtest.php:1593 -#: assessment/showtest.php:1479 assessment/showtest.php:1634 -#: assessment/showtest.php:1718 assessment/showtest.php:1899 -#: assessment/showtest.php:1708 assessment/showtest.php:1863 -#: assessment/showtest.php:1947 assessment/showtest.php:2135 -msgid "Score on last attempt: " -msgstr "Punktzahl beim letzten Versuch: " +#: course/gradebook.php:433 course/listusers.php:707 +msgid "Small" +msgstr "Klein" -#: course/courseshowitems.php:911 course/courseshowitems.php:939 -#: course/courseshowitems.php:912 course/courseshowitems.php:940 -#: course/gradebook.php:460 course/gradebook.php:596 -msgid "Scores" -msgstr "Punktzahlen" +#: course/gradebook.php:434 course/listusers.php:708 +msgid "Big" +msgstr "Groß" -#: assessment/showtest.php:2458 assessment/showtest.php:3101 -#: assessment/showtest.php:3392 -msgid "Scores:" -msgstr "Punktzahlen:" +#: course/gradebook.php:438 +msgid "Off" +msgstr "Aus" -#: assessment/displayq2.php:2126 assessment/displayq2.php:2899 -#: assessment/displayq2.php:3048 -msgid "Select a file to upload" -msgstr "Wählen Sie eine Datei zum Hochladen aus" +#: course/gradebook.php:439 +msgid "On" +msgstr "Ein" -#: assessment/showtest.php:888 assessment/showtest.php:1111 -#: assessment/showtest.php:1292 -msgid "Select a name.." -msgstr "Wählen Sie einen Namen aus.." +#: course/gradebook.php:447 +msgid "Offline Grades" +msgstr "Offline-Bewertungen" -#: assessment/displayq2.php:950 assessment/displayq2.php:1261 -#: assessment/displayq2.php:1295 -msgid "Select all correct answers" -msgstr "Wählen Sie alle korrekten Antworten aus" +#: course/gradebook.php:449 +msgid "Add" +msgstr "Hinzufügen" -#: assessment/displayq2.php:786 assessment/displayq2.php:1081 -#: assessment/displayq2.php:1115 -msgid "Select an answer" -msgstr "Wählen Sie eine Antwort aus" +#: course/gradebook.php:456 +msgid "Comments" +msgstr "Kommentare" -#: assessment/showtest.php:1276 assessment/showtest.php:1518 -#: assessment/showtest.php:1747 -msgid "Select another question" -msgstr "Wählen Sie eine andere Frage aus" +#: course/gradebook.php:457 +msgid "Color:" +msgstr "Farbe:" -#: assessment/showtest.php:852 assessment/showtest.php:1075 -#: assessment/showtest.php:1240 -msgid "Select group members" -msgstr "Wählen Sie Gruppenmitglieder aus" +#: course/gradebook.php:527 course/gradebook.php:735 +msgid "Check:" +msgstr "Überprüfen:" -#: assessment/displayq2.php:847 assessment/displayq2.php:1145 -#: assessment/displayq2.php:1179 -msgid "Select the best answer" -msgstr "Wählen Sie die beste Antwort aus" +#: course/gradebook.php:530 +msgid "With Selected" +msgstr "Mit Ausgewählten" -#: index.php:357 index.php:359 index.php:358 -msgid "Sent" -msgstr "Gesendet" +#: course/gradebook.php:532 +msgid "Send a message to the selected students" +msgstr "Schicke eine Nachricht an die ausgewählten Studierenden" -#: course/courseshowitems.php:644 course/courseshowitems.php:681 -#: course/courseshowitems.php:718 course/courseshowitems.php:645 -#: course/courseshowitems.php:682 course/courseshowitems.php:719 -#: course/courseshowitems.php:1736 course/courseshowitems.php:1735 -msgid "Settings" -msgstr "Einstellungen" +#: course/gradebook.php:532 course/gradebook.php:691 index.php:610 +msgid "Message" +msgstr "Nachricht" -#: course/course.php:638 course/course.php:639 -msgid "Shift all Course Dates" -msgstr "Alle Kursdaten verschieben" +#: course/gradebook.php:534 +msgid "Send e-mail to the selected students" +msgstr "Schicke eine e-Mail an die ausgewählten Studierenden" -#: assessment/displayq2.php:332 assessment/displayq2.php:342 -#: assessment/displayq2.php:354 assessment/displayq2.php:362 -#: assessment/displayq2.php:349 assessment/displayq2.php:369 -#: assessment/displayq2.php:377 -msgid "Show Answer" -msgstr "Antwort anzeigen" +#: course/gradebook.php:534 +msgid "E-mail" +msgstr "E-Mail" -#: course/course.php:575 course/course.php:761 course/course.php:576 -#: course/course.php:762 -msgid "Show Gradebook" -msgstr "Punkteübersicht anzeigen" +#: course/gradebook.php:536 +msgid "Copy e-mail addresses of the selected students" +msgstr "Kopiere die e-Mail-Adressen der ausgewählten Studierenden" -#: assessment/showtest.php:1102 -msgid "Show Instructions" -msgstr "Anweisungen anzeigen" +#: course/gradebook.php:536 +msgid "Copy E-mails" +msgstr "E-Mails kopieren" -#: course/gradebook.php:1114 -msgid "Show Locked" -msgstr "Gesperrte anzeigen" +#: course/gradebook.php:537 +msgid "Make due date exceptions for selected students" +msgstr "Mache für die ausgewählten Studierenden eine Ausnahme beim Einreichen" + +#: course/gradebook.php:537 course/gradebook.php:737 course/gradebook.php:1294 +msgid "Make Exception" +msgstr "Ausnahme machen" + +#: course/gradebook.php:538 +msgid "Generate printable grade reports" +msgstr "Erzeuge eine druckbare Notenübersicht" -#: assessment/showtest.php:1321 assessment/showtest.php:1566 -#: assessment/showtest.php:1607 assessment/showtest.php:1795 -#: assessment/showtest.php:1836 -msgid "Show Question Information" -msgstr "Fragenhinweise anzeigen" +#: course/gradebook.php:538 +msgid "Print Report" +msgstr "Zeugnis drucken" -#: course/gradebook.php:448 course/gradebook.php:584 -msgid "Show all" -msgstr "Alle anzeigen" +#: course/gradebook.php:539 +msgid "Lock selected students out of the course" +msgstr "Schließe die ausgewählten Studierenden aus dem Kurs aus" -#: course/gradebook.php:449 course/gradebook.php:585 -msgid "Show stu view" -msgstr "Studentenansicht zeigen" +#: course/gradebook.php:539 +msgid "Lock" +msgstr "Sperren" -#: course/gradebook.php:452 course/gradebook.php:588 -msgid "Show:" -msgstr "Anzeigen:" +#: course/gradebook.php:541 +msgid "Unenroll the selected students" +msgstr "Ausgewählte Studierende austragen" -#: course/courseshowitems.php:323 course/courseshowitems.php:326 -#: course/courseshowitems.php:324 course/courseshowitems.php:327 -#, php-format -msgid "Showing %1$s %2$s to %3$s" -msgstr "zeige %1$s %2$s bis %3$s" +#: course/gradebook.php:541 +msgid "Unenroll" +msgstr "Austragen" -#: course/courseshowitems.php:119 course/courseshowitems.php:1629 -#: course/courseshowitems.php:120 course/courseshowitems.php:1630 -#, php-format -msgid "Showing %1$s %2$s until %3$s" -msgstr "%1$s %2$s anzeigen bis %3$s" +#: course/gradebook.php:564 +msgid "" +"Meanings: IP-In Progress (some unattempted questions), UA-Unsubmitted " +"attempt, OT-overtime, PT-practice test, EC-extra credit, NC-no credit
* Has feedback, d Dropped score, x Excused " +"score, e Has exception LP Used latepass" +msgstr "" +"Erklärung: IP - In Bearbeitung (einige Fragen noch nicht beantwortet), UA - " +"Nicht eingereichte Frage, OT - Zeitüberschreitung, PT - Übungs-Test, EC - " +"Extra-Punkte, NC - Keine Punkte
* Mit Rückmeldung,, d Punkte ignoriert, x Punkte aus Kulanz, e Ausnahme " +"LP Verspätet eingereicht" -#: course/courseshowitems.php:817 course/courseshowitems.php:921 -#: course/courseshowitems.php:1049 course/courseshowitems.php:1199 -#: course/courseshowitems.php:1325 course/courseshowitems.php:818 -#: course/courseshowitems.php:922 course/courseshowitems.php:1050 -#: course/courseshowitems.php:1200 course/courseshowitems.php:1326 -#, php-format -msgid "Showing %1$s until %2$s" -msgstr "Zeige %1$s bis %2$s" +#: course/gradebook.php:677 +msgid "Last Login: " +msgstr "Letzte Anmeldung " -#: course/courseshowitems.php:117 course/courseshowitems.php:118 -#, php-format -msgid "Showing %s Always" -msgstr "%s immer anzeigen" +#: course/gradebook.php:694 +msgid "Change Info" +msgstr "Info ändern" -#: course/courseshowitems.php:750 course/courseshowitems.php:885 -#: course/courseshowitems.php:1015 course/courseshowitems.php:1154 -#: course/courseshowitems.php:1279 course/courseshowitems.php:751 -#: course/courseshowitems.php:886 course/courseshowitems.php:1016 -#: course/courseshowitems.php:1155 course/courseshowitems.php:1280 -msgid "Showing Always " -msgstr "immer anzeigen" +#: course/gradebook.php:695 course/gradebook.php:701 course/listusers.php:484 +msgid "Login Log" +msgstr "Login-Protokoll" -#: course/course.php:772 course/course.php:773 -msgid "Showing student view. Show view:" -msgstr "Zeige Studentenansicht. Zeige:" +#: course/gradebook.php:696 course/gradebook.php:702 course/listusers.php:485 +msgid "Activity Log" +msgstr "Aktivitäts-Log" -#: course/courseshowitems.php:753 course/courseshowitems.php:888 -#: course/courseshowitems.php:1018 course/courseshowitems.php:1157 -#: course/courseshowitems.php:1282 course/courseshowitems.php:754 -#: course/courseshowitems.php:889 course/courseshowitems.php:1019 -#: course/courseshowitems.php:1158 course/courseshowitems.php:1283 -msgid "Showing until:" -msgstr "Zeige bis:" +#: course/gradebook.php:697 +msgid "Edit Offline Scores" +msgstr "Offline-Punktzahlen editieren" -#: assessment/showtest.php:2124 assessment/showtest.php:2151 -#: assessment/showtest.php:2280 assessment/showtest.php:2758 -#: assessment/showtest.php:2785 assessment/showtest.php:2921 -#: assessment/showtest.php:3046 assessment/showtest.php:3073 -#: assessment/showtest.php:3209 -msgid "Skip Navigation" -msgstr "Navigation überspringen" +#: course/gradebook.php:709 +msgid "Gradebook Comment" +msgstr "Noten-Kommentar" -#: course/gradebook.php:599 -msgid "Small" -msgstr "Klein" +#: course/gradebook.php:709 +msgid "Update Comment" +msgstr "Kommentar aktualisieren" -#: index.php:406 index.php:408 index.php:407 -msgid "Started By" -msgstr "Gestartet von" +#: course/gradebook.php:718 +msgid "No LatePasses available" +msgstr "Verspätetes Einreichen nicht mehr erlaubt" -#: course/course.php:686 course/course.php:687 -msgid "Student" -msgstr "Student" +#: course/gradebook.php:720 +#, php-format +msgid "%d LatePasses available" +msgstr "Verspätetes Einreichen noch %d mal erlaubt" -#: course/gradebook.php:417 -msgid "Student Detail" -msgstr "Studenten-Details" +#: course/gradebook.php:722 +msgid "One LatePass available" +msgstr "Einmal verspätetes Einreichen erlaubt" -#: course/gradebook.php:414 -msgid "Student Grade Detail" -msgstr "Studenten-Noten-Details" +#: course/gradebook.php:736 course/isolateassessgrade.php:244 +msgid "With selected:" +msgstr "Mit ausgewählten:" -#: course/course.php:593 course/course.php:604 course/course.php:594 -#: course/course.php:605 -msgid "Student Groups" -msgstr "Studentengruppen" +#: course/gradebook.php:747 +msgid "Grade" +msgstr "Note" -#: course/course.php:432 course/course.php:576 course/course.php:729 -#: course/course.php:433 course/course.php:577 course/course.php:730 -msgid "Student View" -msgstr "Studentenansicht" +#: course/gradebook.php:747 +msgid "Possible" +msgstr "Möglich" -#: assessment/showtest.php:114 assessment/showtest.php:1621 -#: assessment/showtest.php:1752 assessment/showtest.php:1818 -#: assessment/showtest.php:168 assessment/showtest.php:1580 -#: assessment/showtest.php:1937 assessment/showtest.php:2264 -#: assessment/showtest.php:2330 assessment/showtest.php:2509 -#: assessment/showtest.php:191 assessment/showtest.php:1809 -#: assessment/showtest.php:1850 assessment/showtest.php:2173 -#: assessment/showtest.php:2528 assessment/showtest.php:2602 -#: assessment/showtest.php:2791 multiembedq.php:146 multiembedq.php:186 -msgid "Submit" -msgstr "Absenden" +#: course/gradebook.php:749 course/gradebook.php:756 +msgid "Time Spent (In Questions)" +msgstr "Benötigte Zeit (in Fragen)" -#: assessment/showtest.php:1507 assessment/showtest.php:1868 -#: assessment/showtest.php:1813 assessment/showtest.php:2380 -#: assessment/showtest.php:2042 assessment/showtest.php:2652 -#, php-format -msgid "Submit Question %d" -msgstr "Frage %d absenden" +#: course/gradebook.php:752 +msgid "Last Changed" +msgstr "Zuletzt geändert" -#: assessment/showtest.php:942 assessment/showtest.php:1167 -#: assessment/showtest.php:1354 -msgid "Teacher Acting as " -msgstr "Lehrer agiert als" +#: course/gradebook.php:763 +msgid "Due Date" +msgstr "Fälligkeitsdatum" -#: course/courseshowitems.php:1386 course/courseshowitems.php:1387 -msgid "Text" -msgstr "Text" +#: course/gradebook.php:768 +msgid "View All" +msgstr "Alle ansehen" -#: assessment/showtest.php:1390 assessment/showtest.php:1692 -#: assessment/showtest.php:1921 +#: course/gradebook.php:918 msgid "" -"The last question has been submitted since you viewed it, and that score is " -"shown below. Your answer just submitted was not scored or recorded." +"If you view this assignment, you will not be able to use a LatePass on it" msgstr "" -"Die letzte Frage wurde abgeschickt seit Sie sie betrachteten und die " -"Punktzahl wird unten angezeigt. Ihre gerade abgeschickte Antwort wurde nicht " -"bewertet oder gespeichert." +"Wenn Sie diesen Test ansehen, können Sie ihn nicht mehr verspätet einreichen" -#: assessment/showtest.php:1149 assessment/showtest.php:1364 -#: assessment/showtest.php:1584 -msgid "" -"The last question has been submittted since you viewed it, and that grade is " -"shown below. Your answer just submitted was not scored or recorded." -msgstr "" -"Die letzte Frage wurde abgeschickt seit Sie sie betrachteten und die " -"Punktzahl wird unten angezeigt. Ihre gerade abgeschickte Antwort wurde nicht " -"bewertet oder gespeichert." +#: course/gradebook.php:1043 course/gradebook.php:1583 +msgid "(Not Counted)" +msgstr "(nicht gewertet)" -#: assessment/showtest.php:1130 assessment/showtest.php:1345 -#: assessment/showtest.php:1565 -msgid "The timelimit will continue to count down" -msgstr "Das Zeitlimit wird mit dem Herunterzählen fortfahren" +#: course/gradebook.php:1090 course/gradebook.php:1092 +#: course/gradebook.php:1095 course/gradebook.php:1097 +#: course/gradebook.php:1099 +msgid "View Feedback" +msgstr "Rückmeldung ansehen" -#: course/courseshowitems.php:632 course/courseshowitems.php:633 -#, php-format -msgid "" -"This assessment has a time limit of %s. Click OK to start or continue " -"working on the assessment." -msgstr "" -"Dieser Test hat ein Zeilimit von %s. Klicken Sie OK, um zu Starten, oder um " -"an dem Test weiterzuarbeiten." +#: course/gradebook.php:1114 +msgid "Totals" +msgstr "Gesamtpunktzahlen" -#: assessment/showtest.php:79 assessment/showtest.php:97 -#: assessment/showtest.php:107 -msgid "This assessment is closed" -msgstr "Dieser Test ist geschlossen" +#: course/gradebook.php:1116 +msgid "Past Due" +msgstr "Überfälig" -#: course/courseshowitems.php:688 course/courseshowitems.php:689 -msgid "This assessment is in review mode - no scores will be saved" -msgstr "" -"Dieser Test ist im Überprüfungsmodus. Es werden keine Punktzahlen " -"gespeichert." +#: course/gradebook.php:1119 +msgid "Past Due and Attempted" +msgstr "Überfällig und versucht" -#: assessment/showtest.php:1710 assessment/showtest.php:2218 -msgid "This is a group assessment. Any changes effect all group members." -msgstr "" -"Dies ist eine Gruppenaufgabe. Sämtliche Veränderungen wirken sich auf alle " -"Gruppenmitglieder aus." +#: course/gradebook.php:1122 +msgid "Past Due and Available" +msgstr "Überfällig und verfügbar" -#: assessment/testutil.php:628 assessment/testutil.php:789 -#, php-format -msgid "This is attempt %1$d of %2$d." -msgstr "Dies ist Versuch %1$d von %2$d." +#: course/gradebook.php:1248 +msgid "Weighted Total" +msgstr "Gewichtete Gesamtpunktzahl" -#: assessment/showtest.php:1259 assessment/showtest.php:1599 +#: course/gradebook.php:1269 msgid "" -"This question contains parts that can not be auto-graded. Those parts will " -"show a score of 0 until they are graded by your instructor" +"Past Due total only includes items whose due date has passed. " +"Current assignments are not counted in this total." msgstr "" -"Diese Frage enthält Teile, die nicht automatisch bewertet werden können. " -"Bei diesen Teilen wird eine Punktzahl von 0 angezeigt, bis sie vom Dozenten " -"bewertet wurden." +"Überfällig Gesamtsumme enthält nur Teile die fällig sind. Laufende " +"Tests sind dabei nicht berücksichtigt." -#: assessment/showtest.php:1221 assessment/showtest.php:1524 -#: assessment/showtest.php:1439 assessment/showtest.php:1830 -#: assessment/showtest.php:1668 assessment/showtest.php:2066 +#: course/gradebook.php:1272 msgid "" -"This question has been submittted since you viewed it, and that grade is " -"shown below. Your answer just submitted was not scored or recorded." +"Past Due and Attempted total includes items whose due date has " +"passed, as well as currently available items you have started working on." msgstr "" -"Diese Frage wurde abgeschickt seit Sie sie betrachteten und die Punktzahl " -"wird unten angezeigt. Ihre gerade abgeschickte Antwort wurde nicht bewertet " -"oder gespeichert." +"Überfällig und versucht Gesamtsumme enthält Teile die fällig sind, " +"sowie verfügbare Teile deren Bearbeitung Sie begonnen haben." -#: loginpage.php:119 loginpage.php:121 loginpage.php:120 +#: course/gradebook.php:1276 msgid "" -"This system is designed for mathematics, providing delivery of homework, " -"quizzes, tests, practice tests,and diagnostics with rich mathematical " -"content. Students can receive immediate feedback on algorithmically " -"generated questions with numerical or algebraic expression answers." +"Past Due and Available total includes items whose due date has passed " +"as well as currently available items, even if you haven't starting working " +"on them yet." msgstr "" -"Das System wurde für verschiedene Formen von umfangreichen " -"Mathematikaufgaben entworfen. Studenten können durch generierte Tests und " -"automatische Auswertung direkt Rückmeldung bekommen." - -#: assessment/showtest.php:759 assessment/showtest.php:766 -#: assessment/showtest.php:953 assessment/showtest.php:967 -#: assessment/showtest.php:980 assessment/showtest.php:1084 -#: assessment/showtest.php:1101 assessment/showtest.php:1120 -msgid "This will discard any unsaved work." -msgstr "Dies wird alle nicht gespeicherte Arbeit verwerfen." +"Überfällig und verfügbar Gesamtsumme enthält Teile die fällig sind, " +"sowie verfügbare Teile, auch wenn Sie deren Bearbeitung noch nicht begonnen " +"haben." -#: assessment/showtest.php:1753 assessment/showtest.php:2265 -#: assessment/showtest.php:2529 +#: course/gradebook.php:1279 msgid "" -"This will save your answers so you can come back later and finish, but not " -"submit them for grading. Be sure to come back and submit your answers before " -"the due date." +"All total includes all items: past, current, and future to-be-done " +"items." msgstr "" -"Dies wird Ihre Antworten speichern, aber nicht zur Benotung absenden, so " -"dass Sie später zum Fertigstellen zurückkommen können." +"Alle Gesamtsumme enthält alle Teile: vergangene, aktuelle und noch zu " +"erledigende Teile." -#: index.php:406 index.php:408 index.php:407 -msgid "Thread" -msgstr "Thema" +#: course/gradebook.php:1286 +msgid "View Outcome Report" +msgstr "Übersicht nach Themen ansehen" -#: assessment/showtest.php:1052 -msgid "Time Limit has elapsed" -msgstr "Das Zeitlimit ist verstrichen" +#: course/gradebook.php:1294 +msgid "for selected assessments" +msgstr "für ausgewählte Tests" -#: course/course.php:464 course/course.php:465 -msgid "Time Shift" -msgstr "Zeitverschiebung" +#: course/gradebook.php:1353 +msgid "[Collapse]" +msgstr "[Einklappen]" -#: course/gradebook.php:706 -msgid "Time Spent (In Questions)" -msgstr "Benötigte Zeit (in Fragen)" +#: course/gradebook.php:1355 +msgid "[Expand]" +msgstr "[Ausklappen]" -#: assessment/showtest.php:2535 assessment/showtest.php:3178 -#: assessment/showtest.php:3469 -msgid "Time limit exceeded by" -msgstr "Zeitlimit überschritten um" +#: course/gradebook.php:1530 +msgid "Show Locked" +msgstr "Gesperrte anzeigen" -#: assessment/showtest.php:1075 assessment/showtest.php:1287 -#: assessment/showtest.php:1483 -msgid "Time limit expired" -msgstr "Zeitlimit abgelaufen" +#: course/gradebook.php:1531 +msgid "Hide Locked" +msgstr "Gesperrte verbergen" -#: assessment/showtest.php:1039 -msgid "Time limit expired - submitting now" -msgstr "Zeitlimit abgelaufen - schicke jetzt ab" +#: course/gradebook.php:1604 course/gradebook.php:1614 +#: course/gradebook.php:1620 course/gradebook.php:1622 +msgid "[Settings]" +msgstr "[Einstellungen]" -#: assessment/showtest.php:485 assessment/showtest.php:626 -#: assessment/showtest.php:746 -msgid "Time limit has expired. Submission rejected. " -msgstr "Das Zeitlimit ist abgelaufen. Einsendung zurückgewiesen." +#: course/gradebook.php:1605 course/gradebook.php:1610 +#: course/gradebook.php:1615 course/gradebook.php:1623 +msgid "[Isolate]" +msgstr "[Isolieren]" -#: assessment/showtest.php:1024 assessment/showtest.php:1273 -#: assessment/showtest.php:1469 -msgid "Time limit shortened because of due date" -msgstr "Zeitlimit wegen Fälligkeitsdatum verkürzt" +#: course/gradebook.php:1607 +msgid "[By Group]" +msgstr "[Nach Gruppe]" -#: assessment/showtest.php:1022 assessment/showtest.php:1271 -#: assessment/showtest.php:1467 -msgid "Timelimit" -msgstr "Zeitlimit" +#: course/gradebook.php:1617 +msgid "[Scores]" +msgstr "[Punktzahlen]" -#: assessment/showtest.php:1011 assessment/showtest.php:1260 -#: assessment/showtest.php:1450 -#, php-format -msgid "Timelimit: %s. Time Expired" -msgstr "Zeitlimit: %s. Zeit abgelaufen" +#: course/gradebook.php:1709 course/gradebook.php:1780 +#: course/gradebook.php:1822 course/gradebook.php:1847 +msgid "Mean:" +msgstr "Mittelwert:" -#: index.php:337 index.php:339 index.php:338 -msgid "To add a course, head to the Admin Page" -msgstr "Um einen Kurs hinzuzufügen, gehen Sie zum Administrationsbereich" +#: course/improvoerassess.php:164 course/improvoerassess.php:166 +msgid "Assessment Metric" +msgstr "Test-Metrik" -#: course/course.php:420 course/course.php:421 -msgid "Tools" -msgstr "Werkzeuge" +#: course/isolateassessbygroup.php:264 course/isolateassessbygroup.php:268 +#: course/isolateassessgrade.php:467 course/isolateassessgrade.php:471 +msgid "[Show Feedback]" +msgstr "[Hinweise anzeigen]" -#: course/gradebook.php:936 course/gradebook.php:1126 -#: course/gradebook.php:1231 -msgid "Total" -msgstr "Gesamtpunktzahl" +#: course/isolateassessgrade.php:237 +msgid "One or more students has unsubmitted assessment attempts." +msgstr "" +"Wenigstens ein Studierender hat einen noch nicht eingereichten Versuch " +"dieses Tests." -#: assessment/showtest.php:2504 assessment/showtest.php:3147 -#: assessment/showtest.php:3438 -#, php-format -msgid "Total Points Earned: %d out of %d possible: " -msgstr "Gesamt erreichte Punkte: %d von %d möglichen: " +#: course/isolateassessgrade.php:238 +msgid "Submit Now" +msgstr "Jetzt einreichen" -#: assessment/showtest.php:1707 assessment/showtest.php:1976 -#: assessment/showtest.php:2215 assessment/showtest.php:2580 -#: assessment/showtest.php:2457 assessment/showtest.php:2862 -msgid "Total Points Possible: " -msgstr "Gesamt mögliche Punkte:" +#: course/isolateassessgrade.php:239 +msgid "" +"This will only submit the assignment if it is past due or the time limit has " +"expired." +msgstr "" +"Dies reicht den Test nur ein, wenn der Test überfällig ider die " +"Zeitbegrenzung abgelaufen ist." -#: assessment/showtest.php:2506 assessment/showtest.php:3149 -#, php-format -msgid "Total Points in Gradebook: %d out of %d possible: " -msgstr "Gesamte Punkte in Punkteübersicht: %d von %d möglichen: " +#: course/libtree2.php:140 course/libtree2.php:142 course/libtree2.php:144 +msgid "Unassigned" +msgstr "Nicht zugeordnet" -#: assessment/showtest.php:2500 assessment/showtest.php:3143 -#: assessment/showtest.php:3434 -#, php-format -msgid "Total Points on Last Attempts: %d out of %d possible" -msgstr "Gesamte Punkte bei letzten Versuchen: %d von %d möglichen" +#: course/libtree2.php:227 +msgid "Root Level Private Libraries" +msgstr "Wurzel für private Bibliotheken" -#: course/gradebook.php:866 -msgid "Totals" -msgstr "Gesamtpunktzahlen" +#: course/libtree2.php:232 +msgid "Root Level Group Libraries" +msgstr "Wurzel für Gruppenbibliotheken" -#: assessment/displayq2.php:4926 assessment/displayq2.php:6458 -#: assessment/displayq2.php:6798 -msgid "Trig functions (sin,cos,etc.) are not allowed" -msgstr "Trigonometrische Funktionen (sin, cos, etc.) sind nicht erlaubt" +#: course/listusers.php:478 +msgid "Student profile and options" +msgstr "Studenten-Profil und Optionen" -#: assessment/showtest.php:1183 assessment/showtest.php:1271 -#: assessment/showtest.php:1362 assessment/showtest.php:1429 -#: assessment/showtest.php:1612 assessment/showtest.php:2000 -#: assessment/showtest.php:1398 assessment/showtest.php:1504 -#: assessment/showtest.php:1648 assessment/showtest.php:1731 -#: assessment/showtest.php:1929 assessment/showtest.php:2524 -#: assessment/showtest.php:1618 assessment/showtest.php:1733 -#: assessment/showtest.php:1877 assessment/showtest.php:1960 -#: assessment/showtest.php:2165 assessment/showtest.php:2806 -msgid "Try another similar question" -msgstr "Andere ähnliche Frage versuchen" +#: course/listusers.php:480 +msgid "Unlock" +msgstr "Entsperren" -#: assessment/showtest.php:1567 assessment/showtest.php:1873 -#: assessment/showtest.php:2109 -msgid "Try the problem again" -msgstr "Das Problem erneut versuchen" +#: course/listusers.php:482 +msgid "Lock out of course" +msgstr "Aus dem Kurs ausschließen" -#: course/courseshowitems.php:653 course/courseshowitems.php:658 -#: course/courseshowitems.php:654 course/courseshowitems.php:659 -msgid "Un-use LatePass" -msgstr "Nicht mehr verspätet einreichen" +#: course/listusers.php:777 +msgid "Has a time limit multiplier set" +msgstr "Hat einen Faktor für das Zeit-Limit gesetzt" -#: loginpage.php:51 loginpage.php:53 loginpage.php:52 -msgid "" -"Unable to establish a session. Check that your browser is set to allow " -"session cookies" -msgstr "" -"Konnte keine Sitzung herstellen. Überprüfen Sie, dass ihr Browser " -"Sitzungscookies erlaubt." +#: course/managecalitems.php:160 +msgid "Add another" +msgstr "Füge hier hinzu" -#: course/gradebook.php:618 -msgid "Unenroll" -msgstr "Austragen" +#: course/manageqset.php:509 course/manageqset.php:511 +msgid "Change Question License/Attribution" +msgstr "Lizenz für die Frage ändern" -#: course/course.php:497 course/course.php:622 course/course.php:498 -#: course/course.php:623 -msgid "Unenroll From Course" -msgstr "Aus dem Kurs austragen" +#: course/managestugrps.php:350 +#, php-format +msgid "Random Group %d" +msgstr "Zufällige Gruppe %d" -#: course/gradebook.php:134 -msgid "Unenroll Students" -msgstr "Studenten austragen" +#: course/managestugrps.php:619 course/managestugrps.php:646 +#: forums/posthandler.php:806 +msgid "Yes, Remove" +msgstr "Ja, entfernen" -#: assessment/testutil.php:787 -msgid "Unlimited attempts" -msgstr "Beliebig viele Versuche" +#: course/managestugrps.php:627 +msgid "Group size" +msgstr "Gruppengröße" -#: assessment/testutil.php:623 -msgid "Unlimited attempts." -msgstr "Beliebig viele Versuche." +#: course/managestugrps.php:629 +msgid "Unequal groups" +msgstr "Ungleiche Gruppen" -#: course/gradebook.php:490 course/gradebook.php:538 course/gradebook.php:605 -msgid "Unlock headers" -msgstr "Header entsperren" +#: course/managestugrps.php:631 +msgid "Make smaller groups if needed" +msgstr "Wenn nötig kleinere Gruppen bilden" -#: course/gradebook.php:689 -msgid "Update Comment" -msgstr "Kommentar aktualisieren" +#: course/managestugrps.php:632 +msgid "Make larger groups if needed" +msgstr "Wenn nötig größere Gruppen bilden" -#: assessment/displayq2.php:4499 assessment/displayq2.php:5912 -#: assessment/displayq2.php:6222 -#, php-format -msgid "Upload of %s: " -msgstr "Hochladen von %s: " +#: course/managestugrps.php:633 +msgid "Make smaller or larger groups if needed" +msgstr "Wenn nötig kleinere oder größere Gruppen bilden" -#: course/courseshowitems.php:651 course/courseshowitems.php:652 -#: assessment/showtest.php:121 assessment/showtest.php:140 -msgid "Use LatePass" -msgstr "Verspätet einreichen" +#: course/managestugrps.php:635 +msgid "Locked students:" +msgstr "Ausgeschlossene Studierende:" -#: assessment/displayq2.php:1640 assessment/displayq2.php:1721 -#: assessment/displayq2.php:2215 assessment/displayq2.php:2318 -#: assessment/displayq2.php:2285 assessment/displayq2.php:2393 -msgid "Use U for union to combine intervals. Example: (-oo,2] U [4,oo)" -msgstr "" -"Benutzen Sie U (union) um Intervalle zu kombinieren. Beispiel: (-oo,2] U [4," -"oo)" +#: course/managestugrps.php:636 +msgid "Include locked students" +msgstr "Ausgeschlossene Studierende einbeziehen" -#: course/course.php:710 course/course.php:711 -msgid "Use colored boxes to drag-and-drop order." -msgstr "Ziehen Sie die farbigen Boxen, um die Reihenfolge zu verändern." +#: course/managestugrps.php:658 course/managestugrps.php:709 +msgid "View Pictures" +msgstr "Bilder ansehen" -#: assessment/displayq2.php:1716 -#, php-format -msgid "Use or to combine intervals. Example: %s < 2 or %s >= 3" -msgstr "" -"Benutzen Sie or um Intervalle zu kombinieren. Beispiel: %s < 2 or %s >= 3" +#: course/managestugrps.php:660 +msgid "View Big Pictures" +msgstr "Große Bilder ansehen" -#: loginpage.php:87 loginpage.php:89 loginpage.php:88 -msgid "Use text-based display" -msgstr "Textbasierte Darstellung verwenden" +#: course/managestugrps.php:662 +msgid "Hide Pictures" +msgstr "Bilder ausblenden" -#: loginpage.php:83 loginpage.php:85 loginpage.php:84 -msgid "Use visual display" -msgstr "Visuelle Darstellung verwenden" +#: course/managestugrps.php:702 +msgid "Add New Group" +msgstr "Neue Gruppe hinzufügen" -#: assessment/showtest.php:908 assessment/showtest.php:1133 -#: assessment/showtest.php:1320 -msgid "Username" -msgstr "Benutzername" +#: course/managestugrps.php:704 +msgid "Create Random Groups" +msgstr "Zufällige Gruppen bilden" -#: assessment/showtest.php:741 assessment/showtest.php:935 -#: assessment/showtest.php:1063 -msgid "View as student" -msgstr "Als Student anzeigen" +#: course/managestugrps.php:706 +msgid "Hide Links" +msgstr "Links ausblenden" -#: course/gradebook.php:520 -msgid "View diagnostic gradebook" -msgstr "Zeige diagnostische Punkteübersicht" +#: course/managestugrps.php:800 +msgid "Add new set of groups" +msgstr "Neue Menge von Gruppen hinzufügen" -#: assessment/showtest.php:86 -msgid "View your assessment" -msgstr "Ihren Test anzeigen" +#: course/masschgdates.php:264 javascript/masschgdates.js:373 +msgid "By Dates" +msgstr "Nach Datum" -#: assessment/showtest.php:772 assessment/showtest.php:135 -#: assessment/showtest.php:991 assessment/showtest.php:158 -#: assessment/showtest.php:1131 -msgid "View your scored assessment" -msgstr "Ihre bepunkteten Tests anzeigen" +#: course/masschgdates.php:361 javascript/masschgdates.js:591 +msgid "Show Forum Dates" +msgstr "Forum-Daten anzeigen" -#: course/gradebook.php:459 course/gradebook.php:595 -msgid "View/Edit" -msgstr "Anzeigen/Ändern" +#: course/masschgdates.php:363 javascript/masschgdates.js:594 +msgid "Hide Forum Dates" +msgstr "Forum-Daten ausblenden" + +#: course/masschgdates.php:370 javascript/masschgdates.js:602 +msgid "Show Assessment Dates" +msgstr "Zeige Test-Daten" + +#: course/masschgdates.php:372 javascript/masschgdates.js:605 +msgid "Hide Assessment Dates" +msgstr "Blende Testdaten aus" + +#: course/masschgdates.php:732 +msgid "No limit" +msgstr "Keine Begrenzng" + +#: course/massexception.php:264 course/massexception.php:265 +msgid "Existing Exceptions" +msgstr "Existierende Ausnahmen" + +#: course/massexception.php:297 course/massexception.php:344 +msgid "waives prereq" +msgstr "Voraussetzungen aufheben" + +#: course/massexception.php:300 course/massexception.php:347 +msgid "LatePass" +msgstr "Verspätet einreichen" -#: course/course.php:431 course/course.php:432 -msgid "Views" -msgstr "Ansichten" +#: course/massexception.php:302 course/massexception.php:349 +msgid "Set by LTI" +msgstr "Durch LTI gesetzt" -#: assessment/interpret5.php:411 -#, php-format -msgid "Warning... unquoted string %s.. treating as string" -msgstr "" +#: course/massexception.php:411 +msgid "Make New Exception" +msgstr "Neue Ausnahme machen" -#: course/gradebook.php:951 -msgid "Weighted Total" -msgstr "Gewichtete Gesamtpunktzahl" +#: course/massexception.php:417 +msgid "Exception Options" +msgstr "Optionen für Ausmahmen" -#: course/gradebook.php:1130 course/gradebook.php:1235 -msgid "Weighted Total %" -msgstr "Gewichtete Gesamtpunktzahl %" +#: course/massexception.php:432 +msgid "New Assessment Exception" +msgstr "Neue Ausnahme für Test" -#: index.php:270 index.php:269 -msgid "Welcome to" -msgstr "Willkommen bei" +#: course/massexception.php:470 +msgid "New Forum Exception" +msgstr "Neue Forum-Ausnahme machen" -#: course/courseshowitems.php:1404 course/courseshowitems.php:1405 -msgid "Wiki" -msgstr "Wiki" +#: course/massexception.php:516 +msgid "Students Selected" +msgstr "Ausgewählte Studierende" -#: course/gradebook.php:616 -msgid "With Selected:" -msgstr "Mit ausgewählten:" +#: course/masssend.php:63 course/sendmsgmodal.php:23 msgs/msglist.php:198 +msgid "none" +msgstr "keine" -#: course/gradebook.php:862 -msgid "With selected:" -msgstr "Mit ausgewählten:" +#: course/masssend.php:233 +msgid "Messages Sent" +msgstr "Gesendete Nachrichten" -#: assessment/showtest.php:11 -msgid "" -"You are not authorized to view this page. If you are trying to reaccess a " -"test you've already started, access it from the course page" -msgstr "" -"Sie sind nicht berechtigt diese Seite anzuzeigen. Wenn Sie versuchen erneut " -"auf einen bereits gestarteten Test zuzugreifen, greifen Sie über die " -"Kursseite darauf zu." +#: course/masssend.php:234 forums/posts.php:731 +msgid "Close" +msgstr "Schließen" -#: course/course.php:19 course/course.php:20 +#: course/moddataset.php:901 msgid "" -"You are not enrolled in this course. Please return to the Home Page and enroll\n" +"If the original question contained copyrighted material, you should not " +"change the license unless you have removed all the copyrighted material" msgstr "" -"Sie sind nicht in diesem Kurs eingeschrieben. Bitte gehen Sie zur Hauptseite zurück und schreiben Sie sich ein.\n" +"Falls die ursprüngliche Frage Copyright-geschütztes Material enthielt, so " +"sollten Sie die Lizenz micht ändern, es sei denn, Sie haben das geschützte " +"Material entfernt" -#: assessment/showtest.php:170 assessment/showtest.php:229 -#: assessment/showtest.php:264 +#: course/moddataset.php:903 msgid "" -"You are not yet a member of a group. Contact your instructor to be added to " -"a group." +"The original license REQUIRES that all derivative versions be kept under the " +"same license. You should only be changing the license if you are the creator " +"of this questions and all questions it was derived from" msgstr "" -"Sie sind noch nicht Mitglied einer Gruppe. Kontaktieren Sie ihren Dozenten, " -"um zu einer Gruppe hinzugefügt zu werden." +"Die ursprüngliche Lizenz ERFORDERT, dass alle abgeleiteten Versionen unter " +"der selben Lizenz stehen. Sie sollten die Lizenz nur ändern, wenn Sie der " +"Autor der Frage und aller davon abgeleiteten Versionen sind" -#: assessment/showtest.php:1344 assessment/showtest.php:1630 -#: assessment/showtest.php:1859 -msgid "You've already done this problem." -msgstr "Sie haben dieses Problem bereits behandelt." +#: course/modquestion.php:186 +msgid "on last possible attempt only" +msgstr "nur beim letzten Versuch" -#: assessment/displayq2.php:681 assessment/displayq2.php:4922 -#: assessment/displayq2.php:934 assessment/displayq2.php:6454 -#: assessment/displayq2.php:967 assessment/displayq2.php:6794 +#: course/modquestion.php:188 #, php-format -msgid "Your answer should be accurate to %d decimal places." -msgstr "Ihre Antwort sollte auf %d Nachkommastellen genau sein." +msgid "per missed attempt, after %d" +msgstr "pro Fehlversuch, nach %d" + +#: course/modquestion.php:191 +msgid "per missed attempt" +msgstr "pro Fehlversuch" -#: assessment/displayq2.php:4920 assessment/displayq2.php:6452 -#: assessment/displayq2.php:6792 -msgid "Your answer should be accurate to the nearest whole number." -msgstr "Ihre Antwort sollte akurat zur nächsten ganzen Zahl sein." +#: course/modquestion.php:205 +msgid "After last attempt" +msgstr "Nach dem letzten Versuch" -#: assessment/displayq2.php:697 assessment/displayq2.php:954 -#: assessment/displayq2.php:987 +#: course/modquestion.php:207 #, php-format -msgid "Your answer should have at least %d significant figures." -msgstr "Ihre Antwort sollte mindestens %d signifikante Figuren haben." +msgid "After %d attempts" +msgstr "Nach %d Versuchen" -#: assessment/displayq2.php:688 assessment/displayq2.php:941 -#: assessment/displayq2.php:974 +#: course/modquestion.php:209 course/modquestion2.php:214 +msgid "Never during assessment" +msgstr "Niemals während des Tests" + +#: course/modquestion.php:355 course/modquestion2.php:357 +#: course/modquestiongrid.php:268 course/modquestiongrid2.php:280 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: course/modquestion2.php:203 #, php-format -msgid "Your answer should have exactly %d significant figures." -msgstr "Ihre Antwort sollte genau %d signifikante Figuren haben." +msgid "%d%% after %d full-credit tries" +msgstr "%d%% nach %d Versuchen mit voller Punktzahl" -#: assessment/displayq2.php:1643 assessment/displayq2.php:1728 -#: assessment/displayq2.php:2218 assessment/displayq2.php:2327 -#: assessment/displayq2.php:2288 assessment/displayq2.php:2402 +#: course/modquestion2.php:210 +msgid "After last attempt on a version" +msgstr "Nach dem letzten Versuch einer Version" + +#: course/modquestion2.php:212 +msgid "After assessment version is submitted" +msgstr "Nachdem die Test-Version eingereicht ist" + +#: course/modquestion2.php:216 #, php-format -msgid "Your numbers should be accurate to %d decimal places." -msgstr "Ihre Zahlen sollten auf %d Nachkommastellen genau sein." +msgid "After %d tries" +msgstr "Nach %d Versuchen" -#: assessment/showtest.php:2528 assessment/showtest.php:3171 -#: assessment/showtest.php:3462 -msgid "Your scores have been recorded for this assessment." -msgstr "Ihre Punktzahlen wurden für diesen Test gespeichert." +#: course/modquestion2.php:221 course/modquestiongrid2.php:151 +#: course/modquestiongrid2.php:245 course/modquestiongrid2.php:331 +msgid "Hints" +msgstr "Hinweise" -#: assessment/showtest.php:1702 assessment/showtest.php:2210 -#: assessment/showtest.php:2452 -msgid "" -"Your time limit has expired. If you submit any questions, your assessment " -"will be marked overtime, and will have to be reviewed by your instructor." -msgstr "" -"Ihr Zeitlimit ist abgelaufen. Wenn Sie Fragen abschicken, wird ihr Test als " -"verspätet gekennzeichnet und muss vom Dozenten überprüft werden." +#: course/modquestion2.php:223 +msgid "Video/text buttons" +msgstr "Video/Text-Schaltfläche" -#: assessment/showtest.php:1700 assessment/showtest.php:2208 -#: assessment/showtest.php:2450 -msgid "" -"Your time limit has expired. If you try to submit any questions, your " -"submissions will be rejected." -msgstr "" -"Ihr Zeitlimit ist abgelaufen. Wenn Sie versuchen Fragen abzuschicken, " -"werden Ihren Einsendungen zurückgewiesen." +#: course/modquestion2.php:225 +msgid "Hints and Video/text buttons" +msgstr "Hinweise und Video/Text-Schaltflächen" -#: course/gradebook.php:1189 -msgid "[By Group]" -msgstr "[Nach Gruppe]" +#: course/modquestiongrid.php:329 course/modquestiongrid2.php:344 +msgid "Add Questions" +msgstr "Fragen hinzufügen" -#: course/gradebook.php:1187 course/gradebook.php:1192 -#: course/gradebook.php:1197 -msgid "[Isolate]" -msgstr "[Isolieren]" +#: course/modquestiongrid2.php:153 course/modquestiongrid2.php:246 +#: course/modquestiongrid2.php:332 +msgid "Video buttons" +msgstr "Video-Schaltflächen" -#: course/gradebook.php:1199 -msgid "[Scores]" -msgstr "[Punktzahlen]" +#: course/modquestiongrid2.php:155 course/modquestiongrid2.php:247 +#: course/modquestiongrid2.php:333 +msgid "Hints and Video buttons" +msgstr "Hinweise und Video-Schaltflächen" -#: course/gradebook.php:1186 course/gradebook.php:1196 -#: course/gradebook.php:1202 -msgid "[Settings]" -msgstr "[Einstellungen]" +#: course/modquestiongrid2.php:243 course/modquestiongrid2.php:329 +msgid "Use Default" +msgstr "Standard anwenden" -#: course/gradebook.php:709 course/gradebook.php:847 -msgid "[Show Feedback]" -msgstr "[Hinweise anzeigen]" +#: course/outcomemap.php:177 course/outcomemap.php:179 +msgid "Outcomes Map" +msgstr "Themenübersicht" -#: course/courseshowitems.php:97 course/courseshowitems.php:1620 -#: course/courseshowitems.php:98 course/courseshowitems.php:1621 -msgid "as Folder" -msgstr "als Ordner" +#: course/outcomemap.php:187 course/outcomereport.php:319 +msgid "Outcome" +msgstr "Thema" -#: course/courseshowitems.php:99 course/courseshowitems.php:100 -msgid "as TreeReader" -msgstr "als Baumansicht" +#: course/outcomemap.php:187 +msgid "Not Graded" +msgstr "Nicht bewertet" -#: assessment/interpret5.php:35 -msgid "bad question id in includeqtextfrom" +#: course/outcomemap.php:244 +msgid "" +"Key: L: Links, I: Inline Text, A: Assessments, F: Forums, O: Offline Grades" msgstr "" +"Erläuterung: L: Links, I: Inline-Text, A: Test, F: Forum, O: Offline-" +"Bewertung" -#: course/courseshowitems.php:248 course/courseshowitems.php:441 -#: course/courseshowitems.php:249 course/courseshowitems.php:442 -msgid "collapse" -msgstr "einklappen" +#: course/outcomereport.php:87 +msgid "Show for scores: " +msgstr "Zeige Punkte: " -#: assessment/displayq2.php:1226 assessment/displayq2.php:1234 -#: assessment/displayq2.php:1595 assessment/displayq2.php:1607 -#: assessment/displayq2.php:1630 assessment/displayq2.php:1642 -msgid "each element of the matrix" -msgstr "jedes Element der Matrix" +#: course/outcomereport.php:88 +msgid "Past Due scores" +msgstr "Punkte nach Fälligkeit" -#: assessment/displayq2.php:1102 assessment/displayq2.php:1726 -#: assessment/displayq2.php:1445 assessment/displayq2.php:1448 -#: assessment/displayq2.php:2325 assessment/displayq2.php:1479 -#: assessment/displayq2.php:1482 assessment/displayq2.php:2400 -msgid "each value" -msgstr "jeder Wert" +#: course/outcomereport.php:89 +msgid "Past Due and Attempted scores" +msgstr "Punkte nach Fälligkeit und für Versuche" -#: assessment/interpret5.php:184 -msgid "else used without leading if statement" -msgstr "else wird ohne vorangehende if Anweisung verwendet" +#: course/outcomereport.php:112 course/outcomereport.php:198 +msgid "Unlock headers" +msgstr "Header entsperren" -#: assessment/displayq2.php:4756 assessment/displayq2.php:4763 -#: assessment/displayq2.php:6274 assessment/displayq2.php:6284 -#: assessment/displayq2.php:6613 assessment/displayq2.php:6623 -msgid "error - invalid form" -msgstr "Fehler - ungültige Form" +#: course/outcomereport.php:115 course/outcomereport.php:117 +#: course/outcomereport.php:200 +msgid "Lock headers" +msgstr "Header sperren" -#: assessment/displayq2.php:4721 assessment/displayq2.php:6229 -#: assessment/displayq2.php:6567 -msgid "error - more than 1 i in expression" -msgstr "Fehler - mehr als ein i im Ausdruck" +#: course/outcomereport.php:188 course/outcomereport.php:189 +#: course/outcomereport.php:242 course/outcomereport.php:311 +msgid "Outcomes Report" +msgstr "Bericht nach Themen" + +#: course/outcomereport.php:192 +msgid "No outcomes are defined in this course." +msgstr "Für diesen Kurs sind keine Themen definiert." -#: assessment/interpret5.php:136 +#: course/outcomereport.php:238 msgid "" -"error with for code.. must be \"for ($var=a..b) {todo}\" where a and b are " -"whole numbers or variables only" +"Note: The outcome performance in each gradebook category is weighted based " +"on gradebook weights to produce these overview scores" msgstr "" -"Fehler im for-Code.. muss sein \"for ($var=a..b) {todo}\" wobei a und b nur " -"ganze Zahlen oder Variablen sein dürfen" +"Hinweis: Die Leistungen nach Thema sind gewichtet entsprechend der " +"Gewichtung in der Notenübersicht, die für diese Punkteübersicht verwendet " +"wurden" -#: course/courseshowitems.php:248 course/courseshowitems.php:441 -#: course/courseshowitems.php:249 course/courseshowitems.php:442 -msgid "expand" -msgstr "ausklappen" +#: course/outcomereport.php:242 +msgid "Outcome Detail" +msgstr "Thema-Details" -#: course/gradebook.php:1052 -msgid "for selected assessments" -msgstr "für ausgewählte Tests" +#: course/outcomereport.php:246 +msgid "Outcomes Detail on Outcome: " +msgstr "Themen-Details zum Thema: " -#: course/courseshowitems.php:611 course/courseshowitems.php:612 -#: assessment/showtest.php:994 assessment/showtest.php:1243 -#: assessment/showtest.php:1433 -msgid "hour" -msgstr "Stunde" +#: course/outcomereport.php:313 +msgid "Outcomes Detail" +msgstr "Themen-Details" -#: assessment/showtest.php:968 assessment/showtest.php:1207 -#: assessment/showtest.php:1397 -msgid "hours" -msgstr "Stunden" +#: course/outcomereport.php:317 +msgid "Outcomes Student Detail for: " +msgstr "Thematische Studierenden-Information: " -#: assessment/interpret5.php:190 -msgid "line of type $a=b if $c==0 where $d==0 is invalid" -msgstr "Zeile vom Typ $a=b if $c==0 where $d==0 ist ungültig " +#: course/printlayoutword.php:56 course/printlayoutword.php:300 +msgid "Generate Word Version" +msgstr "Word-Version erzeugen" -#: course/courseshowitems.php:613 course/courseshowitems.php:620 -#: course/courseshowitems.php:614 course/courseshowitems.php:621 -#: assessment/showtest.php:996 assessment/showtest.php:1003 -#: drillassess.php:224 assessment/showtest.php:1245 -#: assessment/showtest.php:1252 assessment/showtest.php:1435 -#: assessment/showtest.php:1442 -msgid "minute" -msgstr "Minute" +#: course/printlayoutword.php:301 +msgid "Assessment is prepared, and ready for conversion" +msgstr "Der Test ist vorbereitet und bereit zur Konvertierung" -#: assessment/showtest.php:970 assessment/showtest.php:2538 -#: drillassess.php:224 assessment/showtest.php:1209 -#: assessment/showtest.php:3181 assessment/showtest.php:1399 -#: assessment/showtest.php:3472 -msgid "minutes" -msgstr "Minuten" +#: course/printlayoutword.php:305 +msgid "Darken graph grid lines" +msgstr "Gitternetz für Graph dunkel darstellen" -#: assessment/interpret5.php:172 -msgid "need condition for elseif" -msgstr "benötige Bedingung für elseif" +#: course/printlayoutword.php:306 +msgid "Double image sizes" +msgstr "Doppelte Bildgröße" -#: assessment/interpret5.php:162 -msgid "need curlys for else statement" -msgstr "benötige Klammern für else-Ausdruck" +#: course/printlayoutword.php:308 +msgid "Convert to Word" +msgstr "In Word-Format konvertieren" -#: assessment/interpret5.php:146 -msgid "need curlys for if statement at beginning of line" -msgstr "benötige Klammern für if-Ausdruck am Anfang der Zeile" +#: course/printlayoutword.php:309 +msgid "Change print settings" +msgstr "Druck-Einstellungen ändern" -#: assessment/showtest.php:1565 assessment/showtest.php:1871 -#: assessment/showtest.php:2107 -msgid "or try the problem again" -msgstr "oder versuchen Sie das Problem erneut" +#: course/redeemlatepass.php:255 +msgid "" +"Reminder: You have already started this assessment, and it has a time " +"limit. Using a LatePass does not extend or pause the time limit, " +"only the due date." +msgstr "" +"Bechten Sie: Sie haben diesen Test bereit begonnen. Der test hat ein " +"Zeitlimit. Eine verspätete Einreichung ändert oder unterbricht die zur " +"Verfügung stehende Zeit nicht, nur die Frist zur Einreichung." -#: assessment/showtest.php:799 assessment/showtest.php:1022 -#: assessment/showtest.php:1170 -msgid "password incorrect" -msgstr "Passwort inkorrekt" +#: course/redeemlatepass.php:257 +msgid "" +"Your time limit has expired on this assessment. Using a LatePass does " +"not extend the time limit, so there is no reason to use a LatePass." +msgstr "" +"Ihr Zeitlimit für diesen Test ist abgelaufen. Ein verspätetes Einreichen " +"verlängert dieses Zeitlimit nicht. Es gibt also keinen Grund für ein " +"verspätetes Einreichen." -#: course/gradebook.php:744 course/gradebook.php:1126 -#: course/gradebook.php:1144 course/gradebook.php:1175 -#: course/gradebook.php:1220 course/gradebook.php:1231 -msgid "pts" -msgstr "Pkt." +#: course/redeemlatepass.php:259 +msgid "" +"You have used all your attempts on this question. Using a LatePass does " +"not add another attempt, so there is no reason to use a LatePass." +msgstr "" +"Sie haben all Ihre möglichen Versuche verbraucht. Verspätetes Einreichen " +"zählt deshalb nicht, so dass es keinen Grund gibt,es noch einmal zu " +"versuchen oder den Test verspätet einzureichen." -#: assessment/showtest.php:1030 assessment/showtest.php:1279 -#: assessment/showtest.php:1475 -msgid "remaining" -msgstr "verbleibend" +#: course/report-commonstu.php:60 +msgid "Activity Report - Sort Students by Activity" +msgstr "Aktivitäts-Bericht - sortiere Studierende nach Aktivität" -#: course/courseshowitems.php:615 course/courseshowitems.php:622 -#: course/courseshowitems.php:616 course/courseshowitems.php:623 -#: assessment/showtest.php:998 assessment/showtest.php:1005 -#: drillassess.php:227 assessment/showtest.php:1247 -#: assessment/showtest.php:1254 assessment/showtest.php:1437 -#: assessment/showtest.php:1444 -msgid "second" -msgstr "Sekunde" +#: course/report-weeklylab.php:49 +msgid "You need to log in as a teacher to access this page\n" +msgstr "Sie müssen sich als Lehrer anmelden, um auf diese Seite zuzugreifen\n" -#: assessment/showtest.php:1008 assessment/showtest.php:1257 -#: assessment/showtest.php:1447 -msgid "second(s)" -msgstr "Sekunde(n)" +#: course/savequickreorder.php:26 +msgid "" +"Error: Items have changed in the course, perhaps in another window, since " +"this page was loaded. Refresh the page to load changes and try again." +msgstr "" +"Fehler: Kurselemente wurden seit dem Laden der Seite geändert, vielleicht in " +"einem anderen Fenster. Aktualisieren Sie die Seite um die Änderungen zuladen " +"und versuchen Sie es erneut." -#: assessment/showtest.php:2541 drillassess.php:227 -#: assessment/showtest.php:3184 assessment/showtest.php:3475 -msgid "seconds" -msgstr "Sekunden" +#: course/savequickreorder.php:29 +msgid "Error: Some item data was not sent correctly. Please try again." +msgstr "" +"Fehler: einige Daten von Kurselementen wurden nicht korrekt gesetzt. Bitte " +"versuchen Sie es noch einmal." -#: assessment/mathphp2.php:430 assessment/interpret5.php:519 -msgid "unmatched parens/brackets - likely will cause an error" -msgstr "unpaarige Klammern - wird voraussichtlich einen Fehler versuchen" +#: course/sendmsgmodal.php:61 msgs/msglist.php:239 +msgid "Msg from:" +msgstr "Nachricht von:" -#: course/courseshowitems.php:674 course/courseshowitems.php:675 -msgid "until" -msgstr "bis" +#: course/sendmsgmodal.php:65 +msgid "Message sent" +msgstr "Nachricht gesendet" -#: assessment/displayq2.php:1105 assessment/displayq2.php:1451 -#: assessment/displayq2.php:1485 -msgid "your answer" -msgstr "Ihre Antwort" +#: course/sendmsgmodal.php:87 +msgid "Email sent" +msgstr "E-Mail gesendet" -#: embedq.php:69 -msgid "Score on last question:" -msgstr "Punkte für letzte Frage:" +#: course/sendmsgmodal.php:90 +msgid "Unable to send: Invalid email address" +msgstr "Kann Nachricht nicht senden: Ungültige Mail-Adresse" -#: embedq.php:75 drillassess.php:356 -msgid "Displaying last question with solution" -msgstr "Stelle letzte Frage mit Lösung dar" +#: course/sendmsgmodal.php:197 +msgid "" +"Mark question as broken. Only do this if there is a serious issue in the " +"display or scoring of the question." +msgstr "" +"Die Frage als defekt markieren. Tun Sie das nur, wenn es bei dieser Frage " +"erhebliche Probleme bei der Anzeige oder Bewertung gibt." -#: embedq.php:75 drillassess.php:356 drillassess.php:368 -msgid "New Question" -msgstr "Neue Frage" +#: course/sendmsgmodal.php:198 +msgid "" +"If you are reporting a typo, suggestion for a change, or an issue that only " +"rarely occurs, please leave this un-checked." +msgstr "" +"Lassen Sie dies unmarkiert, wenn Sie einen Schreibfehler melden, einen " +"Verbesserungsvorschlag machen oder ein Problem melden, das nur selten " +"auftritt." -#: embedq.php:83 drillassess.php:370 -msgid "Check Answer" -msgstr "Antwort prüfen" +#: course/sendmsgmodal.php:204 +msgid "Send Email" +msgstr "E-Mail senden" + +#: course/showcalendar.php:154 +msgid "Disable Drag-and-drop Editing" +msgstr "Äderung durch Drag-and-drop ausschalten" + +#: course/showcalendar.php:156 +msgid "Enable Drag-and-drop Editing" +msgstr "Änderung durch Drag-and-drop einschalten" + +#: course/showcalendar.php:162 +msgid "" +"Drag-and-drop events to change dates. Note that time of day is not changed - " +"use Mass Change Dates for that." +msgstr "" +"Das Datum mit Drag-and-drop ändern. Beachten Sie, dass die eingestellte Zeit " +"nicht geändert wird - benutzen Sie dafür die Massenänderung des Datums." + +#: course/showcalendar.php:163 +msgid "Item Legend:" +msgstr "Legende:" + +#: course/showcalendar.php:163 +msgid "Available After date" +msgstr "Verfügbar nach" + +#: course/showcalendar.php:164 +msgid "Available Until (Due) date" +msgstr "Verfügbar bis zum" + +#: course/showcalendar.php:165 +msgid "Assessment Review date" +msgstr "Termin für Überprüfungen" + +#: course/showcalendar.php:166 +msgid "Forum post-by date" +msgstr "Forum-Beiträge - nach Datum" -#: embedq.php:129 +#: course/showcalendar.php:167 +msgid "Forum reply-by date" +msgstr "Forum-Antworten - nach Datum" + +#: course/showfeedback.php:32 course/showfeedback.php:67 +#: course/showfeedback.php:123 #, php-format -msgid "%1$s out of %2$s" -msgstr "%1$s von %2$s" +msgid "Feedback on %s" +msgstr "Rückmeldung zu %s" -#: embedq.php:164 +#: course/showfeedbackall.php:81 #, php-format -msgid "%1$s out of %2$s (parts: %3$s)" -msgstr "%1$s von %2$s (Teile: %3$s)" +msgid "All Feedback For %s" +msgstr "Alle Rückmeldungen für %s" + +#: course/showfeedbackall.php:103 +msgid "(Score: %g/%g)" +msgstr "(Punkte: %g/%g)" + +#: course/testquestion.php:305 +msgid "Contact support" +msgstr "Nachricht an Support" + +#: course/treereader.php:378 +msgid "Started" +msgstr "Begonnen" + +#: course/treereader.php:531 +msgid "Content navigation" +msgstr "Inhalts-Navigation" + +#: course/viewforumgrade.php:84 javascript/gb-scoretools.js:80 +#: javascript/livepoll.js:644 javascript/nested1.js:370 +#: javascript/nestedjq.js:390 +msgid "Saved" +msgstr "Gespeichert" #: diag/index.php:28 msgid "Available Diagnostics" msgstr "Verfügbare Diagnose-Tests" -#: diag/index.php:31 +#: diag/index.php:32 msgid "No diagnostics are available through this page at this time" msgstr "Momentan sind auf dieser Seite keine Diagnose-Tests verfügbar" -#: diag/index.php:57 +#: diag/index.php:60 diag/index.php:65 +#, php-format +msgid "Select your %s" +msgstr "%s auswählen" + +#: diag/index.php:69 msgid "This diagnostic is not currently available to be taken" msgstr "Dieser Diagnose-Tests kann momentan nicht durchgeführt werden" -#: diag/index.php:98 +#: diag/index.php:109 msgid "Please enter your ID, first name, and lastname." -msgstr "Bitte geben Sie ID, Vor- und Nachnamen ein" +msgstr "Bitte geben Sie ID, Vor- und Nachnamen ein." -#: diag/index.php:98 diag/index.php:134 diag/index.php:139 diag/index.php:197 +#: diag/index.php:109 diag/index.php:148 diag/index.php:153 diag/index.php:214 msgid "Try Again" msgstr "Erneut versuchen" -#: diag/index.php:125 +#: diag/index.php:137 msgid "Your ID is not valid. It should contain" -msgstr "Ihre ID ist ungültig. Sie sollte enthalten:" +msgstr "Ihre ID ist ungültig. Sie sollte enthalten" -#: diag/index.php:130 +#: diag/index.php:142 msgid "letters or numbers" msgstr "Buchstaben und/oder Zahlen" -#: diag/index.php:132 +#: diag/index.php:144 msgid "numbers" msgstr "Zahlen" -#: diag/index.php:139 +#: diag/index.php:146 +msgid "an email address" +msgstr "eine e-Mail-Adresse" + +#: diag/index.php:153 #, php-format -msgid "Please select a %1$s and %2$s." +msgid "Please make selections for \"%1$s\" and \"%2$s\"." msgstr "Bitte wählen Sie %1$s und %2$s aus." -#: diag/index.php:197 +#: diag/index.php:214 msgid "Error, password incorrect or expired." msgstr "Fehler: Passwort inkorrekt oder abgelaufen." -#: diag/index.php:218 +#: diag/index.php:249 msgid "You've already taken this diagnostic." msgstr "Sie haben diesen Diagnose-Test bereits durchgeführt." -#: diag/index.php:224 +#: diag/index.php:254 msgid "Your window to complete this diagnostic has expired." msgstr "Ihr Zeitfenster zum Abschließen dieses Diagnose-Tests ist abgelaufen." -#: diag/index.php:322 +#: diag/index.php:360 msgid "Enter First Name:" msgstr "Vorname:" -#: diag/index.php:323 +#: diag/index.php:361 msgid "Enter Last Name:" msgstr "Nachname:" -#: diag/index.php:352 diag/index.php:362 -#, php-format -msgid "Select your %s" -msgstr "%s auswählen" - -#: diag/index.php:354 -#, php-format -msgid "Select a %s" -msgstr "%s auswählen" - -#: diag/index.php:364 -#, php-format -msgid "Select a %s first" -msgstr "Zuerst %s auswählen" - -#: diag/index.php:369 +#: diag/index.php:413 msgid "" "This test can only be accessed from this location with an access password" msgstr "" "Von diesem Ort aus kann nur mit einem Passwort auf den Test zugegriffen " "werden" -#: diag/index.php:370 +#: diag/index.php:414 msgid "Access password:" msgstr "Passwort:" -#: diag/index.php:381 +#: diag/index.php:416 +msgid "Time limit (if timed):" +msgstr "Zeitlimit (wenn gestzt):" + +#: diag/index.php:417 +msgid "Standard" +msgstr "Standard" + +#: diag/index.php:417 +msgid "1.5x standard" +msgstr "1,5x Standard" + +#: diag/index.php:418 +msgid "2x standard" +msgstr "2x Standard" + +#: diag/index.php:431 msgid "Access Diagnostic" msgstr "Test starten" -#: diag/index.php:388 +#: diag/index.php:438 msgid "" "No access code is required for this diagnostic. However, if your testing " "window has expired, a proctor can enter a password to allow reaccess to this " @@ -3296,896 +6713,1478 @@ msgstr "" "für den Test allerdings abgelaufen, kann der Zuständige ein Passwort " "eingeben, um erneut darauf zuzugreifen." -#: diag/index.php:389 +#: diag/index.php:439 msgid "Override password" msgstr "Passwort überschreiben" -#: drillassess.php:9 -msgid "You don't have authority to access this item" -msgstr "Sie haben keine Zugriffsrechte auf dieses Objekt" +#: embedq.php:184 +msgid "Score on last question:" +msgstr "Punkte für letzte Frage:" -#: drillassess.php:13 -msgid "Invalid course id or drill assessment id" -msgstr "Ungültige Kurs oder Trainings-Test ID " +#: forms.php:100 +msgid "" +"To ensure the security of your account, we are requiring a password change. " +"Please select a new password." +msgstr "" +"Zur Sicherung Ihrer Kennung ist ein Passwortwechsel erforderlich. Bitte " +"wählen Sie ein neues Passwort." -#: drillassess.php:17 drillassess.php:213 drillassess.php:215 -msgid "Drill Assessment" -msgstr "Trainings-Test" +#: forms.php:150 +msgid "Enable 2-factor authentication for admin actions" +msgstr "2-Faktor-Authentifizierung für Administrator-Aktionen aktivieren" -#: drillassess.php:23 drillassess.php:52 drillassess.php:60 drillassess.php:95 -#: drillassess.php:119 drillassess.php:200 drillassess.php:204 -#: drillassess.php:469 assessment/showtest.php:48 assessment/showtest.php:61 -#: assessment/showtest.php:65 assessment/showtest.php:102 -#: assessment/showtest.php:110 assessment/showtest.php:114 -#: assessment/showtest.php:129 assessment/showtest.php:179 -#: assessment/showtest.php:189 assessment/showtest.php:223 -#: assessment/showtest.php:233 assessment/showtest.php:241 -#: assessment/showtest.php:264 assessment/showtest.php:273 -#: assessment/showtest.php:296 assessment/showtest.php:325 -#: assessment/showtest.php:349 assessment/showtest.php:358 -#: assessment/showtest.php:361 assessment/showtest.php:365 -#: assessment/showtest.php:383 assessment/showtest.php:407 -#: assessment/showtest.php:463 assessment/showtest.php:467 -#: assessment/showtest.php:475 assessment/showtest.php:480 -#: assessment/showtest.php:515 assessment/showtest.php:519 -#: assessment/showtest.php:536 assessment/showtest.php:574 -#: assessment/showtest.php:744 assessment/showtest.php:752 -#: assessment/showtest.php:850 assessment/showtest.php:884 -#: assessment/showtest.php:951 assessment/showtest.php:962 -#: assessment/showtest.php:971 assessment/showtest.php:975 -#: assessment/showtest.php:1005 assessment/showtest.php:1016 -#: assessment/showtest.php:1030 assessment/showtest.php:1038 -#: assessment/showtest.php:1053 assessment/showtest.php:1059 -#: assessment/showtest.php:1063 assessment/showtest.php:1072 -#: assessment/showtest.php:1080 assessment/showtest.php:1096 -#: assessment/showtest.php:1106 assessment/showtest.php:1116 -#: assessment/showtest.php:1169 assessment/showtest.php:2048 -#: assessment/showtest.php:2092 assessment/showtest.php:2148 -#: assessment/showtest.php:2225 assessment/showtest.php:2648 -#: assessment/showtest.php:3094 -msgid "Query failed" -msgstr "Anfrage fehlgeschlagen" - -#: drillassess.php:25 -msgid "Invalid drill assessment id" -msgstr "Ungültige Trainings-Test ID" +#: forms.php:162 +msgid "Disable" +msgstr "Ausschalten" -#: drillassess.php:97 -#, php-format -msgid "Current: %d question(s) correct" -msgstr "Zurzeit: %d Frage(n) korrekt" +#: forms.php:171 +msgid "Push notifications:" +msgstr "Push-Benachrichtigungen:" -#: drillassess.php:99 -#, php-format -msgid "Current: %d question(s) attempted" -msgstr "Zurzeit: %d Frage(n) versucht" +#: forms.php:373 +msgid "Really Unenroll" +msgstr "Wirklich austragen" -#: drillassess.php:101 -#, php-format -msgid "Current: %d question(s) correct out of %d attempt(s)" -msgstr "Zurzeit: %d Frage(n) korrekt von %d Versuch(en)" +#: forums/flaggedthreads.php:59 forums/flaggedthreads.php:61 +#: forums/flaggedthreads.php:62 forums/forums.php:182 +msgid "Flagged Forum Posts" +msgstr "Markierte Forenbeiträge" -#: drillassess.php:103 -#, php-format -msgid "Current: %d question streak (correct in a row) out of %d attempt(s)" -msgstr "Zurzeit: %d korrekte Fragen in Folge von %d Versuch(en)" +#: forums/flaggedthreads.php:63 +msgid "Unflag All" +msgstr "Alles Markierungen löschen" -#: drillassess.php:137 -#, php-format -msgid "%d hours, " -msgstr "%d Stunden, " +#: forums/forums.php:181 forums/newthreads.php:94 +msgid "New Forum Posts" +msgstr "Neue Forenbeiträge" + +#: forums/listlikes.php:24 forums/posts.php:629 +msgid "Post Likes" +msgstr "Likes für Beitrag" + +#: forums/listlikes.php:30 +msgid "No post likes" +msgstr "Keine Likes für Beitrag" + +#: forums/listviews.php:28 forums/thread.php:761 +msgid "Thread Views" +msgstr "Ansicht nach Themen" + +#: forums/listviews.php:34 +msgid "No thread views" +msgstr "Thema ungelesen" + +#: forums/listviews.php:36 +msgid "Last Viewed" +msgstr "Zuletzt angesehen" + +#: forums/listviews.php:44 +msgid "Note: Only the most recent thread view per person is shown" +msgstr "" +"Hinweis: Es wird pro Person nur die letzte Ansicht des Themas angezeigt" + +#: forums/newthreads.php:103 +msgid "Mark Selected as Read" +msgstr "Markiere ausgewählte als Gelesen" + +#: forums/posthandler.php:275 +msgid "New forum post notification" +msgstr "Neuer Forenbeitrag" + +#: forums/posthandler.php:506 forums/thread.php:400 +msgid "Posting Instructions" +msgstr "Hinweise zum Verfassen von Beiträgen" + +#: forums/posthandler.php:510 forums/thread.php:405 +msgid "Reply Instructions" +msgstr "Hinweise zum Beantworten von Beiträgen" + +#: forums/posthandler.php:536 +msgid "Description" +msgstr "Beschreibung" + +#: forums/posts.php:244 forums/posts.php:246 +msgid "Re" +msgstr "Wg" + +#: forums/posts.php:440 +msgid "Post" +msgstr "Beitrag" + +#: forums/posts.php:464 msgs/msghistory.php:149 +msgid "Show All" +msgstr "Alle anzeigen" + +#: forums/posts.php:465 msgs/msghistory.php:150 +msgid "Hide All" +msgstr "Alle ausblenden" + +#: forums/posts.php:550 +msgid "Posted by" +msgstr "Verfasst von" + +#: forums/postsbyname.php:257 +msgid "Hide Posts" +msgstr "Beiträge ausblenden" + +#: forums/postsbyname.php:258 +msgid "Hide Replies" +msgstr "Antworten ausblenden" + +#: forums/postsbyname.php:259 forums/thread.php:619 +msgid "Mark all Read" +msgstr "Alle als Gelesen markieren" + +#: forums/thread.php:289 +msgid "" +"This search is blocked. In this forum, you must post your own thread before " +"you can read those posted by others." +msgstr "" +"Diese Suche ist blockiert. In diesem Forum müssen Sie erst einen Beitrag " +"verfassen, ehe Sie die Beiträge von anderen lesen können." + +#: forums/thread.php:413 +msgid "View Forum Description" +msgstr "Beschreibung des Forums anzeigen" + +#: forums/thread.php:419 +msgid "View Post and Reply Instructions" +msgstr "Hinweise zum Verfassen von Beiträgen und zum Antworten anzeigen" + +#: forums/thread.php:421 +msgid "View Post Instructions" +msgstr "Hinweise für Beiträge ansehen" + +#: forums/thread.php:423 +msgid "View Reply Instructions" +msgstr "Hinweise für Antworten ansehen" + +#: forums/thread.php:574 +msgid "Showing posts for group: " +msgstr "Beiträge für die Gruppe: " + +#: forums/thread.php:575 +msgid "Show group members" +msgstr "Gruppenmitglieder anzeigen" + +#: forums/thread.php:581 forums/thread.php:776 +msgid "Add New Thread" +msgstr "Neues Thema" + +#: gethomemenu.php:50 msgs/msglist.php:349 +msgid "Teaching" +msgstr "Lehrer" + +#: gethomemenu.php:50 +msgid "Taking" +msgstr "Teilnahme" + +#: gethomemenu.php:50 msgs/msglist.php:350 +msgid "Tutoring" +msgstr "Betreuung" + +#: gethomemenu.php:117 msgs/msglist.php:355 msgs/msglist.php:761 +#: msgs/sentlist.php:200 +msgid "Inactive: " +msgstr "Inaktiv: " + +#: includes/calendardata.php:231 +msgid "Drill Due: " +msgstr "Training fällig: " + +#: includes/calendardata.php:247 +msgid "Posts Due: " +msgstr "Überfällige Beiträge " + +#: includes/calendardata.php:250 +msgid "Replies Due: " +msgstr "Antworten fällig bis zum %s. " + +#: includes/calendardisp.php:86 +msgid "Number of weeks to display" +msgstr "Wochen anzeigen" + +#: includes/calendardisp.php:93 +msgid "Hide visual calendar and display events list" +msgstr "Ereignisliste statt Kalender anzeigen" -#: drillassess.php:142 -#, php-format -msgid "%d minutes, " -msgstr "%d Minuten, " +#: includes/calendardisp.php:94 +msgid "Events List" +msgstr "Ereignisliste" -#: drillassess.php:145 +#: includes/calendardisp.php:96 #, php-format -msgid "%d seconds." -msgstr "%d Sekunden." +msgid "Back %d weeks" +msgstr "%d Wochen zurück" -#: drillassess.php:159 +#: includes/calendardisp.php:104 #, php-format -msgid "%d questions completed " -msgstr "%d Fragen komplett " +msgid "Forward %d weeks" +msgstr "%d Wochen vorwärts" -#: drillassess.php:161 -#, php-format -msgid "%d questions answered correctly " -msgstr "%d Fragen korrekt beantwortet " +#: includes/copyiteminc.php:272 +msgid "Group set for" +msgstr "Gruppe für" -#: drillassess.php:163 -#, php-format -msgid "%d question streak completed " -msgstr "%d Fragen in Folge korrekt beantwortet " +#: includes/coursecopylist.php:131 +msgid "Group Templates" +msgstr "Gruppen-Template" -#: drillassess.php:174 -#, php-format -msgid "%d questions answered correctly in %d seconds" -msgstr "%d Fragen korrekt beantwortet in %d Sekunden" +#: includes/email.php:96 +msgid "This is an automated message. Do not respond to this email." +msgstr "" +"Dies ist eine automatisch erzeugte Nachricht. Antworten Sie nicht auf diese " +"e-Mail." -#: drillassess.php:184 -#, php-format -msgid "out of %d questions attempted" -msgstr "von %d Fragen versucht" +#: includes/email.php:97 +msgid "You've received a new message" +msgstr "Sie haben eine neue Nachricht" -#: drillassess.php:194 -#, php-format -msgid "in %s" -msgstr "in %s" +#: includes/email.php:98 +msgid "From:" +msgstr "Von:" -#: drillassess.php:218 -msgid "Goal: " -msgstr "Ziel: " +#: includes/email.php:99 +msgid "Course:" +msgstr "Kurs:" -#: drillassess.php:222 -msgid "Answer as many questions correctly as possible in " -msgstr "Beantworte so viele Fragen wie möglich in " +#: includes/email.php:100 +msgid "Subject:" +msgstr "Betreff:" -#: drillassess.php:231 -#, php-format -msgid "Attempt %d questions" -msgstr "Versuche %d Fragen" +#: includes/email.php:101 +msgid "View Message" +msgstr "Nachricht ansehen" -#: drillassess.php:233 +#: includes/email.php:102 #, php-format -msgid "Get %d questions correct" -msgstr "Beantworte %d Fragen korrekt" +msgid "" +"If you do not wish to receive email notification of new messages, please <" +"%s>click here to change your user preferences" +msgstr "" +"Wenn Sie nicht mehr über neue Mails benachrichtigt werden möchten, so <%s> " +"klicken Sie hier um Ihre Einstellungen zu ändern" -#: drillassess.php:235 -#, php-format -msgid "Get a streak of %d questions correct in a row" -msgstr "Beantworte %d Fragen in Folge korrekt" +#: includes/email.php:105 util/runcoursecleanup.php:133 +msgid "New message notification" +msgstr "Neue Nachricht" -#: drillassess.php:238 -msgid "in the shortest time possible" -msgstr "in der kürzest möglichen Zeit" +#: includes/userprefs.php:14 +msgid "MathJax - best display and best for screenreaders" +msgstr "MathJax - beste Darstellung, am besten für Screenreader" -#: drillassess.php:247 -msgid "Drills" -msgstr "Trainings" +#: includes/userprefs.php:15 +msgid "Katex - faster display" +msgstr "Textbasierte Darstellung verwenden" -#: drillassess.php:262 -msgid "Last score" -msgstr "Letzte Bewertung" +#: includes/userprefs.php:16 +msgid "Image-based display" +msgstr "Bildbasierte Darstellung erzwingen" -#: drillassess.php:267 drillassess.php:269 -msgid "Personal best" -msgstr "Persönlicher Rekord" +#: includes/userprefs.php:17 +msgid "Calculator-style linear display, like x^2/3" +msgstr "Lineare Darstellung wie für Taschenrechner, z.B. x^2/3" -#: drillassess.php:274 -msgid "Class best" -msgstr "Klassenrekord" +#: includes/userprefs.php:19 +msgid "SVG in browser - highest quality" +msgstr "SVG im Browser - höchste Qualität" -#: drillassess.php:287 -msgid "Select a drill to begin" -msgstr "Wähle eine Trainingsmöglichkeit" +#: includes/userprefs.php:20 +msgid "Imaged-based - visual alternative" +msgstr "Darstellung mit Bildern - wenn es sonst Probleme gibt" -#: drillassess.php:291 -msgid "Score on last question" -msgstr "Bewertung der letzten Frage" +#: includes/userprefs.php:21 +msgid "Text alternatives - tables or charts in place of graphs" +msgstr "Darstellung als Text - Tabellen oder Diagramme statt Graphen" -#: drillassess.php:296 -msgid "Drill Complete" -msgstr "Training vollständig" +#: includes/userprefs.php:23 +msgid "Mouse-based visual drawing entry" +msgstr "Eingabe mit Maus-Zeichnung" -#: drillassess.php:299 -msgid "Congrats! That's a new personal best!" -msgstr "Glückwunsch! Dies ist ein neuer persönlicher Rekord!" +#: includes/userprefs.php:24 +msgid "Keyboard and text-based drawing entry alternative" +msgstr "Alternatives Zeichnen mit Tastatur und Text" -#: drillassess.php:302 -msgid "Congrats! That's a new class best!" -msgstr "Glückwunsch! Dies ist ein neuer Klassenrekord." +#: includes/userprefs.php:26 +msgid "Rich text editor with formatting buttons" +msgstr "Rich Text Editor mit Buttons zur Formatierung" -#: drillassess.php:340 -msgid "Time" -msgstr "Zeit" +#: includes/userprefs.php:27 +msgid "Plain text entry" +msgstr "Einfache Texteingabe" -#: drillassess.php:408 assessment/showtest.php:2981 -#: assessment/showtest.php:3269 -msgid "correct" -msgstr "korrekt" +#: includes/userprefs.php:29 +msgid "Equation editor with entry palette" +msgstr "Formel-Editor, einfache Version" -#: drillassess.php:410 -msgid "attempts" -msgstr "Versuche" +#: includes/userprefs.php:30 +msgid "Calculator-style text entry" +msgstr "Text-Eingabe mit Taschenrechner" -#: drillassess.php:464 -#, php-format -msgid "%s out of %d" -msgstr "%s von %d" +#: includes/userprefs.php:32 +msgid "Use timezone as reported by the browser" +msgstr "Verwende die Zeitzone des Browsers" -#: drillassess.php:505 -#, php-format -msgid "%s out of %d (parts: %s)" -msgstr "%s von %d (Teile: %s)" +#: includes/userprefs.php:33 +msgid "Use a specific timezone for this session only" +msgstr "Verwende für diese Sitzung eine spezielle Zeitzone" -#: drillassess.php:240 -msgid "in the fewest total attempts" -msgstr "mit möglichst wenig Versuchen" +#: includes/userprefs.php:34 +msgid "Always show times based on a specific timezone" +msgstr "Zeige Zeiten immer in einer speziellen Zeitzone an" -#: assessment/showtest.php:22 -msgid "" -"You are not authorized to view this page. If you are trying to reaccess an " -"assessment you've already started, access it from the course page" -msgstr "" -"Sie sind nicht berechtigt, auf diese Seite zuzugreifen. Wenn Sie versuchen, " -"erneut auf einen Test zuzugreifen, den Sie bereits gestartet haben, greifen " -"Sie über die Kursseite darauf zu" +#: includes/userprefs.php:36 +msgid "Use instructor chosen course theme" +msgstr "Verwende den Kurs-Stil, den der Dozent gewählt hat" -#: assessment/showtest.php:133 assessment/showtest.php:989 -#: assessment/showtest.php:156 assessment/showtest.php:1129 -msgid "" -"If you view this scored assignment, you will not be able to use a LatePass " -"on it" +#: includes/userprefs.php:42 +msgid "High contrast, dark on light" +msgstr "Hoher Kontrast, dunkel auf hell" + +#: includes/userprefs.php:43 +msgid "High contrast, light on dark" +msgstr "Hoher Kontrast, hell auf dunkel" + +#: includes/userprefs.php:46 +msgid "Show live preview of answer entry as I type" +msgstr "Zeige Formeln während der Eingabe als Vorschau" + +#: includes/userprefs.php:47 +msgid "Only show a preview when I click the Preview button" msgstr "" -"Wenn Sie diesen bewerteten Test ansehen, können Sie ihn nicht mehr verspätet " -"einreichen" +"Zeige eine Vorschau der Formel nur, wenn ich den \"Vorschau\"-Button drücke" -#: assessment/showtest.php:397 assessment/showtest.php:482 -msgid "Error. Access assessment from course page" -msgstr "Fehler. Greifen Sie auf den Test über die Kursseite zu" +#: includes/userprefs.php:58 +msgid "Math Display" +msgstr "Mathematische Darstellung" -#: assessment/showtest.php:1181 -msgid "This assignment is past the original due date of " -msgstr "Dieser Test über die Abgabefrist hinaus: " +#: includes/userprefs.php:59 +msgid "Graph Display" +msgstr "Graphische Darstellung" -#: assessment/showtest.php:1185 assessment/showtest.php:1375 -msgid "You have used a LatePass" -msgstr "Sie haben verspätet eingereicht" +#: includes/userprefs.php:60 +msgid "Drawing Entry" +msgstr "Eingabe durch Zeichnen" -#: assessment/showtest.php:1187 assessment/showtest.php:1377 -msgid "You were granted an extension" -msgstr "Sie haben eine Verlängerung bekommen" +#: includes/userprefs.php:61 +msgid "Text Editor" +msgstr "Text-Editor" -#: assessment/showtest.php:1191 assessment/showtest.php:1381 -#, php-format -msgid "" -"Problems answered correctly after the original due date are subject to a %d" -"%% penalty" -msgstr "" -"Korrekte Antworten nach der Abgabefrist werden %d %% Punktabzug bestraft" +#: includes/userprefs.php:62 +msgid "Math Entry" +msgstr "Mathematische Eingabe" -#: assessment/showtest.php:1279 assessment/showtest.php:1475 -msgid "Hide" -msgstr "Verstecken" +#: includes/userprefs.php:63 +msgid "Course styling and contrast" +msgstr "Stil und Kontrast im Kurs" -#: assessment/showtest.php:1316 assessment/showtest.php:1418 -#: assessment/showtest.php:1536 assessment/showtest.php:1639 -msgid "Show Intro/Instructions" -msgstr "Zeige Einführung/Anweisungen" +#: includes/userprefs.php:64 +msgid "Live preview" +msgstr "Vorschau" -#: assessment/showtest.php:1344 assessment/showtest.php:1564 -msgid "" -"Answers saved, but not submitted for grading. You may continue with the " -"assessment, or come back to it later. " -msgstr "" -"Antwort gespeichert, aber noch nicht zur Bewertung abgegeben. Sie können mit " -"dem Test fortfahren oder später dazu zurück kehren. " +#: includes/userprefs.php:65 +msgid "Time Zone" +msgstr "Zeitzone" -#: assessment/showtest.php:1346 assessment/showtest.php:1566 -msgid "Return to assessment or" -msgstr "Zurück zum Test oder" +#: includes/userprefs.php:78 +msgid "Accessibility and Display Preferences" +msgstr "Barrierefreiheit und Einstellungen für die Darstellung" -#: assessment/showtest.php:1394 assessment/showtest.php:1614 -msgid "" -"If you do not reattempt now, you will have another chance once you complete " -"the assessment." -msgstr "" -"Wenn Sie es jetzt nicht noch einmal versuchen, bekommen Sie eine weitere " -"Möglichleit, wenn Sie den Test abgeben." +#: includes/userprefs.php:79 +msgid "Default settings are indicated with a *" +msgstr "Standardeinstellungen sind gekennzeichnet mit einem *" -#: assessment/showtest.php:1486 assessment/showtest.php:1905 -#: assessment/showtest.php:1715 assessment/showtest.php:2141 -msgid "" -"This question contains parts that can not be auto-graded. Those parts will " -"count as a score of 0 until they are graded by your instructor" -msgstr "" -"Diese Frage eintält Teile, die nicht automatisch bewertet werden können. " -"Diese Teile werden mit 0 angezeigt, bis sie von Ihrem Dozenten bewertet " -"werden." +#: includes/userprefs.php:86 +msgid "Set timezone to:" +msgstr "Setze Zeitzone auf:" -#: assessment/showtest.php:1491 assessment/showtest.php:1720 -msgid "Question Scored" -msgstr "Frage bewertet" +#: index.php:71 index.php:78 index.php:594 +msgid "Hide from course list" +msgstr "Nicht in der Kursliste anzeigen" -#: assessment/showtest.php:1506 assessment/showtest.php:1735 -msgid ", reattempt last question below, or select another question." -msgstr "" -", versuchen Sie die letzte Frage erneut, oder wählen Sie eine andere Frage." +#: index.php:354 +msgid "Site tools" +msgstr "Werkzeuge für die Systemverwaltung" -#: assessment/showtest.php:1508 assessment/showtest.php:1514 -#: assessment/showtest.php:1737 assessment/showtest.php:1743 -msgid ", or select another question" -msgstr ", oder wählen Sie eine andere Frage." +#: index.php:357 +msgid "Change User Info" +msgstr "Benutzerprofil ändern" -#: assessment/showtest.php:1651 assessment/showtest.php:2393 -#: assessment/showtest.php:2586 assessment/showtest.php:1880 -#: assessment/showtest.php:2673 assessment/showtest.php:2868 -msgid "When you are done, click here to see a summary of your score" -msgstr "" -"Wenn Sie fertig sind, klicken Sie hier um eine Zusammendassung Ihrer " -"Bewertung zu sehen" +#: index.php:358 +msgid "Change Password" +msgstr "Passwort ändern" -#: assessment/showtest.php:1759 assessment/showtest.php:1988 -msgid "" -"Question scored. Continue with assessment, or when you " -"are done click here to " -"see a summary of your score." -msgstr "" -"Frage bewertet. Test fortsetzen, oder wenn Sie fertig " -"sind klicken Sie hier " -"um die Zusammenfassung Ihrer Bewertung zu sehen." +#: index.php:367 +msgid "Documentation" +msgstr "Dokumentation" -#: assessment/showtest.php:1761 assessment/showtest.php:1990 -msgid "Question scored. Continue with assessment" -msgstr "Frage bewertet. Test fortsetzen" +#: index.php:372 index.php:529 +msgid "Admin Page" +msgstr "Administrationsbereich" -#: assessment/showtest.php:2673 assessment/showtest.php:2961 -msgid "Waiting for the instructor to start a question" -msgstr "Warten, dass der Dozent eine Frage startet" +#: index.php:376 +msgid "Enable Admin Features" +msgstr "Administrator-Möglichkeiten aktivieren" -#: assessment/showtest.php:3168 assessment/showtest.php:3459 -#, php-format -msgid "A score of %s is required to receive credit for this assessment" -msgstr "Eine Bewertung von %s wird benötigt, um diesen Test zu bestehen" +#: index.php:393 +msgid "Welcome to" +msgstr "Willkommen bei" -#: assessment/showtest.php:3191 assessment/showtest.php:3482 +#: index.php:421 +msgid "Approve Pending Instructor Accounts" +msgstr "Ausstehende Anträge für Dozentenkennungen bestätigen" + +#: index.php:425 +#, php-format msgid "" -"Reattempt assessment on questions " -"allowed (note: where reattempts are allowed, all scores, correct and " -"incorrect, will be cleared)" +"Notice: You have requested that times be displayed based on the %s " +"time zone, and your computer is reporting you are currently in a different " +"time zone. Be aware that times will display based on the %s timezone as " +"requested, not your local time" msgstr "" -"Test nochmal versuchen bei " -"Fragen, die dies zulassen (Bemerkung: Wenn Wiederholungen erlaubt sind, " -"werden alle Bewertungen, korrekt oder falsch, gelöscht)" +"Hinweis: Sie möchten, dass Zeiten in der %s Zeitzone dargestellt " +"werden, aber Ihr Computer sagt, dass Sie aktuell in einer anderen Zeitzone " +"sind. Beachten Sie, dass Zeiten in der %s Zeitzone - nicht in Ihrer lokalen " +"Zeit - dargestellt werden" -#: assessment/showtest.php:3194 assessment/showtest.php:3485 +#: index.php:429 msgid "" -"Reattempt assessment on " -"questions that can be improved where allowed" +"We have been unable to send emails to the address you have listed. Please " +"update the email address in your profile." msgstr "" -"Test nochmal versuchen bei " -"Fragen, die dies zulassen und verbessert werden können" +"Wir konnten keine Emails an die von Ihnen angegebene Adresse schicken. Bitte " +"überprüfen Sie die Email-Adresse in Ihrem Profil." -#: assessment/showtest.php:3197 assessment/showtest.php:3488 -msgid "" -"Reattempt assessment on all " -"questions where allowed" +#: index.php:430 +msgid "Edit Now" +msgstr "Jetzt bearbeiten" + +#: index.php:496 +msgid "To add a course, click the button below" +msgstr "Um einen Kurs hinzuzufügen, klicken Sie auf den Button unten" + +#: index.php:498 +msgid "Your instructor account has not been approved yet. Please be patient." msgstr "" -"Test nochmal versuchen bei allen " -"Fragen. die dies erlauben" +"Ihr Antrag auf eine Dozentenkennung ist noch nicht bestätigt. Bitte haben " +"Sie Geduld." -#: assessment/showtest.php:163 assessment/showtest.php:186 -msgid "This assessment requires the use of Remote Proctor Now (RPNow)." -msgstr "Dieser Test benötigt die Verwendung von Remote Proctor Now (RPNow)." +#: index.php:516 +msgid "Enroll in a New Class" +msgstr "In einen neuen Kurs einschreiben" -#: assessment/showtest.php:255 assessment/showtest.php:304 -msgid "Error DupASID." -msgstr "Fehler DupASID" +#: index.php:583 +msgid "Lockdown" +msgstr "Sperren" -#: assessment/showtest.php:255 assessment/showtest.php:304 -msgid "Try again" -msgstr "Veruchen Sie es erneut" +#: index.php:586 +#, php-format +msgid "Messages (%d)" +msgstr "Nachrichten (%d)" -#: assessment/showtest.php:907 assessment/showtest.php:1035 -msgid "Unable to connect to LivePoll Hub. Please try again later." -msgstr "" -"Keine Verbindung zum LivePoll Server möglich. Bitte versuchen Sie es später " -"erneut." +#: index.php:590 +msgid "Posts (" +msgstr "Beiträge (" -#: assessment/showtest.php:1123 assessment/showtest.php:1310 -msgid "" -"Each group member (other than the currently logged in student) to be added " -"should select their name and enter their password here." -msgstr "" -"Jedes Gruppenmitglied (ausser dem gerade angemeldetem Studenten), dass " -"hinzugefügt werden soll, muss hier seinen Namen auswählen und sein Passwort " -"eingeben." +#: index.php:602 index.php:603 +msgid "New messages" +msgstr "Neue Nachrichten" -#: assessment/showtest.php:1125 assessment/showtest.php:1312 -msgid "" -"Each group member (other than the currently logged in student) to be added " -"should select their name here." -msgstr "" -"Jedes Gruppenmitglied (ausser dem gerade angemeldetem Studenten), dass " -"hinzugefügt werden soll, muss hier seinen Namen auswählen." +#: index.php:606 +msgid "No new messages" +msgstr "Keine neuen Nachrichten" -#: assessment/showtest.php:1176 assessment/showtest.php:1366 -msgid "Practice Assessment" -msgstr "Übungstest" +#: index.php:610 msgs/viewmsg.php:123 +msgid "From" +msgstr "Von" -#: assessment/showtest.php:1183 assessment/showtest.php:1373 -#, php-format -msgid "This assignment is past the original due date of %s." -msgstr "Dieser Test ist über die Deadline von %s hinaus." +#: index.php:610 +msgid "Sent" +msgstr "Gesendet" -#: assessment/showtest.php:1285 assessment/showtest.php:1481 -msgid "In Review Mode - no scores will be saved" -msgstr "Im Korrekturmodus - keine Bewertungen werden gespeichert" +#: index.php:615 index.php:679 +msgid "No Subject" +msgstr "Kein Betreff" -#: assessment/showtest.php:1524 assessment/showtest.php:1945 -#: assessment/showtest.php:2164 assessment/showtest.php:2528 -#: assessment/showtest.php:1753 assessment/showtest.php:2181 -#: assessment/showtest.php:2406 assessment/showtest.php:2810 -msgid "This question, with your last answer" -msgstr "Diese Frage, mit Ihrer letzten Antwort" +#: index.php:632 msgs/msglist.php:889 msgs/newmsglist.php:114 +#: msgs/viewmsg.php:128 +msgid "[System Message]" +msgstr "[System-Nachricht]" -#: assessment/showtest.php:1526 assessment/showtest.php:1530 -#: assessment/showtest.php:1947 assessment/showtest.php:1951 -#: assessment/showtest.php:2166 assessment/showtest.php:2170 -#: assessment/showtest.php:2530 assessment/showtest.php:1755 -#: assessment/showtest.php:1759 assessment/showtest.php:2183 -#: assessment/showtest.php:2187 assessment/showtest.php:2408 -#: assessment/showtest.php:2412 assessment/showtest.php:2812 -msgid " and correct answer" -msgstr " und der korrekten Antwort" +#: index.php:634 msgs/msglist.php:891 msgs/newmsglist.php:116 +#: msgs/viewmsg.php:130 +msgid "[Deleted]" +msgstr "[Gelöscht]" -#: assessment/showtest.php:1536 assessment/showtest.php:1957 -#: assessment/showtest.php:2176 assessment/showtest.php:2180 -#: assessment/showtest.php:2533 assessment/showtest.php:2535 -#: assessment/showtest.php:1765 assessment/showtest.php:2193 -#: assessment/showtest.php:2418 assessment/showtest.php:2422 -#: assessment/showtest.php:2815 assessment/showtest.php:2817 -msgid ", is displayed below" -msgstr ", wird unten angezeigt" +#: index.php:652 index.php:657 +msgid "New forum posts" +msgstr "Neue Forenbeiträge" -#: assessment/showtest.php:1588 assessment/showtest.php:1817 -msgid "When you are done, " -msgstr "Wenn Sie fertig sind, " +#: index.php:660 +msgid "No new posts" +msgstr "Keine neuen Beiträge" -#: assessment/showtest.php:1588 assessment/showtest.php:1817 -msgid "click here to see a summary of your scores" -msgstr "klicken Sie hier, um eine Zusammenfassung Ihrer Ergebnisse zu sehen" +#: index.php:673 +msgid "Thread" +msgstr "Thema" -#: assessment/showtest.php:2158 assessment/showtest.php:2400 -msgid "wrong question or not open for displaying scored result" -msgstr "falsche Frage oder nicht offen für die Anzeige bewerteter Ergebnisse" +#: index.php:673 +msgid "Started By" +msgstr "Gestartet von" -#: assessment/showtest.php:2571 assessment/showtest.php:2853 -msgid "Previous Page" -msgstr "Vorherige Seite" +#: index.php:673 +msgid "Last Post" +msgstr "Letzter Beitrag" -#: assessment/showtest.php:2575 assessment/showtest.php:2857 -msgid "Next Page" -msgstr "Nächste Seite" +#: index.php:695 +msgid "Anonymous" +msgstr "Anonym" -#: assessment/showtest.php:2621 assessment/showtest.php:2906 -msgid "Edit Settings" -msgstr "Bearbeite Einstellungen" +#: javascript/AMhelpers.js:215 javascript/AMhelpers2.js:1521 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "Invalid use of a comma." +msgstr "Ungültige Verwendung des Komma." + +#: javascript/AMhelpers.js:243 javascript/AMhelpers.js:397 +#: javascript/AMhelpers.js:543 javascript/AMhelpers.js:626 +#: javascript/AMhelpers.js:630 javascript/AMhelpers.js:791 +#: javascript/AMhelpers2.js:1166 javascript/AMhelpers2.js:1637 +#: javascript/AMhelpers2.js:1641 javascript/AMhelpers2_min.js:1 +#: javascript/assess2_min.js:2 javascript/assessment_min.js:3 +msgid "syntax incomplete" +msgstr "Syntax unvollständig" + +#: javascript/AMhelpers.js:254 javascript/AMhelpers.js:408 +#: javascript/AMhelpers.js:548 javascript/AMhelpers.js:640 +#: javascript/AMhelpers.js:796 javascript/assessment_min.js:3 +msgid "undefined" +msgstr "undefiniert" + +#: javascript/AMhelpers.js:262 javascript/assessment_min.js:3 +msgid "" +"syntax error: this answer must be in set notation, a list wrapped in braces " +"like {1,2,3}" +msgstr "" +"Syntaxfehler: Die Antwort muss in Mengenschreibweise - als Liste in " +"geschweiften Klammern, z.B. {1,2,3} - eingegeben werden" + +#: javascript/AMhelpers.js:329 javascript/assessment_min.js:3 +msgid "no answer given" +msgstr "nicht beantwortet" + +#: javascript/AMhelpers.js:368 javascript/AMhelpers2.js:998 +#: javascript/AMhelpers2.js:1033 javascript/AMhelpers2_min.js:1 +#: javascript/assess2_min.js:2 javascript/assessment_min.js:3 +msgid "invalid inequality notation" +msgstr "Ungültige Ungleichungs-Schreibweise" + +#: javascript/AMhelpers.js:370 javascript/AMhelpers2.js:1035 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "invalid interval notation" +msgstr "ungültige Intervallschreibweise" + +#: javascript/AMhelpers.js:559 javascript/AMhelpers2.js:1133 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "Invalid notation" +msgstr "Ungültige Schreibweise" + +#: javascript/AMhelpers.js:1083 javascript/AMhelpers.js:1100 +#: javascript/AMhelpers.js:1117 javascript/assessment_min.js:3 +msgid "syntax ok" +msgstr "Syntax OK" + +#: javascript/AMhelpers.js:1087 javascript/AMhelpers.js:1090 +#: javascript/AMhelpers.js:1097 javascript/AMhelpers2.js:1333 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "syntax error" +msgstr "Syntaxfehler" + +#: javascript/AMhelpers.js:1101 javascript/assessment_min.js:3 +msgid "warning" +msgstr "Warnung" + +#: javascript/AMhelpers.js:1108 javascript/AMhelpers.js:1182 +#: javascript/AMhelpers2.js:1557 javascript/AMhelpers2_min.js:1 +#: javascript/assess2_min.js:2 javascript/assessment_min.js:3 +msgid "Your answer contains an unrecognized symbol" +msgstr "Ihre Antwort enthält ein unbekanntes Symbol" + +#: javascript/AMhelpers.js:1112 javascript/AMhelpers2.js:1306 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "syntax error: this is not an equation" +msgstr "Syntaxfehler: Das ist keine Gleichung" + +#: javascript/AMhelpers.js:1113 javascript/AMhelpers2.js:1300 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "syntax error: you gave an equation, not an expression" +msgstr "Syntaxfehler: Sie haben eine Gleichung eingegeben, keinen Ausdruck" + +#: javascript/AMhelpers.js:1154 javascript/AMhelpers2.js:1529 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid " invalid entry format" +msgstr " Ungültiges Eingabeformat" + +#: javascript/AMhelpers.js:1160 javascript/AMhelpers2.js:1535 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "not a valid fraction" +msgstr "Kein gültiger Bruch" + +#: javascript/AMhelpers.js:1164 javascript/AMhelpers2.js:1539 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "not a valid mixed number" +msgstr "keine gültige gemischte Zahl" + +#: javascript/AMhelpers.js:1172 javascript/AMhelpers2.js:1547 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "not valid scientific notation" +msgstr "keine gültige wissenschaftliche Schreibweise" + +#: javascript/AMhelpers.js:1174 javascript/AMhelpers2.js:1549 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "not valid decimal or scientific notation" +msgstr "keine gültige Dezimal- oder wissenschaftliche Schreibweise" + +#: javascript/AMhelpers.js:1179 javascript/AMhelpers2.js:1554 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid " not a valid integer or decimal number" +msgstr " keine ganze Zahl oder Dezimalzahl" + +#: javascript/AMhelpers.js:1190 javascript/AMhelpers2.js:1565 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "no trig functions allowed" +msgstr "Trigonometrische Funktionen (sin, cos, etc.) sind nicht erlaubt" + +#: javascript/AMhelpers.js:1192 javascript/AMhelpers2.js:1567 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "no decimals allowed" +msgstr "Dezimalwerte sind nicht erlaubt" -#: assessment/showtest.php:2626 assessment/showtest.php:2911 -msgid "Show question on this computer before it is opened for student input" +#: javascript/AMhelpers.js:1195 javascript/AMhelpers2.js:1570 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "mixed numbers are not allowed" +msgstr "Gemischte Zahlen sind nicht erlaubt" + +#: javascript/AMhelpers.js:1212 javascript/AMhelpers2.js:1587 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "unmatched parens" +msgstr "Klammerfehler" + +#: javascript/AMhelpers.js:1215 javascript/AMhelpers2.js:1590 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "unmatched absolute value bars" +msgstr "Die Striche für den Absolutbetrag passen nicht" + +#: javascript/AMhelpers.js:1224 javascript/AMhelpers2.js:1599 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "use function notation" +msgstr "Funktionsschreibweise verwenden" + +#: javascript/AMhelpers.js:1224 javascript/AMhelpers2.js:1599 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "use $1 instead of $2" +msgstr "Benutze $1 statt $2" + +#: javascript/AMhelpers.js:1229 javascript/AMhelpers2.js:1604 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid " Check your variables - you might be using an incorrect one" +msgstr " Überprüfen Sie Ihre Variablen! Verwenden Sie nur zulässige Variable" + +#: javascript/AMhelpers.js:1236 javascript/AMhelpers2.js:1611 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid "" +" You may want to use abs(x) instead of |x| for absolute values to avoid " +"ambiguity" msgstr "" -"Zeige Frage auf diesem Compouter bevor sie für die Studenteneingabe geöffnet " -"wird" +" Sie sollten für den Absolutbetrag abs(x) statt |x| verwenden, um " +"Mehrdeutigkeiten zu vermeiden" -#: assessment/showtest.php:2628 assessment/showtest.php:2913 -msgid "Show results live as students submit answers" -msgstr "Zeige Lösungen live während die Studenten ihre Antworten abgeben" +#: javascript/AMhelpers.js:1242 javascript/AMhelpers2.js:1617 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +#: javascript/assessment_min.js:3 +msgid " Do not use the percent symbol, %" +msgstr " Benutzen Sie nicht das Prozentzeichen %" -#: assessment/showtest.php:2630 assessment/showtest.php:2915 -msgid "Show results automatically after closing student input" -msgstr "Zeige Lösungen automatisch nach Schliessen der Studenteneingabe" +#: javascript/AMhelpers.js:1268 javascript/assessment_min.js:3 +msgid "" +"You have already submitted this page. Please be patient while your " +"submission is processed." +msgstr "" +"Sie haben diese Seite schon abgeschickt, bitte warten Sie die Verarbeitung " +"ab." -#: assessment/showtest.php:2632 assessment/showtest.php:2917 -msgid "Show answers automatically after closing student input" -msgstr "Zeige Antworten automatisch nach Schliessen der Studenteneingabe" +#: javascript/AMhelpers.js:1747 javascript/assessment_min.js:3 +msgid "Submission Error" +msgstr "Fehler beim Einreichen" -#: assessment/showtest.php:2636 assessment/showtest.php:2921 -msgid "Select a Question" -msgstr "Wähle eine Frage aus" +#: javascript/AMhelpers.js:2273 javascript/assessment_min.js:3 +msgid "Time limit expired - submitting now" +msgstr "Zeitlimit abgelaufen - schicke jetzt ab" -#: assessment/showtest.php:2637 assessment/showtest.php:2922 -msgid "Open Student Input" -msgstr "Öffne Studenteneingabe" +#: javascript/AMhelpers.js:2286 javascript/assessment_min.js:3 +msgid "Time Limit has elapsed" +msgstr "Das Zeitlimit ist verstrichen" -#: assessment/showtest.php:2637 assessment/showtest.php:2922 -msgid "Close Student Input" -msgstr "Schliesse Studenteneingabe" +#: javascript/AMhelpers.js:2314 javascript/AMhelpers.js:2315 +#: javascript/assessment_min.js:3 +msgid "Show Timer" +msgstr "Timer anzeigen" -#: assessment/showtest.php:2638 assessment/showtest.php:2923 -msgid "Show Question" -msgstr "Zeige Fragen" +#: javascript/AMhelpers.js:2319 javascript/assessment_min.js:3 +msgid "Hide Timer" +msgstr "Timer ausblenden" -#: assessment/showtest.php:2639 assessment/showtest.php:2924 -msgid "Show Results" -msgstr "Zeige Lösungen" +#: javascript/AMhelpers.js:2339 javascript/assessment_min.js:3 +msgid "Hide Intro/Instructions" +msgstr "Einführung/Anweisungen ausblenden" -#: assessment/showtest.php:2640 assessment/showtest.php:2925 -msgid "Show Answers When Closed" -msgstr "Zeige Antworten wenn geschlossen" +#: javascript/AMhelpers.js:2372 javascript/assessment_min.js:3 +msgid "" +"Are you sure you want to leave this assessment? You may have unsubmitted work" +msgstr "" +"Sind Sie sicher, dass Sie den Test verlassen wollen? Sie könnten bisher " +"nicht abgeschickte Antworten verlieren" + +#: javascript/AMhelpers2.js:305 javascript/AMhelpers2.js:306 +#: javascript/AMhelpers2_min.js:1 javascript/assess2_min.js:2 +msgid "View Key" +msgstr "Schlüssel ansehen" + +#: javascript/AMhelpers2.js:997 javascript/AMhelpers2_min.js:1 +#: javascript/assess2_min.js:2 +msgid "you may have used the wrong variable" +msgstr "Sie haben vielleicht die falsche Variable verwendet" + +#: javascript/AMhelpers2.js:1274 javascript/AMhelpers2_min.js:1 +#: javascript/assess2_min.js:2 +msgid "Invalid matrix format" +msgstr "Ungültiges Format der Matrix" + +#: javascript/AMhelpers2.js:1302 javascript/AMhelpers2_min.js:1 +#: javascript/assess2_min.js:2 +msgid "syntax error: your equation should only contain one equal sign" +msgstr "" +"Syntaxfehler: Ihre Gleichung sollte nur ein Gleichheitszeichen enthalten" -#: assessment/showtest.php:2961 assessment/showtest.php:2963 -#: assessment/showtest.php:3249 assessment/showtest.php:3251 -msgid "untried" -msgstr "unversucht" +#: javascript/ASCIIsvg.js:203 javascript/ASCIIsvg_min.js:1 +msgid "Enlarged Graph" +msgstr "Graph vergrößern" -#: assessment/showtest.php:2968 assessment/showtest.php:3256 -msgid "incorrect - can retry" -msgstr "falsch - weitere Versuche möglich" +#: javascript/addgrades.js:629 +msgid "Hide Quicksearch Entry" +msgstr "Schnellsuche ausblenden" -#: assessment/showtest.php:2970 assessment/showtest.php:3258 -msgid "partially correct - can retry" -msgstr "teilweise korrekt - weitere Versuche möglich" +#: javascript/addgrades.js:633 +msgid "Show Quicksearch Entry" +msgstr "Schnellsuche einblenden" -#: assessment/showtest.php:2973 assessment/showtest.php:3261 -msgid "can retry" -msgstr "weitere Versuche möglich" +#: javascript/addqsort.js:601 +msgid "Are you sure you want to remove this question?" +msgstr "Sind Sie sicher, dass Sie diese Frage entfernen wollen?" -#: assessment/showtest.php:2978 assessment/showtest.php:2989 -#: assessment/showtest.php:3266 assessment/showtest.php:3277 -msgid "cannot retry" -msgstr "keine weiteren Versuche" +#: javascript/addqsort.js:603 +msgid "Are you sure you want to remove this text segment?" +msgstr "Sind Sie sicher, dass Sie diesen Textabschnitt löschen möchten?" -#: assessment/showtest.php:2983 assessment/showtest.php:3271 -msgid "incorrect - cannot retry" -msgstr "falsch - keine weiteren Versuche" +#: javascript/addqsort.js:615 +msgid "Are you sure you want to remove ALL questions in this group?" +msgstr "Sind Sie sicher, dass Sie ALLE Fragen dieser Gruppe entfernen wollen?" -#: assessment/showtest.php:2985 assessment/showtest.php:3273 -msgid "partially correct - cannot retry" -msgstr "teilweise korrekt - keine weiteren Versuche" +#: javascript/addqsort.js:641 +msgid "Are you sure you want to remove these questions?" +msgstr "Sind Sie sicher, dass Sie diese Fragen löschen wollen?" -#: assessment/showtest.php:2633 assessment/showtest.php:2918 -msgid "Hide Settings" -msgstr "Verstecke Einstellungen" +#: javascript/addqsort.js:796 +msgid "Are you sure you want to clear all attempts on this question?" +msgstr "" +"Stellen Sie sicher, dass Sie alle Versuche zu dieser Frage löschen wollen?" -#: assessment/displayq2.php:383 assessment/displayq2.php:398 -msgid "This solution is for a similar problem, not your specific version" +#: javascript/addqsort.js:1312 +msgid "" +"There are unsaved changes in a question intro text box. Press OK to discard " +"those changes and continue with the most recent action. Press Cancel to " +"return to the page without taking any action." msgstr "" -"Diese Lösung ist für ein ähnliches Problem, nicht für diese spezielle Version" +"Es gibt ungespeicherte Änderungen im Feld des Einführungstextes der Frage. " +"Klicken Sie OK um diese Änderungen zu verwerfen und mit der letzten Aktion " +"fortzufahren. Klicken Sie Abbrechen um ohne Aktion auf der Seite zu bleiben." + +#: javascript/addqsort.js:1322 +msgid " Saving Changes... " +msgstr " Speichere Änderungen... " + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:199 javascript/drawing_min.js:1 +msgid "Linear inequality with solid line" +msgstr "Lineare Ungleichung mit Vollinie" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:199 javascript/drawing.js:200 +#: javascript/drawing.js:203 javascript/drawing.js:204 +#: javascript/drawing_min.js:1 +msgid "Enter 2 points on the line, then a third point in the shaded region" +msgstr "" +"Geben Sie 2 Punkte auf der Linie ein, dann einen dritten Punkt in der " +"eingefärbten Region" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:200 javascript/drawing_min.js:1 +msgid "Linear inequality with dashed line" +msgstr "Lineare Gleichung mit gestrichelter Linie" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:203 javascript/drawing_min.js:1 +msgid "Parabolic inequality with solid line" +msgstr "Parabolische Ungleichung mit Vollinie" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:204 javascript/drawing_min.js:1 +msgid "Parabolic inequality with dashed line" +msgstr "Parabolische Ungleichung mit gestrichelter Linie" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:208 javascript/drawing_min.js:1 +msgid "Enter two points on the line" +msgstr "Markieren Sie zwei Punkte auf der Geraden" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:209 javascript/drawing.js:237 +#: javascript/drawing_min.js:1 +msgid "Line segment" +msgstr "Strecke" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:209 javascript/drawing.js:237 +#: javascript/drawing_min.js:1 +msgid "Enter the starting and ending point of the line segment" +msgstr "Geben Sie den Start- und den Endpunkt der Strecke ein" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:210 javascript/drawing_min.js:1 +msgid "Ray" +msgstr "Strahl" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:210 javascript/drawing_min.js:1 +msgid "Enter the starting point of the ray and another point on the ray" +msgstr "Geben Sie den Starpunkt des Strahls ein und einen Punkt auf dem Strahl" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:211 javascript/drawing_min.js:1 +msgid "Parabola" +msgstr "Parabel" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:211 javascript/drawing.js:212 +#: javascript/drawing_min.js:1 +msgid "Enter the vertex, then another point on the parabola" +msgstr "" +"Geben Sie den Scheitelpunkt ein, dann einen anderen Punkt auf der Parabel" -#: assessment/displayq2.php:484 assessment/showsoln.php:19 -#: assessment/displayq2.php:499 -msgid "Written Example" -msgstr "Musterlösung" +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:212 javascript/drawing_min.js:1 +msgid "Parabola opening right or left" +msgstr "Nach rechts oder links öffnende Parabel" -#: assessment/displayq2.php:532 assessment/displayq2.php:547 -msgid "Detailed Solution" -msgstr "Detaillierte Lösung" +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:213 javascript/drawing_min.js:1 +msgid "Cubic" +msgstr "Kurve 3. Grades" -#: assessment/displayq2.php:534 assessment/displayq2.php:549 -msgid "Show Detailed Solution" -msgstr "Zeige detaillierte Lösung an" +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:213 javascript/drawing_min.js:1 +msgid "Enter the inflection point, then another point on the cubic" +msgstr "" +"Geben Sie den Wendepunkt ein, dann einen weiterenPunkt auf der Kurve 3. " +"Grades" -#: assessment/displayq2.php:926 +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:214 javascript/drawing_min.js:1 +msgid "Cube root" +msgstr "Kubikwurzel" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:214 javascript/drawing_min.js:1 msgid "" -"Enter your answer as a set of whole or decimal numbers separated with " -"commas: Example: {-4, 3, 2.5}" +"Enter the inflection point of the cube root, then another point on the graph" msgstr "" -"Geben Sie Ihre Antwort als kommagetrennte Menge von ganzen Zahlen oder " -"Dezimalzahlen ein: Beispiel: {-4, 3, 2.5}" +"Geben Sie den Wendepunkt der Kubikwurzel ein, dann einen weiteren Punkt auf " +"dem Graphen" -#: assessment/displayq2.php:927 assessment/displayq2.php:960 -msgid "Enter a set of whole or decimal numbers" -msgstr "Geben Sie eine Menge von ganzen Zahlen oder Dezimalzahlen ein" +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:215 javascript/drawing_min.js:1 +msgid "Absolute value" +msgstr "Absoluter Betrag" -#: assessment/displayq2.php:945 assessment/displayq2.php:978 -#, php-format -msgid "Your answer should have between %d and %d significant figures." -msgstr "Ihre Antwort sollte zwischen %d und &d signifikante Stellen haben." +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:215 javascript/drawing_min.js:1 +msgid "" +"Enter the corner point of the absolute value, then another point on the graph" +msgstr "" +"Geben Sie den Eckpunkt der Betragsfunktion ein, dann einen weiteren Punkt " +"auf dem Graphen" -#: assessment/displayq2.php:946 assessment/displayq2.php:979 -#, php-format -msgid ", with %d - %d significant figures" -msgstr ", mit %d - %d signifikanten Stellen" +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:216 javascript/drawing_min.js:1 +msgid "Rational" +msgstr "Rationale Funktion" -#: assessment/displayq2.php:1447 assessment/displayq2.php:1481 +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:216 javascript/drawing_min.js:1 msgid "" -"Enter your answer as a set of values separated with commas: Example: {-4, 3, " -"2}" +"Enter the point where the vertical and horizontal asymptote cross, then a " +"point on the graph" msgstr "" -"Geben Sie Ihre Antwort als Menge von kommaseparierten Werten ein: Beispiel: " -"{-4, 3, 2}" +"Geben Sie den Punkt ein, in dem sich die vertikale und die horizontale " +"Asymptote schneiden, dann einen Punkt auf dem Graphen" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:217 javascript/drawing_min.js:1 +msgid "Exponential" +msgstr "Exponentialfunktion" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:217 javascript/drawing.js:218 +#: javascript/drawing_min.js:1 +msgid "Enter two points on the graph" +msgstr "Geben Sie zwei Punkte auf dem Graphen ein" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:218 javascript/drawing_min.js:1 +msgid "Logarithm" +msgstr "Logarithmusfunktion" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:219 javascript/drawing_min.js:1 +msgid "Shifted Exponential" +msgstr "Verschobene Exponentialfunktion" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:219 javascript/drawing.js:220 +#: javascript/drawing_min.js:1 +msgid "Enter a point on the asymptote, then enter two points on the graph" +msgstr "" +"Geben Sie einen Punkt auf der Asymptote ein, dann zwei Punkte auf dem Graphen" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:220 javascript/drawing_min.js:1 +msgid "Shifted Logarithm" +msgstr "Verschobener Logarithmus" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:221 javascript/drawing_min.js:1 +msgid "Circle" +msgstr "Kreis" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:221 javascript/drawing_min.js:1 +msgid "Enter the center point of the circle, then a point on the graph" +msgstr "Geben Sie den Kreismittelpunkt ein, dann einen Punkt auf dem Umfang" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:222 javascript/drawing_min.js:1 +msgid "Ellipse" +msgstr "Ellipse" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:222 javascript/drawing_min.js:1 +msgid "" +"Enter the center point of the ellipse, then a point offset from the center " +"by the horizontal radius and vertical radius" +msgstr "" +"Geben Sie den Mittelpunkt der Ellipse ein, anschließend zwei Punkte auf dem " +"Graphen, die gegenüber dem Mittelpunkt horizontal bzw. vertikal verschoben " +"sind" -#: assessment/displayq2.php:1768 assessment/displayq2.php:1827 -#: assessment/displayq2.php:1831 assessment/displayq2.php:1891 -msgid "Enter your answer as a set of numbers. Example: {1,2,3}" -msgstr "Geben Sie Ihre ANtwort als Menge von Zahlen ein, Beispiel: {1,2,3}" +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:224 javascript/drawing_min.js:1 +msgid "Vertical hyperbola" +msgstr "Vertikale Hyperbel" -#: assessment/displayq2.php:1769 assessment/displayq2.php:1828 -#: assessment/displayq2.php:1832 assessment/displayq2.php:1892 -msgid "Enter a set" -msgstr "Geben Sie eine Menge ein" +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:224 javascript/drawing_min.js:1 +msgid "" +"Enter the center point of the hyperbola, then a point (x,y) where x is the x-" +"coordinate of the co-vertex and y is the y-coordinate of the vertex" +msgstr "" +"Geben Sie den Mittelpunkt der Hyperbel ein, dann einen Punkt (x,y), wobei x " +"die x-Koordinate des Nebenscheitels und y die y-Koordinate des Scheitels ist" -#: assessment/displayq2.php:2093 assessment/displayq2.php:2161 -msgid "The answer must match a specified pattern" -msgstr "Die Antwort muss zu einem vorgegebenen Muster passen" +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:225 javascript/drawing_min.js:1 +msgid "Horizontal hyperbola" +msgstr "Horizontale Hyperbel" -#: assessment/displayq2.php:2308 assessment/displayq2.php:2383 -#, php-format +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:225 javascript/drawing_min.js:1 msgid "" -"Enter your answer using inequality notation. Example: 3 <= %s < 4" +"Enter the center point of the hyperbola, then a point (x,y) where x is the x-" +"coordinate of the vertex and y is the y-coordinate of the co-vertex" msgstr "" -"Geben Sie Ihre Antwort als Ungleichung ein. Beispiel: 3 <= %s < 4" - -#: assessment/displayq2.php:2309 assessment/displayq2.php:2384 -#, php-format -msgid "Use or to combine intervals. Example: %s < 2 or %s >= 3" +"Geben Sie den Mittelpunkt der Hyperbel ein, dann einen Punkt (x,y), wobei x " +"die x-Koordinate des Scheitels und y die y-Koordinate des Nebenscheitels ist" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:227 javascript/drawing.js:239 +#: javascript/drawing_min.js:1 +msgid "Solid dot" +msgstr "Ausgefüllter Punkt" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:227 javascript/drawing.js:228 +#: javascript/drawing.js:239 javascript/drawing.js:240 +#: javascript/drawing_min.js:1 +msgid "Enter the coordinates of the dot" +msgstr "Geben Sie die Koordinaten des Punktes ein" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:228 javascript/drawing.js:240 +#: javascript/drawing_min.js:1 +msgid "Open dot" +msgstr "Offener Punkt" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:230 javascript/drawing_min.js:1 +msgid "Cosine" +msgstr "Kosinus" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:230 javascript/drawing_min.js:1 +msgid "" +"Enter a point at the start of a phase, then a point half a phase further" msgstr "" -"Benutzen Sie or um Intervalle zu vereinen. Beispiel: %s < 2 or %s >= 3" +"Geben Sie einen Punkt am Start einer Periode ein, dann einen Punkt eine " +"halbe Periode weiter" -#: assessment/displayq2.php:2315 assessment/displayq2.php:2390 -msgid "Separate intervals by a comma. Example: (-oo,2],[4,oo)" -msgstr "Trennen Sie Intervalle mit Kommata. Beispiel: (-oo,2],84,oo)" +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:231 javascript/drawing_min.js:1 +msgid "Sine" +msgstr "Sinus" -#: assessment/displayq2.php:2316 assessment/displayq2.php:2391 -msgid "Enter a list of intervals using interval notation" -msgstr "Geben Sie eine Liste von Intervallen in Intervallschreibweise ein" +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:231 javascript/drawing_min.js:1 +msgid "" +"Enter a point at the start of a phase, then a point a quarter phase further" +msgstr "" +"Geben Sie einen Punkt am Start einer Periode ein, dann einen Punkt eine " +"Viertelperiode weiter" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:233 javascript/drawing_min.js:1 +msgid "Vector" +msgstr "Vektor" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:233 javascript/drawing_min.js:1 +msgid "Enter the starting and ending point of the vector" +msgstr "Geben Sie den Start- und den Endpunkt des Vektors ein" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:236 javascript/drawing_min.js:1 +msgid "Lines" +msgstr "Geraden" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:236 javascript/drawing.js:238 +#: javascript/drawing_min.js:1 +msgid "Enter list of points to connect with lines" +msgstr "" +"Geben Sie eine Liste von Punkten an, die durch Strecken verbunden werden" -#: assessment/displayq2.php:2658 assessment/displayq2.php:2776 -msgid "Freehand Draw" +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:238 javascript/drawing_min.js:1 +msgid "Freehand" msgstr "Freihandzeichnen" -#: assessment/displayq2.php:3781 assessment/displayq2.php:3928 -msgid "Debug info: empty, missing or invalid $answer" -msgstr "Debuginfo: leeres, fehlendes oder ungültiges $answer" +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:241 javascript/drawing.js:242 +#: javascript/drawing_min.js:1 +msgid "Enter list of points to place dots connected with lines" +msgstr "" +"Geben Sie nacheinander Punkte ein, die dann durch Linien verbunden werden" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:303 javascript/drawing_min.js:1 +msgid "Drawing element type" +msgstr "Zeichnungs-Typ" + +#: javascript/assess2_min.js:1 javascript/assessment_min.js:5 +#: javascript/drawing.js:309 javascript/drawing_min.js:1 +msgid "Point list" +msgstr "Punktliste" + +#: javascript/assessment_min.js:1 javascript/general.js:670 +#: javascript/general.js:730 +msgid "Hide video" +msgstr "Video ausblenden" + +#: javascript/assessment_min.js:1 javascript/general.js:671 +msgid "Hide embedded video" +msgstr "Eingebettetes Video ausblenden" + +#: javascript/assessment_min.js:1 javascript/general.js:677 +#: javascript/general.js:742 +msgid "Watch video here" +msgstr "Video hier ansehen" + +#: javascript/assessment_min.js:1 javascript/general.js:678 +#: javascript/general.js:743 +msgid "Embed video here" +msgstr "Video hier einbetten" + +#: javascript/assessment_min.js:1 javascript/general.js:1014 +msgid "This file is too large - maximum size is 10MB" +msgstr "Die Datei ist zu groß - maximale Größe 10MB" + +#: javascript/assessment_min.js:1 javascript/general.js:1168 +msgid "Evaluate" +msgstr "Auswerten" + +#: javascript/assessment_min.js:1 javascript/general.js:1093 +msgid "Navigation breadcrumbs" +msgstr "Brotkrumennavigation" + +#: javascript/assessment_min.js:1 javascript/general.js:1094 +msgid "Control link group" +msgstr "Gruppe von Kontroll-Links" + +#: javascript/copyitemslist.js:16 +msgid "Select an option for what to copy" +msgstr "Wählen Sie eine Option für das Kopieren" + +#: javascript/course.js:159 +msgid "Available After Date" +msgstr "Verfügbar nach dem" + +#: javascript/course.js:161 +msgid "Available Until Date" +msgstr "Verfügbar bis zum" + +#: javascript/course.js:321 +msgid "Bring this day to top" +msgstr "Diesen Tag nach oben bringen" + +#: javascript/gb-scoretools.js:4 +msgid "Show Questions with Perfect Scores" +msgstr "Zeige Fragen mit voller Punktzahl" + +#: javascript/gb-scoretools.js:16 +msgid "Show Nonzero Score Questions" +msgstr "Zeige Fragen mit mehr als 0 Punkten" + +#: javascript/gb-scoretools.js:28 +msgid "Show Perfect Questions" +msgstr "Zeige perfekt beantwortete Fragen" + +#: javascript/gb-scoretools.js:40 +msgid "Show Unanswered Questions" +msgstr "Zeige unbeantwortete Fragen" + +#: javascript/gb-scoretools.js:72 javascript/livepoll.js:603 +msgid "Saving..." +msgstr "Speichern..." + +#: javascript/gradebook.js:13 +msgid "Recording..." +msgstr "Nehme auf..." + +#: javascript/livepoll.js:174 +msgid "student" +msgstr "Student" -#: assessment/displayq2.php:5896 assessment/displayq2.php:5962 -#: assessment/displayq2.php:6206 assessment/displayq2.php:6288 -msgid " Unable to open Excel file" -msgstr " Kann Excel Datei nicht öffnen" +#: javascript/livepoll.js:174 +msgid "students" +msgstr "Studierende" -#: assessment/displayq2.php:5970 assessment/displayq2.php:6296 -msgid "Successful" -msgstr "Erfolgreich" +#: javascript/livepoll.js:276 javascript/livepoll.js:333 +msgid "Answer" +msgstr "Antwort" -#: assessment/displayq2.php:6420 assessment/displayq2.php:6760 -#, php-format -msgid "Enter a %s of fractions or whole numbers" -msgstr "Geben Sie %s als Bruch oder ganze Zahl ein" +#: javascript/livepoll.js:276 javascript/livepoll.js:333 +msgid "Frequency" +msgstr "Frequenz" -#: assessment/displayq2.php:6423 assessment/displayq2.php:6763 -#, php-format -msgid "" -"Enter %s as a reduced fraction (like 5/3, not 10/6), as a whole number (like " -"4 or -2), or as an exact decimal (like 0.5 or 1.25)" -msgstr "" -"Geben Sie %s als einen gekürzten Bruch (wie 5/3 anstatt 10/6), als ganze " -"Zahl (wie 4 oder -2), oder als Dezimalzahl (wie 0.5 oder 1.25) ein" +#: javascript/livepoll.js:384 +msgid "result" +msgstr "Resultat" -#: assessment/displayq2.php:6424 assessment/displayq2.php:6764 -#, php-format -msgid "Enter a %s of reduced fractions, whole numbers, or exact decimals" -msgstr "Geben Sie %s als gekürzten Bruch, ganze Zahl oder Dezimalzahl ein" +#: javascript/livepoll.js:384 +msgid "results" +msgstr "Ergebnisse" -#: assessment/displayq2.php:6424 assessment/displayq2.php:6764 -msgid "Enter a reduced fraction, whole number, or exact decimal" -msgstr "Geben Sie einen gekürzten Bruch, ganze Zahl oder Dezimalzahl ein" +#: javascript/livepoll.js:384 +msgid "received." +msgstr "erhalten." -#: assessment/displayq2.php:6427 assessment/displayq2.php:6767 -#, php-format -msgid "Enter a %s of reduced fractions or whole numbers" -msgstr "Geben Sie %s als gekürzten Bruch oder ganze Zahl ein" +#: javascript/livepoll.js:419 +msgid "Loading..." +msgstr "Lade Inhalt..." -#: assessment/displayq2.php:6431 assessment/displayq2.php:6434 -#: assessment/displayq2.php:6771 assessment/displayq2.php:6774 -#, php-format -msgid "Enter a %s of mixed numbers or whole numbers" -msgstr "Geben Sie %s als gemischte oder ganze Zahl ein" +#: javascript/livepoll.js:446 +msgid "Clear results and generate a new version of this question" +msgstr "Ergebnisse löschen und neue Version aller Fragen erzeugen" -#: assessment/displayq2.php:6433 assessment/displayq2.php:6773 -#, php-format -msgid "" -"Enter %s as a reduced mixed number, reduced proper or improper fraction, or " -"as a whole number. Example: 2 1/2 = 2 ½" -msgstr "" -"Geben Sie %s als echten, unechten oder als gemischten Bruch oder als ganze " -"Zahl ein. Kürzen Sie soweit wie möglich. Beispiel: 2 1/2 = 2 ½" +#: javascript/livepoll.js:513 +msgid "Opening Student Input..." +msgstr "Öffne Eingabe für Studierende..." + +#: javascript/livepoll.js:535 +msgid "Closing Student Input..." +msgstr "Schließe Eingabe für Studieremde..." -#: assessment/displayq2.php:6434 assessment/displayq2.php:6774 +#: javascript/livepoll.js:642 +msgid "Error" +msgstr "Fehler" + +#: javascript/masschgdates.js:168 javascript/masschgdates.js:198 msgid "" -"Enter a reduced mixed number, proper or improper fraction, or whole number" +"No items have been selected. This action will apply to ALL items below this " +"item" msgstr "" -"Geben Sie eine gekürzte gemischte Zahl, einen echten oder unechten Bruch " -"oder eine ganze Zahl ein" +"Kein Element ausgewählt. Die Aktion wird auf ALLE Elemente unterhalb dieses " +"Elements angewendet" -#: assessment/displayq2.php:6437 assessment/displayq2.php:6777 -#, php-format -msgid "Enter a %s of fractions or exact decimals" -msgstr "Geben Sie ein %s von Brüchen oder Ganzzahlen ein" +#: javascript/moveitem.js:17 +msgid "Main Course Page" +msgstr "Zur Kursseite zurückkehren" -#: assessment/displayq2.php:6440 assessment/displayq2.php:6780 -#, php-format -msgid "Enter a %s of numbers using scientific notation" -msgstr "Geben Sie ein %s von Zahlen in wissenschaftlicher Notation ein" +#: javascript/moveitem.js:46 +msgid "Top of the Block" +msgstr "Anfang des Blocks" -#: assessment/displayq2.php:6443 assessment/displayq2.php:6783 -#, php-format -msgid "Enter a %s of mathematical expressions" -msgstr "Geben sie ein %s von mathematischen Ausdrücken ein" +#: javascript/moveitem.js:46 +msgid "Top of the Page" +msgstr "Seitenanfang" -#: assessment/displayq2.php:6487 assessment/displayq2.php:6539 -#: assessment/displayq2.php:6827 assessment/displayq2.php:6884 -msgid "No solution" -msgstr "Keine Lösung" +#: javascript/rubric.js:291 javascript/rubric_min.js:1 +msgid "Quick feedback: " +msgstr "Schnelle Rückmeldung: " -#: assessment/displayq2.php:6488 assessment/displayq2.php:6540 -#: assessment/displayq2.php:6828 assessment/displayq2.php:6885 -msgid "Infinite number of solutions" -msgstr "Unendlich viele Lösungen" +#: javascript/rubric.js:292 javascript/rubric_min.js:1 +msgid "Good!" +msgstr "Gut!" -#: assessment/displayq2.php:6490 assessment/displayq2.php:6830 -msgid "One or more solutions: " -msgstr "Eine oder mehrere Lösungen: " +#: javascript/rubric.js:293 javascript/rubric_min.js:1 +msgid "Great work." +msgstr "Großartig." -#: assessment/displayq2.php:6492 assessment/displayq2.php:6836 -msgid "One solution: " -msgstr "Eine Lösung: " +#: javascript/rubric.js:294 javascript/rubric_min.js:1 +msgid "Excellent!" +msgstr "Exzellent!" -#: assessment/showsoln.php:19 -msgid "of a similar problem" -msgstr "eines ähnlichen Problems" +#: msgs/msglist.php:371 +msgid "Re: " +msgstr "Wg: " -#: assessment/showtest.php:2460 -msgid "This is a group assessment. Any changes affect all group members." -msgstr "" -"Dies ist ein Gruppentest. Jede Änderung betrifft alle Gruppenmitglieder" +#: msgs/msglist.php:373 +msgid "In reply to:" +msgstr "Antwort auf:" -#: assessment/showtest.php:3127 -msgid "point" -msgstr "Punkt" +#: msgs/msglist.php:465 msgs/msglist.php:520 +msgid "Select an individual" +msgstr "Wählen Sie einen Namen aus" -#: assessment/showtest.php:3127 -msgid "points" -msgstr "Punkte" +#: msgs/msglist.php:516 +msgid "Select a course" +msgstr "Kurs auswählen" -#: assessment/showtest.php:3127 -msgid "out of" -msgstr "von" +#: msgs/msglist.php:537 +msgid "Mark original message unread" +msgstr "Kennzeichne die Originalnachricht als ungelesen" -#: assessment/showtest.php:3129 -msgid "unattempted" -msgstr "nicht versucht" +#: msgs/msglist.php:604 +msgid "Tagged Messages" +msgstr "Markierte Nachrichten" -#: assessment/macros.php:2847 -msgid "No answer selected. Try again." -msgstr "Keine Antwort ausgewählt. Bitte erneut versuchen." +#: msgs/msglist.php:606 +msgid "New Messages" +msgstr "Neue Nachrichten" -#: assessment/macros.php:2876 -msgid "This answer does not appear to be a valid number." -msgstr "Diese Antwort scheint keine gültige Zahl zu sein." +#: msgs/msglist.php:628 msgs/msglist.php:936 +msgid "Send New Message" +msgstr "Neue Nachricht senden" -#: assessment/displayq2.php:956 -msgid "" -"Enter your answer as a list of whole or decimal numbers separated with " -"commas: Examples: -4, 3, 2.5172" -msgstr "" -"Geben Sie Ihre Antwort als Komma getrennte Liste von Ganz- oder " -"Dezimalzahlen ein: Beispiel: -4, 3, 2.5172" +#: msgs/msglist.php:759 msgs/sentlist.php:198 +msgid "Hidden: " +msgstr "Versteckt " -#: assessment/displayq2.php:959 -msgid "" -"Enter your answer as a set of whole or decimal numbers separated with " -"commas: Example: {-4, 3, 2.5172}" -msgstr "" -"Geben Sie Ihre Antwort als Komma getrennte Menge von Ganz- oder " -"Dezimalzahlen ein: Beispiel: {-4, 3, 2.5172}" +#: msgs/viewmsg.php:121 +msgid "To" +msgstr "An" -#: assessment/displayq2.php:962 -msgid "" -"Enter your answer as a whole or decimal number. Examples: 3, -4, 5.5172" -msgstr "" -"Geben Sie Ihre Antwort als Ganz- oder Dezimalzahl ein: Beispiele: 3, -4, " -"5.5172" +#: msgs/viewmsg.php:233 +msgid "Reply" +msgstr "Antwort" -#: assessment/displayq2.php:1819 assessment/displayq2.php:1879 -msgid "Enter your answer as a point. Example: (2,5.5172)" -msgstr "Geben Sie Ihre Antwort als Punkt ein. Beispiel: (2, 5.5172)" +#: msgs/viewmsg.php:235 +msgid "Are you SURE you want to delete this message?" +msgstr "Sind Sie SICHER, dass Sie diese Nachricht löschen wollen?" -#: assessment/displayq2.php:1822 assessment/displayq2.php:1882 -msgid "" -"Enter your answer a list of points separated with commas. Example: (1,2), " -"(3.5172,5)" -msgstr "" -"Geben Sie Ihre Antwort als Komma getrennte Liste von Punkten ein. Beispiel: " -"(1, 2), (3.5172, 5)" +#: msgs/viewmsg.php:243 +msgid "Mark Unread" +msgstr "Als ungelesen kennzeichnen" -#: assessment/displayq2.php:1828 assessment/displayq2.php:1888 -msgid "" -"Enter your answer a list of vectors separated with commas. Example: <1,2>, " -"<3.5172,5>" +#: multiembedq.php:253 +msgid "Enable text based alternatives for graph display and drawing entry" msgstr "" -"Geben Sie Ihre Antwort als Komma getrennte Liste von Vektoren ein. Beispiel: " -"<1, 2>, <3.5172, 5>" +"Schalte textbasierte Alternativen für Graphenanzeige und Zeichnungseingabe an" -#: assessment/displayq2.php:1834 assessment/displayq2.php:1894 -msgid "" -"Enter your answer as a list of n-tuples of numbers separated with commas: " -"Example: (1,2),(3.5172,4)" -msgstr "" -"Geben Sie Ihre Antwort als Komma getrennte Liste von n-Tupeln ein. Beispiel: " -"(1, 2), (3.5172, 4)" +#: multiembedq.php:262 +msgid "Try Another Version of These Questions" +msgstr "Versuche andere Versionen dieser Fragen" -#: assessment/displayq2.php:1837 assessment/displayq2.php:1897 -msgid "Enter your answer as an n-tuple of numbers. Example: (2,5.5172)" -msgstr "Geben Sie Ihre Antwort als n-Tupel ein. Beispiel: (2, 5.5172)" +#: multiembedq.php:264 +msgid "Try Another Version of This Question" +msgstr "Versuche eine andere Version dieser Frage" -#: assessment/displayq2.php:1885 -msgid "Enter your answer as a vector. Example: <2,5.5172>" -msgstr "Geben Sie Ihre Antwort als Vektor ein. Beispiel: <2, 5.5172>" +#: tinymce4/plugins/lists/plugin.min.js:1 +msgid "none()" +msgstr "none()" -#: assessment/displayq2.php:1950 -msgid "" -"Enter your answer as a list of complex numbers in a+bi form separated with " -"commas. Example: 2+5.5172i,-3-4i" -msgstr "" -"Geben Sie Ihre Antwort als Komma getrennte Liste von komplexen Zahlen in a" -"+bi Form ein. Beispiel: 2+5.5172i, -3-4i" +#: tinymce4/plugins/lists/plugin.min.js:1 +msgid "Edge" +msgstr "Rand" -#: assessment/displayq2.php:1953 -msgid "Enter your answer as a complex number in a+bi form. Example: 2+5.5172i" -msgstr "" -"Geben Sie Ihre Antwort als komplexe Zahl in a+bi Form ein. Beispiel: " -"2+5.5172i" +#: tinymce4/plugins/lists/plugin.min.js:1 +msgid "Chrome" +msgstr "Chrome" -#: assessment/displayq2.php:2284 -msgid "Enter your answer using interval notation. Example: [2.1,5.6172)" -msgstr "" -"Geben Sie Ihre Antwort in Intervallschreibweise ein. Beispiel: [2.1, 5.6172)" +#: tinymce4/plugins/lists/plugin.min.js:1 +msgid "IE" +msgstr "IE" -#: assessment/displayq2.php:2388 -msgid "Enter your answer using interval notation. Example: [2,5)" -msgstr "Geben Sie Ihre Antwort in Intervallschreibweise ein. Beispiel: [2, 5)" +#: tinymce4/plugins/lists/plugin.min.js:1 +msgid "Opera" +msgstr "Opera" -#: assessment/displayq2.php:2635 -msgid "Graph to add drawings to:" -msgstr "Graph, zu dem Zeichnungen hinzugefügt werden:" +#: tinymce4/plugins/lists/plugin.min.js:1 +msgid "Safari" +msgstr "Safari" -#: assessment/displayq2.php:2637 -msgid "Elements to draw:" -msgstr "Zu zeichnende Elemente" +#: tinymce4/plugins/lists/plugin.min.js:1 +msgid "Linux" +msgstr "Linux" -#: assessment/displayq2.php:2639 -msgid "Add new drawing element" -msgstr "Neues Zeichenelement hinzufügen" +#: tinymce4/plugins/lists/plugin.min.js:1 +msgid "OSX" +msgstr "OSX" -#: assessment/displayq2.php:6782 -#, php-format -msgid "" -"Enter %s as a number (like 5, -3, 2.2172) or as a calculation (like 5/3, " -"2^3, 5+4)" -msgstr "" -"Geben Sie %s als Zahl (wie etwa 5, -3, 2.2172) oder als Berechnung (wie etwa " -"5/3, 2^3, 5+4) ein." +#: util/listnewteachers.php:56 +msgid "Denied" +msgstr "Abgelehnt" -#: assessment/displayq2.php:6813 -msgid "Incorrect" -msgstr "Falsch" +#: util/listnewteachers.php:65 +msgid "Manually Upgraded" +msgstr "Manuell hochgestuft" -#: assessment/displayq2.php:6815 -msgid "Correct" -msgstr "Richtig" +#: util/listnewteachers.php:67 +msgid "Batch Added" +msgstr "Mit Liste hinzugefügt" -#: assessment/displayq2.php:6817 -msgid "Correct answer, but wrong format" -msgstr "Richtige Antwort, aber falsches Format" +#: util/listnewteachers.php:71 util/listnewteachers.php:76 +msgid "Request Form" +msgstr "Antragsformular" -#: assessment/displayq2.php:6819 -msgid "Partially correct" -msgstr "Teilweise richtig" +#: util/listnewteachers.php:73 +msgid "Manually Added" +msgstr "Manuell hinzugefügt" -#: assessment/displayq2.php:6832 -msgid "Interval notation solution: " -msgstr "Lösung in Intervallschreibweise: " +#: util/listnewteachers.php:114 +msgid "New Instructor Accounts" +msgstr "Neue Dozenten-Kennungen" -#: assessment/displayq2.php:6834 -msgid "Inequality notation solution: " -msgstr "Lösung als Ungleichung: " +#: util/listnewteachers.php:257 +msgid "Not approved" +msgstr "Nicht bestätigt" -#: footer.php:32 -msgid "[more..]" -msgstr "[mehr..]" +#: util/runcoursecleanup.php:110 +#, php-format +msgid "Your course, %s (ID %d) has been scheduled for cleanup on %s." +msgstr "Ihr Kurs %s (ID %d) ist zur Bereinigung am %s vorgesehen." -#: multiembedq.php:165 -msgid "Enable text based alternatives for graph display and drawing entry" -msgstr "Schalte textbasierte Alternativen für Graphenanzeige und Zeichnungseingabe an" +#: util/runcoursecleanup.php:112 +msgid "On that date, all student data from this courses will be deleted." +msgstr "" +"An diesem Tag werden alle Daten der Studierenden aus diesem Kurs gelöscht." -#: multiembedq.php:174 -msgid "Try Another Version of These Questions" -msgstr "Versuche andere Versionen dieser Fragen" +#: util/runcoursecleanup.php:113 +msgid "" +"If you need a copy of course grades for your records, it is recommened you " +"export the gradebook before that date." +msgstr "" +"Wenn Sie eine Kopie der Noten für Ihre Aufzeichnungen benötigen, so sollten " +"Sie die Notenübersicht vor diesem Tag exportieren." -#: multiembedq.php:176 -msgid "Try Another Version of This Question" -msgstr "Versuche eine andere Version dieser Frage" +#: util/runcoursecleanup.php:115 +msgid "" +"If there is a strong reason you need to retain your detailed student data " +"longer, you can disable this cleanup on your course settings page" +msgstr "" +"Wenn Sie wichtige Gründe haben um die Studierendendaten länger im Kurs zu " +"behalten, so können Sie die Bereinigung des Kurses in den Kurseinstellungen " +"deaktivieren" + +#: util/runcoursecleanup.php:119 +msgid "Course Cleanup Notification" +msgstr "Benachrichtigung übe die Bereinigung Ihres Kurses" + +#: wikis/editwiki.php:194 +msgid "Edit Wiki" +msgstr "Wiki bearbeiten" + +#: wikis/editwiki.php:230 +msgid "Save Revision" +msgstr "Änderung speichern" + +#~ msgid "" +#~ "Preferences saved. Your new preferences will go into effect when you " +#~ "visit a new page or load the current page." +#~ msgstr "" +#~ "Einstellungen gespeichert. Ihre neuen Einstellungen werden verwendet, " +#~ "wenn Sie eine neue Seite besuchen oder diese Seite neu laden." + +#~ msgid "" +#~ "Meanings: IP-In Progress (some unattempted questions), OT-overtime, PT-" +#~ "practice test, EC-extra credit, NC-no credit
d Dropped " +#~ "score. x Excused score. e Has exception LP Used latepass" +#~ msgstr "" +#~ "Bedeutung: IP-In Bearbeitung (einige nicht bearbeitete Fragen), OT-" +#~ "Zeitablauf, PT-Übungstest, EC-Extrapunkte, NC-keine Punkte
dx
Punkte bei Entschuldigt. " +#~ "eAusnahme LP Verspätet eingereicht" + +#~ msgid "" +#~ "Meanings: IP-In Progress (some unattempted questions), OT-overtime, PT-" +#~ "practice test, EC-extra credit, NC-no credit
* Has " +#~ "feedback, d Dropped score, x Excused score, e Has exception LP Used latepass" +#~ msgstr "" +#~ "Bedeutung: IP-In Bearbeitung (einige nicht bearbeitete Fragen), OT-" +#~ "Zeitablauf, PT-Übungstest, EC-Extrapunkte, NC-keine Punkte
* Mit Rückmeldung, dx Punkte " +#~ "bei Entschuldigt, e Ausnahme LP Verspätet " +#~ "eingereicht" + +#~ msgid "Export Calendar Feed" +#~ msgstr "Kalender-Feed exportieren" diff --git a/i18n/locale/de/LC_MESSAGES/de.mo b/i18n/locale/de/LC_MESSAGES/de.mo new file mode 100644 index 0000000000..457da33ef7 Binary files /dev/null and b/i18n/locale/de/LC_MESSAGES/de.mo differ diff --git a/i18n/locale/de/LC_MESSAGES/imathas.mo b/i18n/locale/de/LC_MESSAGES/imathas.mo deleted file mode 100644 index 0ec31747a3..0000000000 Binary files a/i18n/locale/de/LC_MESSAGES/imathas.mo and /dev/null differ diff --git a/i18n/locale/de/messages.js b/i18n/locale/de/messages.js index f8211c6f0c..4962bde8c2 100644 --- a/i18n/locale/de/messages.js +++ b/i18n/locale/de/messages.js @@ -1,128 +1,92 @@ var i18njs = { -"not a valid fraction": -"kein gültiger Bruch", + "not a valid fraction": "kein gültiger Bruch", -" invalid entry format": -" ungültiges Eingabeformat", + " invalid entry format": " ungültiges Eingabeformat", -"not a valid mixed number": -"keine gültige gemischte Zahl", + "not a valid mixed number": "keine gültige gemischte Zahl", -"not valid scientific notation": -"keine gültige wissenschaftliche Schreibweise", + "not valid scientific notation": + "keine gültige wissenschaftliche Schreibweise", -"no trig functions allowed": -"keine trigonometrischen Funktionen erlaubt", + "no trig functions allowed": "keine trigonometrischen Funktionen erlaubt", -"no decimals allowed": -"keine Dezimalstellen erlaubt", + "no decimals allowed": "keine Dezimalstellen erlaubt", -"syntax incomplete": -"Syntax unvollständig", + "syntax incomplete": "Syntax unvollständig", -"undefined": -"undefiniert", + undefined: "undefiniert", -"unmatched parens": -"unvollständige Klammerung", + "unmatched parens": "unvollständige Klammerung", -"use $1 instead of $2": -"benutzten Sie $1 anstelle von $2", + "use $1 instead of $2": "benutzten Sie $1 anstelle von $2", -"use function notation": -"benutzen Sie Funktionsnotation", + "use function notation": "benutzen Sie Funktionsnotation", -"no answer given": -"keine Antwort eingegeben", + "no answer given": "keine Antwort eingegeben", -"syntax ok": -"Syntax OK", + "syntax ok": "Syntax OK", -"syntax error": -"Syntaxfehler", + "syntax error": "Syntaxfehler", -"warning": -"Warnung", + warning: "Warnung", -"syntax error: this is not an equation": -"Syntaxfehler: Dies ist keine Gleichung", + "syntax error: this is not an equation": + "Syntaxfehler: Dies ist keine Gleichung", -"You have already submitted this page. Please be patient while your submission is processed.": -"Sie haben diese Seite bereits abgegeben. Bitte gedulden Sie sich, während Ihre Eingabe bearbeitet wird.", + "You have already submitted this page. Please be patient while your submission is processed.": + "Sie haben diese Seite bereits abgegeben. Bitte gedulden Sie sich, während Ihre Eingabe bearbeitet wird.", -"Submitting...": -"Verarbeitung läuft ...", + "Submitting...": "Verarbeitung läuft ...", -"Error Submitting.": -"Fehler bei der Verarbeitung.", + "Error Submitting.": "Fehler bei der Verarbeitung.", -"Submission Error": -"Verarbeitungfehler", + "Submission Error": "Verarbeitungfehler", -"Show Answers When Closed": -"Zeige Antworten beim Schliessen", + "Show Answers When Closed": "Zeige Antworten beim Schliessen", -"Clear results and generate a new version of this question": -"Lösche Ergebnisse und generiere eine neue Version dieser Frage", + "Clear results and generate a new version of this question": + "Lösche Ergebnisse und generiere eine neue Version dieser Frage", -"Saved": -"Gespeichert", + Saved: "Gespeichert", -"Error": -"Fehler", + Error: "Fehler", -"Show Answers": -"Zeige Antworten", + "Show Answers": "Zeige Antworten", -"Closing Student Input...": -"Schliesse Studenteneingabe...", + "Closing Student Input...": "Schliesse Studenteneingabe...", -"Open Student Input": -"Öffne Studenteneingabe", + "Open Student Input": "Öffne Studenteneingabe", -"Opening Student Input...": -"Öffne Studenteneingabe...", + "Opening Student Input...": "Öffne Studenteneingabe...", -"Close Student Input": -"Schliesse Studenteneingabe", + "Close Student Input": "Schliesse Studenteneingabe", -"Loading...": -"Laden...", + "Loading...": "Laden...", -"Question": -"Frage", + Question: "Frage", -"Frequency": -"Anzahl", + Frequency: "Anzahl", -"Answer": -"Antwort", + Answer: "Antwort", -"student": -"Student", + student: "Student", -"students": -"Studenten", + students: "Studenten", -"Waiting for the instructor to start a question": -"Warten, dass der Dozent eine Frage startet", + "Waiting for the instructor to start a question": + "Warten, dass der Dozent eine Frage startet", -"Submit": -"Abschicken", + Submit: "Abschicken", -"Saving...": -"Speichern...", + "Saving...": "Speichern...", -"result": -"Ergebnis", + result: "Ergebnis", -"results": -"Ergebnisse", + results: "Ergebnisse", -"received.": -"erhalten.", + "received.": "erhalten.", -"[more..]": -"[mehr..]" + "Evaluate.": "Auswerten.", + "[more..]": "[mehr..]" };