translated *_question to german
This commit is contained in:
parent
8e35c721d7
commit
1342dc49cf
|
@ -6,7 +6,7 @@ function admin_new_questions() {
|
||||||
$new_messages = sql_num_query("SELECT * FROM `Questions` WHERE `AID`=0");
|
$new_messages = sql_num_query("SELECT * FROM `Questions` WHERE `AID`=0");
|
||||||
|
|
||||||
if ($new_messages > 0)
|
if ($new_messages > 0)
|
||||||
return '<p class="notice"><a href="' . page_link_to("admin_questions") . '">There are unanswered questions!</a></p><hr />';
|
return '<p class="notice"><a href="' . page_link_to("admin_questions") . '">Es gibt unbeantwortete Fragen!</a></p><hr />';
|
||||||
}
|
}
|
||||||
|
|
||||||
return "";
|
return "";
|
||||||
|
@ -62,7 +62,7 @@ function admin_questions() {
|
||||||
sql_query("UPDATE `Questions` SET `AID`=" . sql_escape($user['UID']) . ", `Answer`='" . sql_escape($answer) . "' WHERE `QID`=" . sql_escape($id) . " LIMIT 1");
|
sql_query("UPDATE `Questions` SET `AID`=" . sql_escape($user['UID']) . ", `Answer`='" . sql_escape($answer) . "' WHERE `QID`=" . sql_escape($id) . " LIMIT 1");
|
||||||
header("Location: " . page_link_to("admin_questions"));
|
header("Location: " . page_link_to("admin_questions"));
|
||||||
} else
|
} else
|
||||||
return error("Please enter an answer!");
|
return error("Gib eine Antwort ein!");
|
||||||
} else
|
} else
|
||||||
return error("No question found.");
|
return error("No question found.");
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -6,14 +6,14 @@ function user_questions() {
|
||||||
$open_questions = "";
|
$open_questions = "";
|
||||||
$questions = sql_select("SELECT * FROM `Questions` WHERE `AID`=0 AND `UID`=" . sql_escape($user['UID']));
|
$questions = sql_select("SELECT * FROM `Questions` WHERE `AID`=0 AND `UID`=" . sql_escape($user['UID']));
|
||||||
foreach ($questions as $question)
|
foreach ($questions as $question)
|
||||||
$open_questions .= '<tr><td>' . str_replace("\n", '<br />', $question['Question']) . '</td><td><a href="' . page_link_to("user_questions") . '&action=delete&id=' . $question['QID'] . '">Delete</a></td><tr>';
|
$open_questions .= '<tr><td>' . str_replace("\n", '<br />', $question['Question']) . '</td><td><a href="' . page_link_to("user_questions") . '&action=delete&id=' . $question['QID'] . '">Löschen</a></td><tr>';
|
||||||
|
|
||||||
$answered_questions = "";
|
$answered_questions = "";
|
||||||
$questions = sql_select("SELECT * FROM `Questions` WHERE `AID`>0 AND `UID`=" . sql_escape($user['UID']));
|
$questions = sql_select("SELECT * FROM `Questions` WHERE `AID`>0 AND `UID`=" . sql_escape($user['UID']));
|
||||||
foreach ($questions as $question) {
|
foreach ($questions as $question) {
|
||||||
$answered_questions .= '<tr><td>' . str_replace("\n", '<br />', $question['Question']) . '</td>';
|
$answered_questions .= '<tr><td>' . str_replace("\n", '<br />', $question['Question']) . '</td>';
|
||||||
$answered_questions .= '<td>' . UID2Nick($question['AID']) . '</td><td>' . str_replace("\n", '<br />', $question['Answer']) . '</td>';
|
$answered_questions .= '<td>' . UID2Nick($question['AID']) . '</td><td>' . str_replace("\n", '<br />', $question['Answer']) . '</td>';
|
||||||
$answered_questions .= '<td><a href="' . page_link_to("user_questions") . '&action=delete&id=' . $question['QID'] . '">Delete</a></td><tr>';
|
$answered_questions .= '<td><a href="' . page_link_to("user_questions") . '&action=delete&id=' . $question['QID'] . '">Löschen</a></td><tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
return template_render('../templates/user_questions.html', array (
|
return template_render('../templates/user_questions.html', array (
|
||||||
|
@ -29,7 +29,7 @@ function user_questions() {
|
||||||
sql_query("INSERT INTO `Questions` SET `UID`=" . sql_escape($user['UID']) . ", `Question`='" . sql_escape($question) . "'");
|
sql_query("INSERT INTO `Questions` SET `UID`=" . sql_escape($user['UID']) . ", `Question`='" . sql_escape($question) . "'");
|
||||||
header("Location: " . page_link_to("user_questions"));
|
header("Location: " . page_link_to("user_questions"));
|
||||||
} else
|
} else
|
||||||
return error("Please enter a question!");
|
return error("Gib eine Frage ein!");
|
||||||
break;
|
break;
|
||||||
case 'delete' :
|
case 'delete' :
|
||||||
if (isset ($_REQUEST['id']) && preg_match("/^[0-9]{1,11}$/", $_REQUEST['id']))
|
if (isset ($_REQUEST['id']) && preg_match("/^[0-9]{1,11}$/", $_REQUEST['id']))
|
||||||
|
|
|
@ -4,6 +4,6 @@
|
||||||
<td> %answer_nick% </td>
|
<td> %answer_nick% </td>
|
||||||
<td> %answer% </td>
|
<td> %answer% </td>
|
||||||
<td>
|
<td>
|
||||||
<a href="%link%&action=delete&id=%question_id%">Delete</a>
|
<a href="%link%&action=delete&id=%question_id%">Löschen</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -5,10 +5,10 @@
|
||||||
<form action="%link%&action=answer" method="post">
|
<form action="%link%&action=answer" method="post">
|
||||||
<textarea name="answer"></textarea>
|
<textarea name="answer"></textarea>
|
||||||
<input type="hidden" name="id" value="%question_id%" />
|
<input type="hidden" name="id" value="%question_id%" />
|
||||||
<input type="submit" name="submit" value="Send" />
|
<input type="submit" name="submit" value="Speichern" />
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="%link%&action=delete&id=%question_id%">Delete</a>
|
<a href="%link%&action=delete&id=%question_id%">Löschen</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
<p>
|
<p>
|
||||||
Not yet answered questions:
|
Unbeantwortete Fragen:
|
||||||
</p>
|
</p>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
From
|
Von
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Question
|
Frage
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Answer
|
Antwort
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
|
|
||||||
|
@ -24,22 +24,22 @@
|
||||||
</table>
|
</table>
|
||||||
<hr/>
|
<hr/>
|
||||||
<p>
|
<p>
|
||||||
Answered questions:
|
Beantwortete Fragen:
|
||||||
</p>
|
</p>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
From
|
Von
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Question
|
Frage
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
From
|
Von
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Answer
|
Antwort
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<p>
|
<p>
|
||||||
Not yet answered questions:
|
Unbeantwortete Fragen:
|
||||||
</p>
|
</p>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
Question
|
Frage
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
|
|
||||||
|
@ -18,19 +18,19 @@
|
||||||
</table>
|
</table>
|
||||||
<hr/>
|
<hr/>
|
||||||
<p>
|
<p>
|
||||||
Answered questions:
|
Beantwortete Fragen:
|
||||||
</p>
|
</p>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
Question
|
Frage
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
From
|
Von
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Answer
|
Antwort
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
|
|
||||||
|
@ -43,18 +43,18 @@
|
||||||
</table>
|
</table>
|
||||||
<hr/>
|
<hr/>
|
||||||
<p>
|
<p>
|
||||||
Ask an arch angel:
|
Frage einen Orga:
|
||||||
</p>
|
</p>
|
||||||
<form action="%link%&action=ask" method="post">
|
<form action="%link%&action=ask" method="post">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
Question:
|
Frage:
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<textarea name="question"></textarea>
|
<textarea name="question"></textarea>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<input type="submit" name="submit" value="Ask" />
|
<input type="submit" name="submit" value="Fragen" />
|
||||||
</form>
|
</form>
|
Loading…
Reference in New Issue