CC-1960: Internationalize Airtime / Support translations
-got rid of spaces at beginning of strings -removed empty string translations -overwrote Zend_Validate_Between object error messages
This commit is contained in:
parent
9689c75bed
commit
542434d9f0
17 changed files with 52 additions and 38 deletions
|
@ -41,7 +41,7 @@
|
|||
|
||||
<dt id="mailServer-label" class="block-display">
|
||||
<label class="required" for="mailServer"><?php echo $this->element->getElement('mailServer')->getLabel() ?>
|
||||
<span class="info-text-small"><?php _("(Required)") ?></span>:
|
||||
<span class="info-text-small"><?php echo _("(Required)") ?></span>:
|
||||
</label>
|
||||
|
||||
<label class="required" for="msRequiresAuth">
|
||||
|
@ -71,7 +71,7 @@
|
|||
|
||||
<dt id="email-label" class="block-display">
|
||||
<label class="required" for="email"><?php echo $this->element->getElement('email')->getLabel() ?>
|
||||
<span class="info-text-small"><?php _("(Required)") ?></span>:
|
||||
<span class="info-text-small"><?php echo _("(Required)") ?></span>:
|
||||
</label>
|
||||
</dt>
|
||||
<dd id="email-element" class="block-display">
|
||||
|
@ -87,7 +87,7 @@
|
|||
|
||||
<dt id="password-label" class="block-display">
|
||||
<label class="required" for="password"><?php echo $this->element->getElement('ms_password')->getLabel() ?>
|
||||
<span class="info-text-small"><?php _("(Required)") ?></span>:
|
||||
<span class="info-text-small"><?php echo _("(Required)") ?></span>:
|
||||
</label>
|
||||
</dt>
|
||||
<dd id="password-element" class="block-display">
|
||||
|
|
|
@ -117,7 +117,7 @@
|
|||
</span><br>
|
||||
<?php } ?>
|
||||
<div id="master_dj_connection_url_actions" style="display:none">
|
||||
<a href=# id="ok" style="font-size: 12px;"><? echo _("OK") ?></a><? echo _(" "); ?><a href=# id="reset" style="font-size: 12px;"><? echo _("RESET"); ?></a>
|
||||
<a href=# id="ok" style="font-size: 12px;"><? echo _("OK") ?></a> <a href=# id="reset" style="font-size: 12px;"><? echo _("RESET"); ?></a>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id="dj_harbor_input_port-label">
|
||||
|
@ -161,7 +161,7 @@
|
|||
</span><br>
|
||||
<?php } ?>
|
||||
<div id="live_dj_connection_url_actions" style="display:none">
|
||||
<a href=# id="ok" style="font-size: 12px;"><? echo _("OK") ?></a><? echo _(" "); ?><a href=# id="reset" style="font-size: 12px;"><? echo _("RESET"); ?></a>
|
||||
<a href=# id="ok" style="font-size: 12px;"><? echo _("OK") ?></a> <a href=# id="reset" style="font-size: 12px;"><? echo _("RESET"); ?></a>
|
||||
</div>
|
||||
</dd>
|
||||
</dl>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<?php echo $this->element->getElement('sb_time_end'); ?>
|
||||
|
||||
<a id="sb_submit" class="btn btn-small" href="#" title="Display shows in the specified date and time range">
|
||||
<i class="icon-white icon-search"></i><? echo _(" Find Shows") ?></a>
|
||||
<i class="icon-white icon-search"></i><? echo " "._("Find Shows") ?></a>
|
||||
<div class="sb-advanced-options">
|
||||
<fieldset class="padded display_field push-down-8 closed">
|
||||
<legend style="cursor: pointer;">
|
||||
|
|
|
@ -130,7 +130,7 @@
|
|||
<?php
|
||||
} else {
|
||||
?>
|
||||
0 <?php echo _(" files meet the criteria")?>
|
||||
0 <?php echo " "._("files meet the criteria")?>
|
||||
</span>
|
||||
<span class='sp-warning-icon' id='sp_pool_count_icon'></span>
|
||||
<?php
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
<dl id="public-info" style="display:<?php echo "none"?>;">
|
||||
<dt id="stationName-label" class="block-display">
|
||||
<label class="required" for="stationName"><?php echo $this->element->getElement('stationName')->getLabel() ?>
|
||||
<span class="info-text-small">(Required)</span>:
|
||||
<span class="info-text-small"><?php echo _("(Required)")?></span>:
|
||||
</label>
|
||||
</dt>
|
||||
<dd id="stationName-element" class="block-display">
|
||||
|
@ -58,7 +58,7 @@
|
|||
</dd>
|
||||
<dt id="Phone-label" class="block-display">
|
||||
<label class="optional" for="Phone"><?php echo $this->element->getElement('Phone')->getLabel() ?></label>
|
||||
<span class="info-text-small">(for verification purposes only, will not be published)</span>
|
||||
<span class="info-text-small"><?php echo _("(for verification purposes only, will not be published)")?></span>
|
||||
</dt>
|
||||
<dd id="Phone-element" class="block-display">
|
||||
<?php echo $this->element->getElement('Phone') ?>
|
||||
|
@ -148,7 +148,7 @@
|
|||
|
||||
<?php echo $this->element->getElement('Logo') ?>
|
||||
<div class="info-text">
|
||||
<p><?php echo ("Note: Anything larger than 600x600 will be resized.")?></p>
|
||||
<p><?php echo _("Note: Anything larger than 600x600 will be resized.")?></p>
|
||||
</div>
|
||||
<?php if($this->element->getElement('Logo')->hasErrors()) : ?>
|
||||
<ul class='errors'>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue