Internationalization
[squirrelmail.git] / plugins / newmail / testsound.php
index 583dd8f192b58b46995879bac7423f2af4f11dd5..1ae75739c6dfbbd8ab5aa97d2d0dd6901b0b48f8 100644 (file)
    if (!isset($sound)) {
     $sound = "Click.wav";
    }
-   $sound = str_replace("../plugins/newmail/", "", $sound);
-   $sound = str_replace("../", "", $sound);
-   $sound = str_replace("..\\", "", $sound);
-?>
-<HTML>
-<TITLE>Test Sound</TITLE>
-<BODY bgcolor=<?php echo $color[4] ?> topmargin=0 leftmargin=0
-rightmargin=0 marginwidth=0 marginheight=0>
-<CENTER>
-<embed src="<?php echo $sound ?>" hidden=true autostart=true>
-<br>
-<font face="Veranda, Arial Helvetica, sans-serif" size="2" </font>
-<b>Loading the sound...</b><br><br>
-<form>
-<input type="button" name="close" value="  Close  " onClick="window.close()">
-</form>
-</CENTER>
-</BODY></HTML>
+   $sound = str_replace('../plugins/newmail/', '', $sound);
+   $sound = str_replace('../', '', $sound);
+   $sound = str_replace("..\\", '', $sound);
+
+   displayHtmlHeader( _("Test Sound"), '', FALSE );
+
+   echo "<BODY bgcolor=\"$color[4]\" topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>\n".
+        '<CENTER>'.
+        "<embed src=\"$sound\" hidden=true autostart=true>".
+        '<br>'.
+        '<b>' . _("Loading the sound...") . '</b><br><br>'.
+        '<form>'.
+        '<input type="button" name="close" value="  ' .
+        _("Close") .
+        '  " onClick="window.close()">'.
+        '</form>'.
+        '</CENTER>'.
+        '</BODY></HTML>';
+
+?>
\ No newline at end of file