The branch, master has been updated via 25b62d267473f0401354aa7744a125a982a058fb (commit) from 3fc7fc55ee2085cd93525f13bb01acbff13af863 (commit)
- Log ----------------------------------------------------------------- commit 25b62d267473f0401354aa7744a125a982a058fb Author: Marc Delisle marc@infomarc.info Date: Wed Dec 29 08:42:17 2010 -0500
Messages not under gettext
-----------------------------------------------------------------------
Summary of changes: enum_editor.php | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/enum_editor.php b/enum_editor.php index 9ae8595..4a24c5b 100644 --- a/enum_editor.php +++ b/enum_editor.php @@ -54,18 +54,18 @@ require_once './libraries/header_meta_style.inc.php'; </div> <p> <a href="enum_editor.php?token=<?php echo urlencode($_GET['token']); ?>&field=<?php echo urlencode($_GET['field']); ?>&extra_fields=<?php echo $_GET['extra_fields'] + 1; ?>&values=<?php echo urlencode(join(",", $values)); ?>"> - + Restart insertion and add a new value +<?php echo __('+ Restart insertion and add a new value'); ?> </a> </p> <input type="hidden" name="token" value="<?php echo $_GET['token']; ?>" /> <input type="hidden" name="field" value="<?php echo $_GET['field']; ?>" /> <input type="hidden" name="num_fields" value="<?php echo $total_fields; ?>" /> - <input type="submit" value="Go" /> + <input type="submit" value="<?php echo __('Go'); ?>" /> </form>
<div id="enum_editor_output"> - <h3>Output</h3> - <p>Copy and paste the joined values into the "Length/Values" field</p> + <h3><?php echo __('Output'); ?></h3> + <p><?php echo __('Copy and paste the joined values into the "Length/Values" field'); ?></p> <textarea id="joined_values" cols="95" rows="5"><?php echo join(",", $values); ?></textarea> </div> </div>
hooks/post-receive