summaryrefslogtreecommitdiff
path: root/includes/pages/user_wakeup.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pages/user_wakeup.php')
-rw-r--r--includes/pages/user_wakeup.php39
1 files changed, 21 insertions, 18 deletions
diff --git a/includes/pages/user_wakeup.php b/includes/pages/user_wakeup.php
index 63aff97c..4ac5c0b7 100644
--- a/includes/pages/user_wakeup.php
+++ b/includes/pages/user_wakeup.php
@@ -1,4 +1,8 @@
<?php
+function wakeup_title() {
+ return _("Wakeup");
+}
+
function user_wakeup() {
global $user;
@@ -17,37 +21,36 @@ function user_wakeup() {
. sql_escape($date) . "', '" . sql_escape($ort) . "', " . "'"
. sql_escape($bemerkung) . "')";
sql_query($SQL);
- $html .= success(Get_Text(4), true);
+ $html .= success(_("Entry saved."), true);
} else
- $html .= error("Broken date!", true);
+ $html .= error(_("Broken date!"), true);
break;
case 'delete' :
if (isset ($_REQUEST['id']) && preg_match("/^[0-9]{1,11}$/", $_REQUEST['id']))
$id = $_REQUEST['id'];
else
- return error("Incomplete call, missing wake-up ID.", true);
+ return error(_("Incomplete call, missing wake-up ID."), true);
$wakeup = sql_select("SELECT * FROM `Wecken` WHERE `ID`=" . sql_escape($id) . " LIMIT 1");
if (count($wakeup) > 0 && $wakeup[0]['UID'] == $user['UID']) {
sql_query("DELETE FROM `Wecken` WHERE `ID`=" . sql_escape($id) . " LIMIT 1");
- $html .= success("Wake-up call deleted.", true);
+ $html .= success(_("Wake-up call deleted."), true);
} else
- return error("No wake-up found.", true);
+ return error(_("No wake-up found."), true);
break;
}
}
- $html .= "<p>" . Get_Text("Hello") . User_Nick_render($user) . ",<br />"
- . Get_Text("pub_wake_beschreibung") . "</p>\n\n";
- $html .= Get_Text("pub_wake_beschreibung2");
+ $html .= '<p>' . sprintf(_("Hello %s, here you can register for a wake-up call. Simply say when and where the angel should come to wake you."), User_Nick_render($user)) . '</p>';
+ $html .= _("All ordered wake-up calls, next first.");
$html .= '
<table border="0" width="100%" class="border" cellpadding="2" cellspacing="1">
<tr class="contenttopic">
- <th>' . Get_Text("pub_wake_Datum") . '</th>
- <th>' . Get_Text("pub_waeckliste_Nick") . '</th>
- <th>' . Get_Text("pub_wake_Ort") . '</th>
- <th>' . Get_Text("pub_wake_Bemerkung") . '</th>
+ <th>' . _("Date") . '</th>
+ <th>' . _("Nick") . '</th>
+ <th>' . _("Place") . '</th>
+ <th>' . _("Notes") . '</th>
<th></th>
</tr>
';
@@ -65,22 +68,22 @@ function user_wakeup() {
$html .= '<td>' . $wecken['Ort'] . ' </td>';
$html .= '<td>' . $wecken['Bemerkung'] . ' </td>';
if ($wecken['UID'] == $user['UID'])
- $html .= '<td><a href="' . page_link_to("user_wakeup") . '&action=delete&id=' . $wecken['ID'] . "\">" . Get_Text("pub_wake_del") . '</a></td>';
+ $html .= '<td><a href="' . page_link_to("user_wakeup") . '&action=delete&id=' . $wecken['ID'] . "\">" . _("delete") . '</a></td>';
else
$html .= '<td></td>';
$html .= '</tr>';
}
- $html .= '</table><hr />' . Get_Text("pub_wake_Text2");
+ $html .= '</table><hr />' . _("Schedule a new wake-up here:");
$html .= template_render('../templates/user_wakeup.html', array (
'wakeup_link' => page_link_to("user_wakeup"),
- 'date_text' => Get_Text("pub_wake_Datum"),
+ 'date_text' => _("Date"),
'date_value' => date("Y-m-d H:i"),
- 'place_text' => Get_Text("pub_wake_Ort"),
- 'comment_text' => Get_Text("pub_wake_Bemerkung"),
+ 'place_text' => _("Place"),
+ 'comment_text' => _("Notes"),
'comment_value' => "Knock knock Leo, follow the white rabbit to the blue tent",
- 'submit_text' => Get_Text("pub_wake_bouton")
+ 'submit_text' => _("Save")
));
return $html;
}