mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Making Folder->getCMSFields() translatable
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@68760 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
522c34b6da
commit
345ec4e885
@ -323,7 +323,7 @@ class Folder extends File {
|
||||
$fileList->setFolder($this);
|
||||
$fileList->setPopupCaption(_t('Folder.VIEWEDITASSET', "View/Edit Asset"));
|
||||
|
||||
$nameField = ($this->ID && $this->ID != "root") ? new TextField("Name", "Folder Name") : new HiddenField("Name");
|
||||
$nameField = ($this->ID && $this->ID != "root") ? new TextField("Name", _t('Folder.TITLE')) : new HiddenField("Name");
|
||||
if( $this->canEdit() ) {
|
||||
$deleteButton = new InlineFormAction('deletemarked',_t('Folder.DELSELECTED','Delete selected files'), 'delete');
|
||||
$deleteButton->includeDefaultJS(false);
|
||||
|
Loading…
Reference in New Issue
Block a user