mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Translation setup for footer in the default theme.
This commit is contained in:
@@ -48,4 +48,20 @@ $text['theme-label-search']['pl'] = "Poszukiwanie...";
|
||||
$text['theme-label-search']['uk'] = "Пошук...";
|
||||
$text['theme-label-search']['sv-se'] = "Sök...";
|
||||
|
||||
$text['theme-label-copyright']['en-us'] = "Copyright";
|
||||
$text['theme-label-copyright']['es-cl'] = "";
|
||||
$text['theme-label-copyright']['pt-pt'] = "";
|
||||
$text['theme-label-copyright']['fr-fr'] = "";
|
||||
$text['theme-label-copyright']['pl'] = "";
|
||||
$text['theme-label-copyright']['uk'] = "";
|
||||
$text['theme-label-copyright']['sv-se'] = "";
|
||||
|
||||
$text['theme-label-all_rights_reserved']['en-us'] = "All rights reserved.";
|
||||
$text['theme-label-all_rights_reserved']['es-cl'] = "";
|
||||
$text['theme-label-all_rights_reserved']['pt-pt'] = "";
|
||||
$text['theme-label-all_rights_reserved']['fr-fr'] = "";
|
||||
$text['theme-label-all_rights_reserved']['pl'] = "";
|
||||
$text['theme-label-all_rights_reserved']['uk'] = "";
|
||||
$text['theme-label-all_rights_reserved']['sv-se'] = "";
|
||||
|
||||
?>
|
||||
@@ -1889,7 +1889,17 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td style='width: 100%; height: 40px; vertical-align: bottom;'>
|
||||
<div id='footer' style='width: 100%;'><span class='footer'>© Copyright 2008 - <?php echo date("Y"); ?> <a href='http://www.fusionpbx.com' class='footer' target='_blank'>fusionpbx.com</a>. All rights reserved.</span></div>
|
||||
<div id='footer' style='width: 100%;'><span class='footer'>
|
||||
<?php
|
||||
if (isset($_SESSION['theme']['footer']['text'])) {
|
||||
echo $_SESSION['theme']['footer']['text'];
|
||||
}
|
||||
else {
|
||||
echo "© ".$text['theme-label-copyright']." 2008 - ".date("Y")."<a href='http://www.fusionpbx.com' class='footer' target='_blank'>fusionpbx.com</a>".$text['theme-label-all_rights_reserved'];
|
||||
}
|
||||
?>
|
||||
</span>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user