Skip to content

Commit

Permalink
Merge pull request #533 from vboctor/Issue17825_custom_field_separator
Browse files Browse the repository at this point in the history
Clarify separator that can be used to separate possible values

Fixes #17825
  • Loading branch information
vboctor committed Nov 2, 2014
2 parents 42e7ed0 + 65ae8b9 commit 24ea18e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions lang/strings_english.txt
Expand Up @@ -739,6 +739,9 @@ $s_last_visit = 'Last Visit';
$s_last_visit_label = 'Last Visit:';
$s_edit_user_link = 'Edit User';

# manage_custom_field_edit_page.php
$s_separate_list_items_by = '(separate list items by "%1$s")';

# manage_config_email_page
$s_config_all_projects = 'Note: These configurations affect all projects, unless overridden at the project level.';
$s_config_project = 'Note: These configurations affect only the %1$s project.';
Expand Down
4 changes: 3 additions & 1 deletion manage_custom_field_edit_page.php
Expand Up @@ -88,7 +88,9 @@
</div>
<div class="field-container">
<label for="custom-field-possible-values"><span><?php echo lang_get( 'custom_field_possible_values' ) ?></span></label>
<span class="input"><input type="text" id="custom-field-possible-values" name="possible_values" size="32" value="<?php echo string_attribute( $t_definition['possible_values'] ) ?>" /></span>
<span class="input"><input type="text" id="custom-field-possible-values" name="possible_values" size="100" value="<?php echo string_attribute( $t_definition['possible_values'] ) ?>" />
<?php echo sprintf( lang_get( 'separate_list_items_by' ), '|' ) ?>
</span>
<span class="label-style"></span>
</div>
<div class="field-container">
Expand Down

0 comments on commit 24ea18e

Please sign in to comment.