renamed links

This commit is contained in:
Rudi Grinberg 2012-11-13 15:10:07 -05:00 committed by denise
parent e0b19cc2d1
commit 15741bdfa9
57 changed files with 140 additions and 140 deletions

View file

@ -1,4 +1,4 @@
<div id="watched-folder-section" class="ui-widget ui-widget-content block-shadow simple-formblock clearfix padded-strong manage-folders">
<h2>Manage Media Folders</h2>
<h2><? echo _("Manage Media Folders") ?></h2>
<?php echo $this->form; ?>
</div>

View file

@ -1,9 +1,9 @@
<div class="ui-widget ui-widget-content block-shadow simple-formblock clearfix padded-strong preferences">
<h2 style="float:left">Preferences</h2>
<h2 style="float:left"><? echo _("Preferences") ?></h2>
<?php $baseUrl = Application_Common_OsPath::getBaseDir(); ?>
<form method="post" id="pref_form" enctype="application/x-www-form-urlencoded">
<button name="pref_save" id="pref_save" type="button" class="btn btn-small right-floated">Save</button>
<button name="pref_save" id="pref_save" type="button" class="btn btn-small right-floated"><? echo _("Save") ?></button>
<div style="clear:both"></div>
<?php
@ -11,6 +11,6 @@
echo $this->form;
?>
<br />
<button name="pref_save" id="pref_save" type="button" class="btn btn-small right-floated">Save</button>
<button name="pref_save" id="pref_save" type="button" class="btn btn-small right-floated"><? echo _("Save") ?></button>
</form>
</div>

View file

@ -1,15 +1,15 @@
<div class="ui-widget ui-widget-content block-shadow simple-formblock clearfix padded-strong stream-config">
<h2 <?php if($this->enable_stream_conf == "true"){?>style="float:left"<?php }?>>Stream Settings</h2>
<h2 <?php if($this->enable_stream_conf == "true"){?>style="float:left"<?php }?>><? echo _("Stream Settings") ?></h2>
<?php $baseUrl = Application_Common_OsPath::getBaseDir(); ?>
<?php if($this->enable_stream_conf == "true"){?>
<form method="post" id="stream_form" enctype="application/x-www-form-urlencoded">
<button name="stream_save" id="stream_save" type="button" class="btn btn-small right-floated">Save</button>
<button name="stream_save" id="stream_save" type="button" class="btn btn-small right-floated"><? echo _("Save") ?></button>
<div style="clear:both"></div>
<?php }?>
<?php echo $this->statusMsg;?>
<div style="float: left; margin-right: 10px; width: 490px; overflow: auto;">
<fieldset class="padded stream-setting-global">
<legend>Global Settings</legend>
<legend><? echo _("Global Settings") ?></legend>
<dl class="zend_form">
<?php if($this->form->getElement('output_sound_device') != null){?>
<dt id="hardwareOut-label">
@ -69,7 +69,7 @@
</div>
<div style="float: left; width: 600px;">
<fieldset class="padded">
<legend>Output Stream Settings</legend>
<legend><? echo _("Output Stream Settings") ?></legend>
<?php
for($i=1;$i<=$this->num_stream;$i++){
echo $this->form->getSubform("s".$i."_subform");
@ -78,7 +78,7 @@
</fieldset>
<?php if($this->enable_stream_conf == "true"){?>
<br />
<button name="stream_save" id="stream_save" type="button" class="btn btn-small right-floated">Save</button>
<button name="stream_save" id="stream_save" type="button" class="btn btn-small right-floated"><? echo _("Save") ?></button>
<?php }?>
</div>
</form>