*
* Pick your translator to translate the body of incoming mail messages
*
- * $Id$
+ * @version $Id$
* @package plugins
* @subpackage translate
*/
require_once(SM_PATH . 'functions/imap.php');
require_once(SM_PATH . 'include/load_prefs.php');
- displayPageHeader($color, 'None');
-
- if (isset($_POST['submit_translate']) && $_POST['submit_translate'] ) {
- if (isset($_POST['translate_translate_server'])) {
- setPref($data_dir, $username, 'translate_server', $_POST['translate_translate_server']);
- } else {
- setPref($data_dir, $username, 'translate_server', 'babelfish');
- }
-
- if (isset($_POST['translate_translate_location'])) {
- setPref($data_dir, $username, 'translate_location', $_POST['translate_translate_location']);
- } else {
- setPref($data_dir, $username, 'translate_location', 'center');
- }
-
- if (isset($_POST['translate_translate_show_read'])) {
- setPref($data_dir, $username, 'translate_show_read', '1');
- } else {
- setPref($data_dir, $username, 'translate_show_read', '');
- }
-
- if (isset($_POST['translate_translate_show_send'])) {
- setPref($data_dir, $username, 'translate_show_send', '1');
- } else {
- setPref($data_dir, $username, 'translate_show_send', '');
- }
-
- if (isset($_POST['translate_translate_same_window'])) {
- setPref($data_dir, $username, 'translate_same_window', '1');
- } else {
- setPref($data_dir, $username, 'translate_same_window', '');
- }
+displayPageHeader($color, 'None');
+
+if (isset($_POST['submit_translate']) && $_POST['submit_translate'] ) {
+ if (isset($_POST['translate_translate_server'])) {
+ setPref($data_dir, $username, 'translate_server', $_POST['translate_translate_server']);
+ } else {
+ setPref($data_dir, $username, 'translate_server', 'babelfish');
}
- $translate_server = getPref($data_dir, $username, 'translate_server');
- if ($translate_server == '') {
- $translate_server = 'babelfish';
+ if (isset($_POST['translate_translate_location'])) {
+ setPref($data_dir, $username, 'translate_location', $_POST['translate_translate_location']);
+ } else {
+ setPref($data_dir, $username, 'translate_location', 'center');
}
- $translate_location = getPref($data_dir, $username, 'translate_location');
- if ($translate_location == '') {
- $translate_location = 'center';
+
+ if (isset($_POST['translate_translate_show_read'])) {
+ setPref($data_dir, $username, 'translate_show_read', '1');
+ } else {
+ setPref($data_dir, $username, 'translate_show_read', '');
}
- $translate_show_read = getPref($data_dir, $username, 'translate_show_read');
- $translate_show_send = getPref($data_dir, $username, 'translate_show_send');
- $translate_same_window = getPref($data_dir, $username, 'translate_same_window');
-
- function ShowOption($Var, $value, $Desc)
- {
- $Var = 'translate_' . $Var;
+ if (isset($_POST['translate_translate_show_send'])) {
+ setPref($data_dir, $username, 'translate_show_send', '1');
+ } else {
+ setPref($data_dir, $username, 'translate_show_send', '');
+ }
- global $$Var;
+ if (isset($_POST['translate_translate_same_window'])) {
+ setPref($data_dir, $username, 'translate_same_window', '1');
+ } else {
+ setPref($data_dir, $username, 'translate_same_window', '');
+ }
+}
- echo '<option value="' . $value . '"';
- if ($$Var == $value)
- {
- echo ' SELECTED';
- }
- echo '>' . $Desc . "</option>\n";
+$translate_server = getPref($data_dir, $username, 'translate_server');
+if ($translate_server == '') {
+ $translate_server = 'babelfish';
+}
+$translate_location = getPref($data_dir, $username, 'translate_location');
+if ($translate_location == '') {
+ $translate_location = 'center';
+}
+$translate_show_read = getPref($data_dir, $username, 'translate_show_read');
+$translate_show_send = getPref($data_dir, $username, 'translate_show_send');
+$translate_same_window = getPref($data_dir, $username, 'translate_same_window');
+
+/**
+ * FIXME: undocumented function
+ * @access private
+ */
+function ShowOption($Var, $value, $Desc) {
+ $Var = 'translate_' . $Var;
+
+ global $$Var;
+
+ echo '<option value="' . $value . '"';
+ if ($$Var == $value) {
+ echo ' selected';
}
+ echo '>' . $Desc . "</option>\n";
+}
- function ShowTrad( $tit, $com, $url ) {
+/**
+ * FIXME: undocumented function
+ * @access private
+ */
+function ShowTrad( $tit, $com, $url ) {
- echo "<li><b>$tit</b> - ".
- $com .
- "[ <a href=\"$url\" target=\"_blank\">$tit</a> ]</li>";
+ echo "<li><b>$tit</b> - ".
+ $com .
+ "[ <a href=\"$url\" target=\"_blank\">$tit</a> ]</li>";
- }
+}
?>
- <table width="95%" align=center border=0 cellpadding=1 cellspacing=0><tr><td bgcolor="<?php echo $color[0] ?>">
+ <table width="95%" align="center" border=0 cellpadding=1 cellspacing=0><tr><td bgcolor="<?php echo $color[0] ?>">
<center><b><?php echo _("Options") . ' - '. _("Translator"); ?></b></center>
</td></tr></table>
echo _("You also decide if you want the translation box displayed, and where it will be located.") .
"<form action=\"$PHP_SELF\" method=post>".
'<table border=0 cellpadding=0 cellspacing=2>'.
- '<tr><td align=right nowrap>' .
+ '<tr><td align="right" nowrap>' .
_("Select your translator:") .
'</td>'.
'<td><select name="translate_translate_server">';
echo '</select>' .
'</td></tr>' .
'<tr>'.html_tag('td',_("When reading:"),'right','','nowrap').
- '<td><input type=checkbox name="translate_translate_show_read"';
+ '<td><input type="checkbox" name="translate_translate_show_read"';
if ($translate_show_read)
- echo " CHECKED";
- echo '> - ' . _("Show translation box") .
+ echo " checked";
+ echo ' /> - ' . _("Show translation box") .
' <select name="translate_translate_location">';
ShowOption('location', 'left', _("to the left"));
ShowOption('location', 'center', _("in the center"));
ShowOption('location', 'right', _("to the right"));
- echo '</select><br>'.
- '<input type=checkbox name="translate_translate_same_window"';
+ echo '</select><br />'.
+ '<input type="checkbox" name="translate_translate_same_window"';
if ($translate_same_window)
- echo " CHECKED";
- echo '> - ' . _("Translate inside the SquirrelMail frames").
+ echo " checked";
+ echo ' /> - ' . _("Translate inside the SquirrelMail frames").
"</td></tr>\n";
$disable_compose_translate=true;
echo '<tr>'.html_tag('td',_("When composing:"),'right','','nowrap').
'<td><input type=checkbox name="translate_translate_show_send"';
if ($translate_show_send)
- echo " CHECKED";
- echo '> - ' . _("Not yet functional, currently does nothing") .
+ echo " checked";
+ echo ' /> - ' . _("Not yet functional, currently does nothing") .
"</td></tr>\n";
}
echo '<tr><td></td><td>'.
'</form>'.
"</body></html>\n";
-?>
+?>
\ No newline at end of file
* Copyright (c) 1999-2004 The SquirrelMail Project Team
* Licensed under the GNU GPL. For full terms see the file COPYING.
*
- * $Id$
+ * @version $Id$
* @package plugins
* @subpackage translate
*/
/**
* Initialize the translation plugin
* @return void
+ * @access private
*/
function squirrelmail_plugin_init_translate() {
global $squirrelmail_plugin_hooks;
/**
* Shows translation box in message display window
+ * @access private
*/
function translate_read_form() {
global $color, $translate_server;
/**
* Closes table tags in translation box
+ * @access private
*/
function translate_table_end() {
?></td>
}
/**
- * FIXME:
- * Undocumented function.
+ * FIXME: Undocumented function.
+ * @access private
*/
function translate_button() {
global $translate_show_send;
/**
* Adds translation option block
+ * @access private
*/
function translate_optpage_register_block() {
global $optpage_blocks;
/**
* Gets user's translation preferences
+ * @access private
*/
function translate_pref() {
global $username, $data_dir;
/**
* Tries to select default translation combination
- *
- * @param string $test language code that has to be tested.
- * @returm boolean true if language code matches user's language.
*
* This function could be speed up.
* It basically negates the process if a ! is found in the beginning and
* matches a * at the end with 0 or more characters.
+ *
+ * @param string $test language code that has to be tested.
+ * @return boolean true if language code matches user's language.
+ * @access private
*/
function translate_does_it_match_language($test) {
global $squirrelmail_language;
/**
* Creates language option selection box.
+ *
+ * @access private
*/
function translate_lang_opt($from, $to, $value, $text) {
global $translate_dir;
* Starts translation box
*
* @param string $action url that has to recieve message for translation
+ * @access private
*/
function translate_new_form($action) {
global $translate_dir, $translate_new_window, $translate_location;
* Babelfish translation engine functions
*
* @param string $message text that has to be translated.
+ * @access private
*/
function translate_form_babelfish($message) {
translate_new_form('http://babelfish.altavista.com/babelfish/tr');
* go.com translation engine (disabled)
*
* @param string $message text that has to be translated
+ * @access private
*/
function translate_form_go($message) {
translate_new_form('http://translator.go.com/cb/trans_entry');
* intertran translation engine
*
* @param string $message text that has to be translated
+ * @access private
*/
function translate_form_intertran($message) {
translate_new_form('http://www.tranexp.com:2000/InterTran');
* gpltrans translation engine
*
* @param string $message text that has to be translated
+ * @access private
*/
function translate_form_gpltrans($message) {
translate_new_form('http://www.translator.cx/cgi-bin/gplTrans');
* reference.com (dictionary) translation engine
*
* @param string $message text that has to be translated
+ * @access private
*/
function translate_form_dictionary($message) {
translate_new_form('http://dictionary.reference.com/translate/text.html');
* otenet translation engine
*
* @param string $message text that has to be translated
+ * @access private
*/
function translate_form_otenet($message) {
translate_new_form('http://systran.otenet.gr/cgi-bin/systran.cgi');
* promt translation engine
*
* @param string $message text that has to be translated
+ * @access private
*/
function translate_form_promt($message) {
translate_new_form('http://www.translate.ru/text.asp#tr_form');
* google translation engine
*
* @param string $message text that has to be translated
+ * @access private
*/
function translate_form_google($message) {
translate_new_form('http://www.google.com/translate_t');
translate_table_end();
}
-?>
+?>
\ No newline at end of file