mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
NEW Allow translation of tab names (#384)
Tab names in the CMS can now be translated
This commit is contained in:
parent
8fa377ed65
commit
4e8e919c42
@ -197,6 +197,8 @@ class UserDefinedForm_EmailRecipient extends DataObject {
|
||||
))
|
||||
));
|
||||
|
||||
$fields->fieldByName('Root.EmailDetails')->setTitle(_t('UserDefinedForm_EmailRecipient.EMAILDETAILSTAB', 'Email Details'));
|
||||
|
||||
// Only show the preview link if the recipient has been saved.
|
||||
if (!empty($this->EmailTemplate)) {
|
||||
$preview = sprintf(
|
||||
@ -237,6 +239,8 @@ class UserDefinedForm_EmailRecipient extends DataObject {
|
||||
)
|
||||
));
|
||||
|
||||
$fields->fieldByName('Root.EmailContent')->setTitle(_t('UserDefinedForm_EmailRecipient.EMAILCONTENTTAB', 'Email Content'));
|
||||
|
||||
// Custom rules for sending this field
|
||||
$grid = new GridField(
|
||||
"CustomRules",
|
||||
@ -260,6 +264,8 @@ class UserDefinedForm_EmailRecipient extends DataObject {
|
||||
$grid
|
||||
));
|
||||
|
||||
$fields->fieldByName('Root.CustomRules')->setTitle(_t('UserDefinedForm_EmailRecipient.CUSTOMRULESTAB', 'Custom Rules'));
|
||||
|
||||
$this->extend('updateCMSFields', $fields);
|
||||
return $fields;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user