Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 659)
+++ trunk/CHANGELOG	(revision 660)
@@ -13,7 +13,8 @@
 ------------------------------------- 2.7.0 -------------------------------------
 02-Feb-2008 Christian Sommer
 #	fixed wrong redirect in /admin/images
-02-Feb-2008 Thomas Hornik
+02-Feb-2008 Thomas Hornik
++	Added missing text in languages files for jscalendar
 !	settings: pages-directory '/' will be converted to '' (empty string) on save.
 !	changed last remaining call to my_htmlspecialchars() to htmlspecialchars()
 #	fixed path in jscalendar-css
Index: trunk/wb/admin/pages/sections.php
===================================================================
--- trunk/wb/admin/pages/sections.php	(revision 659)
+++ trunk/wb/admin/pages/sections.php	(revision 660)
@@ -196,12 +196,12 @@
 				</td>
 				<?php } // jscalendar-stuff following ?>
 				<td><input type="text" id="start_date<?php echo $section['section_id']; ?>" name="start_date<?php echo $section['section_id']; ?>" value="<?php if($section['publ_start']==0) print ""; else print date($jscal_format, $section['publ_start'])?>" style="width: 120px;" />
-					<img src="<?php echo ADMIN_URL ?>/images/clock_16.png" id="trigger_start<?php echo $section['section_id']; ?>" style="cursor: pointer;" title="Calendar" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" />
-					<img src="<?php echo ADMIN_URL ?>/images/clock_del_16.png" style="cursor: pointer;" title="delete date" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" onclick="document.section_properties.start_date<?php echo $section['section_id']; ?>.value=''" />
+					<img src="<?php echo ADMIN_URL ?>/images/clock_16.png" id="trigger_start<?php echo $section['section_id']; ?>" style="cursor: pointer;" title="<?php echo $TEXT['CALENDAR']; ?>" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" />
+					<img src="<?php echo ADMIN_URL ?>/images/clock_del_16.png" style="cursor: pointer;" title="<?php echo $TEXT['DELETE_DATE']; ?>" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" onclick="document.section_properties.start_date<?php echo $section['section_id']; ?>.value=''" />
 				</td>
 				<td><input type="text" id="end_date<?php echo $section['section_id']; ?>" name="end_date<?php echo $section['section_id']; ?>" value="<?php if($section['publ_end']==0) print ""; else print date($jscal_format, $section['publ_end'])?>" style="width: 120px;" />
-					<img src="<?php echo ADMIN_URL ?>/images/clock_16.png" id="trigger_stop<?php echo $section['section_id']; ?>" style="cursor: pointer;" title="Calendar" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" />
-					<img src="<?php echo ADMIN_URL ?>/images/clock_del_16.png" style="cursor: pointer;" title="delete date" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" onclick="document.section_properties.end_date<?php echo $section['section_id']; ?>.value=''"/>
+					<img src="<?php echo ADMIN_URL ?>/images/clock_16.png" id="trigger_stop<?php echo $section['section_id']; ?>" style="cursor: pointer;" title="<?php echo $TEXT['CALENDAR']; ?>" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" />
+					<img src="<?php echo ADMIN_URL ?>/images/clock_del_16.png" style="cursor: pointer;" title="<?php echo $TEXT['DELETE_DATE']; ?>" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" onclick="document.section_properties.end_date<?php echo $section['section_id']; ?>.value=''"/>
 				</td>
 				<td width="20">
 					<?php if($section['position'] != 1) { ?>
Index: trunk/wb/languages/FI.php
===================================================================
--- trunk/wb/languages/FI.php	(revision 659)
+++ trunk/wb/languages/FI.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/EN.php
===================================================================
--- trunk/wb/languages/EN.php	(revision 659)
+++ trunk/wb/languages/EN.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt';
 $TEXT['PUBL_START_DATE'] = 'Start date';
 $TEXT['PUBL_END_DATE'] = 'End date';
+$TEXT['CALENDAR'] = 'Calender';
+$TEXT['DELETE_DATE'] = 'Delete date';
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.';
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail';
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name';
Index: trunk/wb/languages/PT_br.php
===================================================================
--- trunk/wb/languages/PT_br.php	(revision 659)
+++ trunk/wb/languages/PT_br.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/ES.php
===================================================================
--- trunk/wb/languages/ES.php	(revision 659)
+++ trunk/wb/languages/ES.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/FR.php
===================================================================
--- trunk/wb/languages/FR.php	(revision 659)
+++ trunk/wb/languages/FR.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/SE.php
===================================================================
--- trunk/wb/languages/SE.php	(revision 659)
+++ trunk/wb/languages/SE.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/ET.php
===================================================================
--- trunk/wb/languages/ET.php	(revision 659)
+++ trunk/wb/languages/ET.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/HR.php
===================================================================
--- trunk/wb/languages/HR.php	(revision 659)
+++ trunk/wb/languages/HR.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/NL.php
===================================================================
--- trunk/wb/languages/NL.php	(revision 659)
+++ trunk/wb/languages/NL.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/HU.php
===================================================================
--- trunk/wb/languages/HU.php	(revision 659)
+++ trunk/wb/languages/HU.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/IT.php
===================================================================
--- trunk/wb/languages/IT.php	(revision 659)
+++ trunk/wb/languages/IT.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/LV.php
===================================================================
--- trunk/wb/languages/LV.php	(revision 659)
+++ trunk/wb/languages/LV.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/CA.php
===================================================================
--- trunk/wb/languages/CA.php	(revision 659)
+++ trunk/wb/languages/CA.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/DA.php
===================================================================
--- trunk/wb/languages/DA.php	(revision 659)
+++ trunk/wb/languages/DA.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/TR.php
===================================================================
--- trunk/wb/languages/TR.php	(revision 659)
+++ trunk/wb/languages/TR.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max lines of excerpt'; //needs to be translated
 $TEXT['PUBL_START_DATE'] = 'Start date'; //needs to be translated
 $TEXT['PUBL_END_DATE'] = 'End date'; //needs to be translated
+$TEXT['CALENDAR'] = 'Calender'; //needs to be translated
+$TEXT['DELETE_DATE'] = 'Delete date'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Please specify a default "FROM" address and "SENDER" name below. It is recommended to use a FROM address like: <strong>admin@yourdomain.com</strong>. Some mail provider (e.g. <em>mail.com</em>) may reject mails with a FROM: address like <em>name@mail.com</em> sent via a foreign relay to avoid spam.<br /><br />The default values are only used if no other values are specified by Website Baker. If your server supports <acronym title="Simple mail transfer protocol">SMTP</acronym>, you may want use this option for outgoing mails.'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Default From Mail'; //needs to be translated
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Default Sender Name'; //needs to be translated
Index: trunk/wb/languages/DE.php
===================================================================
--- trunk/wb/languages/DE.php	(revision 659)
+++ trunk/wb/languages/DE.php	(revision 660)
@@ -403,6 +403,8 @@
 $TEXT['MAX_EXCERPT'] = 'Max Anzahl Treffer';
 $TEXT['PUBL_START_DATE'] = 'Start Datum';
 $TEXT['PUBL_END_DATE'] = 'End Datum';
+$TEXT['CALENDAR'] = 'Kalender';
+$TEXT['DELETE_DATE'] = 'Datum l&ouml;schen';
 $TEXT['WBMAILER_DEFAULT_SETTINGS_NOTICE'] = 'Bitte gebe Standard "VON" Adresse und einen Senddernamen an. Als Absender Adresse empfiehlt sich ein Format wie: <strong>admin@DeineWebseite.de</strong>. Manche E-Mail-Provider (z.B. <em>mail.de</em>) stellen keine E-Mails zu, die nicht &uuml;ber den Provider selbst verschickt wurden, in der Absenderadresse aber den Namen des E-Mail-Providers <em>name@mail.de</em> enthalten. Die Standard Werte werden nur verwendet, wenn keine anderen Werte von Website Baker gesetzt wurden. Wenn Dein Service Provider <acronym title="Simple Mail Transfer Protocol">SMTP</acronym> anbietet, solltest Du diese Option f&uuml;r ausgehende E-Mails verwenden.';
 $TEXT['WBMAILER_DEFAULT_SENDER_MAIL'] = 'Standard "VON" Adresse';
 $TEXT['WBMAILER_DEFAULT_SENDER_NAME'] = 'Standard Absender Name';
Index: trunk/wb/modules/news/modify_post.php
===================================================================
--- trunk/wb/modules/news/modify_post.php	(revision 659)
+++ trunk/wb/modules/news/modify_post.php	(revision 660)
@@ -116,8 +116,8 @@
 	<td><?php echo $TEXT['PUBL_START_DATE']; ?>:</td>
 	<td>
 	<input type="text" id="publishdate" name="publishdate" value="<?php if($fetch_content['published_when']==0) print date($jscal_format, strtotime((date('Y-m-d')))); else print date($jscal_format, $fetch_content['published_when']);?>" style="width: 120px;" />
-	<img src="<?php echo ADMIN_URL ?>/images/clock_16.png" id="publishdate_trigger" style="cursor: pointer;" title="Calendar" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" />
-	<img src="<?php echo ADMIN_URL ?>/images/clock_del_16.png" style="cursor: pointer;" title="delete date" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" onclick="document.modify.publishdate.value=''" />
+	<img src="<?php echo ADMIN_URL ?>/images/clock_16.png" id="publishdate_trigger" style="cursor: pointer;" title="<?php echo $TEXT['CALENDAR']; ?>" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" />
+	<img src="<?php echo ADMIN_URL ?>/images/clock_del_16.png" style="cursor: pointer;" title="<?php echo $TEXT['DELETE_DATE']; ?>" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" onclick="document.modify.publishdate.value=''" />
 	</td>
 </tr>
 <tr>
@@ -124,8 +124,8 @@
 	<td><?php echo $TEXT['PUBL_END_DATE']; ?>:</td>
 	<td>
 	<input type="text" id="enddate" name="enddate" value="<?php if($fetch_content['published_until']==0) print ""; else print date($jscal_format, $fetch_content['published_until'])?>" style="width: 120px;" />
-	<img src="<?php echo ADMIN_URL ?>/images/clock_16.png" id="enddate_trigger" style="cursor: pointer;" title="Calendar" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" />
-	<img src="<?php echo ADMIN_URL ?>/images/clock_del_16.png" style="cursor: pointer;" title="delete date" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" onclick="document.modify.enddate.value=''" />
+	<img src="<?php echo ADMIN_URL ?>/images/clock_16.png" id="enddate_trigger" style="cursor: pointer;" title="<?php echo $TEXT['CALENDAR']; ?>" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" />
+	<img src="<?php echo ADMIN_URL ?>/images/clock_del_16.png" style="cursor: pointer;" title="<?php echo $TEXT['DELETE_DATE']; ?>" onmouseover="this.style.background='lightgrey';" onmouseout="this.style.background=''" onclick="document.modify.enddate.value=''" />
 	</td>
 </tr>
 </table>
