mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
MINOR Translatable strings in CMSMain (fixes #6523, thanks Tonyair)
This commit is contained in:
parent
dc045d079d
commit
03acbb737e
@ -1342,9 +1342,16 @@ JS;
|
|||||||
'Title',
|
'Title',
|
||||||
_t('CMSMain.TITLEOPT', 'Title')
|
_t('CMSMain.TITLEOPT', 'Title')
|
||||||
),
|
),
|
||||||
new TextField('Content', 'Text'),
|
new TextField('Content', _t('CMSMain.TEXTOPT','Text', PR_MEDIUM, 'Text field for fulltext search in page content')),
|
||||||
new DateField('EditedSince', _t('CMSMain_left.ss.EDITEDSINCE','Edited Since')),
|
new DateField('EditedSince', _t('CMSMain_left.ss.EDITEDSINCE','Edited Since')),
|
||||||
new DropdownField('ClassName', 'Page Type', $pageTypes, null, null, 'Any'),
|
new DropdownField(
|
||||||
|
'ClassName',
|
||||||
|
_t('CMSMain.PAGETYPEOPT','Page Type', PR_MEDIUM, 'Dropdown for limiting search to a page type'),
|
||||||
|
$pageTypes,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
_t('CMSMain.PAGETYPEANYOPT','Any')
|
||||||
|
),
|
||||||
new TextField(
|
new TextField(
|
||||||
'MenuTitle',
|
'MenuTitle',
|
||||||
_t('CMSMain.MENUTITLEOPT', 'Navigation Label')
|
_t('CMSMain.MENUTITLEOPT', 'Navigation Label')
|
||||||
|
Loading…
Reference in New Issue
Block a user