diff options
author | Philip Häusler <msquare@notrademark.de> | 2011-09-14 22:50:16 +0200 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2011-09-14 22:50:16 +0200 |
commit | 1342dc49cf1789f9d54cb3c7be327c68f403a0f7 (patch) | |
tree | a2619a351edfa0f5db1a92287be256f1ed36977c /includes/pages/admin_questions.php | |
parent | 8e35c721d7eb8ff7a56badb39bfe2e5cbb21c8ed (diff) |
translated *_question to german
Diffstat (limited to 'includes/pages/admin_questions.php')
-rw-r--r-- | includes/pages/admin_questions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/pages/admin_questions.php b/includes/pages/admin_questions.php index 0e4469d5..0be05c7b 100644 --- a/includes/pages/admin_questions.php +++ b/includes/pages/admin_questions.php @@ -6,7 +6,7 @@ function admin_new_questions() { $new_messages = sql_num_query("SELECT * FROM `Questions` WHERE `AID`=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 ""; @@ -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"); header("Location: " . page_link_to("admin_questions")); } else - return error("Please enter an answer!"); + return error("Gib eine Antwort ein!"); } else return error("No question found."); break; |