Mark strings for translation. Bug 514. Patch by nbachiyski.
git-svn-id: http://svn.automattic.com/wordpress/trunk@1913 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
497b71996a
commit
d849a73f55
|
@ -316,13 +316,13 @@ function meta_form() {
|
||||||
<td align="right" width="18%">
|
<td align="right" width="18%">
|
||||||
<?php if ($keys) : ?>
|
<?php if ($keys) : ?>
|
||||||
<select id="metakeyselect" name="metakeyselect" tabindex="7">
|
<select id="metakeyselect" name="metakeyselect" tabindex="7">
|
||||||
<option value="#NONE#">- Select -</option>
|
<option value="#NONE#"><?php _e('- Select -'); ?></option>
|
||||||
<?php
|
<?php
|
||||||
foreach($keys as $key) {
|
foreach($keys as $key) {
|
||||||
echo "\n\t<option value='$key'>$key</option>";
|
echo "\n\t<option value='$key'>$key</option>";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</select> or
|
</select> <?php _e('or'); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</td>
|
</td>
|
||||||
<td><input type="text" id="metakeyinput" name="metakeyinput" tabindex="7" /></td>
|
<td><input type="text" id="metakeyinput" name="metakeyinput" tabindex="7" /></td>
|
||||||
|
|
Loading…
Reference in New Issue