From 1342dc49cf1789f9d54cb3c7be327c68f403a0f7 Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Wed, 14 Sep 2011 22:50:16 +0200 Subject: translated *_question to german --- includes/pages/user_questions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'includes/pages/user_questions.php') diff --git a/includes/pages/user_questions.php b/includes/pages/user_questions.php index 4e9daa5a..18b9c6dd 100644 --- a/includes/pages/user_questions.php +++ b/includes/pages/user_questions.php @@ -6,14 +6,14 @@ function user_questions() { $open_questions = ""; $questions = sql_select("SELECT * FROM `Questions` WHERE `AID`=0 AND `UID`=" . sql_escape($user['UID'])); foreach ($questions as $question) - $open_questions .= '' . str_replace("\n", '
', $question['Question']) . 'Delete'; + $open_questions .= '' . str_replace("\n", '
', $question['Question']) . 'Löschen'; $answered_questions = ""; $questions = sql_select("SELECT * FROM `Questions` WHERE `AID`>0 AND `UID`=" . sql_escape($user['UID'])); foreach ($questions as $question) { $answered_questions .= '' . str_replace("\n", '
', $question['Question']) . ''; $answered_questions .= '' . UID2Nick($question['AID']) . '' . str_replace("\n", '
', $question['Answer']) . ''; - $answered_questions .= 'Delete'; + $answered_questions .= 'Löschen'; } 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) . "'"); header("Location: " . page_link_to("user_questions")); } else - return error("Please enter a question!"); + return error("Gib eine Frage ein!"); break; case 'delete' : if (isset ($_REQUEST['id']) && preg_match("/^[0-9]{1,11}$/", $_REQUEST['id'])) -- cgit v1.2.3-54-g00ecf