MINOR: Change “Choose Page” to “Search or choose Page” (#8766)

* MINOR: Change “Choose Page” to “Search or choose Page”

Based on discussions with James Ford, it wasn’t clear that you could
search.

* Use new translation key
This commit is contained in:
Sam Minnée 2019-04-16 16:06:37 +12:00 committed by Aaron Carlino
parent b17526edbf
commit 6a2762662b
2 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ en:
VALIDDATETIMEMINDATE: 'Your date has to be newer or matching the minimum allowed date and time ({datetime})' VALIDDATETIMEMINDATE: 'Your date has to be newer or matching the minimum allowed date and time ({datetime})'
SilverStripe\Forms\DropdownField: SilverStripe\Forms\DropdownField:
CHOOSE: (Choose) CHOOSE: (Choose)
CHOOSE_MODEL: '(Choose {name})' SEARCH_OR_CHOOSE_MODEL: '(Search or choose {name})'
SOURCE_VALIDATION: 'Please select a value within the list provided. {value} is not a valid option' SOURCE_VALIDATION: 'Please select a value within the list provided. {value} is not a valid option'
SilverStripe\Forms\EmailField: SilverStripe\Forms\EmailField:
VALIDATION: 'Please enter an email address' VALIDATION: 'Please enter an email address'

View File

@ -953,8 +953,8 @@ class TreeDropdownField extends FormField
$item = DataObject::singleton($this->getSourceObject()); $item = DataObject::singleton($this->getSourceObject());
$emptyString = _t( $emptyString = _t(
'SilverStripe\\Forms\\DropdownField.CHOOSE_MODEL', 'SilverStripe\\Forms\\DropdownField.SEARCH_OR_CHOOSE_MODEL',
'(Choose {name})', '(Search or choose {name})',
['name' => $item->i18n_singular_name()] ['name' => $item->i18n_singular_name()]
); );
return $emptyString; return $emptyString;