2013-07-24 Ramon Novoa <rnovoa@artica.es>
* godmode/alerts/configure_alert_template.php: Fixed a translation that broke the javascript. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8567 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
cafbfd7dc0
commit
8b1bd508ff
|
@ -1,3 +1,8 @@
|
|||
2013-07-24 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* godmode/alerts/configure_alert_template.php: Fixed a translation that
|
||||
broke the javascript.
|
||||
|
||||
2013-07-24 Juan Manuel Ramon Vigo <juanmanuel.ramon@artica.es>
|
||||
|
||||
* include/functions_forecast.php: Avoid timeout in prediction date
|
||||
|
|
|
@ -739,7 +739,7 @@ ui_require_jquery_file("ui.datepicker-" . get_user_language(), "include/javascri
|
|||
<script type="text/javascript">
|
||||
/* <![CDATA[ */
|
||||
var matches = <?php echo "'" . __("The alert would fire when the value matches <span id=\"value\"></span>") . "'";?>;
|
||||
var matches_not = <?php echo "'" . __("The alert would fire when the value doesn\'t match <span id=\"value\"></span>") . "'";?>;
|
||||
var matches_not = <?php echo "\"" . __("The alert would fire when the value doesn\'t match %s", "<span id='value'></span>") . "\"";?>;
|
||||
var is = <?php echo "'" . __("The alert would fire when the value is <span id=\"value\"></span>") . "'";?>;
|
||||
var is_not = <?php echo "'" . __("The alert would fire when the value is not <span id=\"value\"></span>") . "'";?>;
|
||||
var between = <?php echo "'" . __("The alert would fire when the value is between <span id=\"min\"></span> and <span id=\"max\"></span>") . "'";?>;
|
||||
|
|
Loading…
Reference in New Issue