mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
Merge pull request #110 from chillu/trac/7170-i18n-sprintf-injections
This commit is contained in:
commit
d79d5987cb
@ -507,7 +507,11 @@ JS
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$message = sprintf(_t('AssetAdmin.THUMBSDELETED', '%s unused thumbnails have been deleted'), $count);
|
$message = _t(
|
||||||
|
'AssetAdmin.THUMBSDELETED',
|
||||||
|
'{count} unused thumbnails have been deleted',
|
||||||
|
array('count' => $count)
|
||||||
|
);
|
||||||
$this->response->addHeader('X-Status', $message);
|
$this->response->addHeader('X-Status', $message);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -609,7 +613,7 @@ JS
|
|||||||
$title = _t("AssetAdmin.MENUTITLE", LeftAndMain::menu_title_for_class($this->class));
|
$title = _t("AssetAdmin.MENUTITLE", LeftAndMain::menu_title_for_class($this->class));
|
||||||
return array(
|
return array(
|
||||||
"CMS_ACCESS_AssetAdmin" => array(
|
"CMS_ACCESS_AssetAdmin" => array(
|
||||||
'name' => sprintf(_t('CMSMain.ACCESS', "Access to '%s' section"), $title),
|
'name' => _t('CMSMain.ACCESS', "Access to '{title}' section", array('title' => $title)),
|
||||||
'category' => _t('Permission.CMS_ACCESS_CATEGORY', 'CMS Access')
|
'category' => _t('Permission.CMS_ACCESS_CATEGORY', 'CMS Access')
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
@ -795,13 +795,11 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
|||||||
|
|
||||||
$this->response->addHeader(
|
$this->response->addHeader(
|
||||||
'X-Status',
|
'X-Status',
|
||||||
sprintf(
|
|
||||||
_t(
|
_t(
|
||||||
'LeftAndMain.STATUSPUBLISHEDSUCCESS',
|
'LeftAndMain.STATUSPUBLISHEDSUCCESS',
|
||||||
"Published '%s' successfully",
|
"Published '{title}' successfully",
|
||||||
'Status message after publishing a page, showing the page title'
|
'Status message after publishing a page, showing the page title',
|
||||||
),
|
array('title' => $record->Title)
|
||||||
$record->Title
|
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
@ -885,16 +883,16 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
|||||||
|
|
||||||
if(isset($descendantsRemoved)) {
|
if(isset($descendantsRemoved)) {
|
||||||
$descRemoved = " and $descendantsRemoved descendants";
|
$descRemoved = " and $descendantsRemoved descendants";
|
||||||
$descRemoved = sprintf(' '._t('CMSMain.DESCREMOVED', 'and %s descendants'), $descendantsRemoved);
|
$descRemoved = ' ' . _t('CMSMain.DESCREMOVED', 'and {count} descendants', array('count' => $descendantsRemoved));
|
||||||
} else {
|
} else {
|
||||||
$descRemoved = '';
|
$descRemoved = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
$form->sessionMessage(
|
$form->sessionMessage(
|
||||||
sprintf(
|
_t(
|
||||||
_t('CMSMain.REMOVED', 'Deleted \'%s\'%s from live site'),
|
'CMSMain.REMOVED',
|
||||||
$recordTitle,
|
'Deleted \'{title}\'{additionalinfo} from live site',
|
||||||
$descRemoved
|
array('title' => $recordTitle, 'additionalinfo' => $descRemoved)
|
||||||
),
|
),
|
||||||
'good'
|
'good'
|
||||||
);
|
);
|
||||||
@ -941,9 +939,11 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
|||||||
|
|
||||||
$this->response->addHeader(
|
$this->response->addHeader(
|
||||||
'X-Status',
|
'X-Status',
|
||||||
sprintf(
|
_t(
|
||||||
_t('CMSMain.RESTORED',"Restored '%s' successfully",'Param %s is a title'),
|
'CMSMain.RESTORED',
|
||||||
$record->Title
|
"Restored '{title}' successfully",
|
||||||
|
'Param %s is a title',
|
||||||
|
array('title' => $record->Title)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -968,10 +968,7 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
|||||||
$record->delete();
|
$record->delete();
|
||||||
|
|
||||||
$form->sessionMessage(
|
$form->sessionMessage(
|
||||||
sprintf(
|
_t('CMSMain.REMOVEDPAGEFROMDRAFT',"Removed '{title}' from the draft site", array('title' => $record->Title)),
|
||||||
_t('CMSMain.REMOVEDPAGEFROMDRAFT',"Removed '%s' from the draft site"),
|
|
||||||
$record->Title
|
|
||||||
),
|
|
||||||
'good'
|
'good'
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -996,7 +993,7 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
|||||||
|
|
||||||
$this->response->addHeader(
|
$this->response->addHeader(
|
||||||
'X-Status',
|
'X-Status',
|
||||||
sprintf(_t('CMSMain.REMOVEDPAGE',"Removed '%s' from the published site"),$record->Title)
|
_t('CMSMain.REMOVEDPAGE',"Removed '{title}' from the published site", array('title' => $record->Title))
|
||||||
);
|
);
|
||||||
|
|
||||||
return $this->getResponseNegotiator()->respond($this->request);
|
return $this->getResponseNegotiator()->respond($this->request);
|
||||||
@ -1031,16 +1028,16 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
|||||||
|
|
||||||
if($version) {
|
if($version) {
|
||||||
$record->doRollbackTo($version);
|
$record->doRollbackTo($version);
|
||||||
$message = sprintf(
|
$message = _t(
|
||||||
_t('CMSMain.ROLLEDBACKVERSION',"Rolled back to version #%d. New version number is #%d"),
|
'CMSMain.ROLLEDBACKVERSION',
|
||||||
$data['Version'],
|
"Rolled back to version #%d. New version number is #%d",
|
||||||
$record->Version
|
array('version' => $data['Version'], 'versionnew' => $record->Version)
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
$record->doRollbackTo('Live');
|
$record->doRollbackTo('Live');
|
||||||
$message = sprintf(
|
$message = _t(
|
||||||
_t('CMSMain.ROLLEDBACKPUB',"Rolled back to published version. New version number is #%d"),
|
'CMSMain.ROLLEDBACKPUB',"Rolled back to published version. New version number is #{version}",
|
||||||
$record->Version
|
array('version' => $record->Version)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1155,7 +1152,7 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$response .= sprintf(_t('CMSMain.PUBPAGES',"Done: Published %d pages"), $count);
|
$response .= _t('CMSMain.PUBPAGES',"Done: Published {count} pages", array('count' => $count));
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
$token = SecurityToken::inst();
|
$token = SecurityToken::inst();
|
||||||
@ -1193,9 +1190,10 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
|||||||
|
|
||||||
$this->response->addHeader(
|
$this->response->addHeader(
|
||||||
'X-Status',
|
'X-Status',
|
||||||
sprintf(
|
_t(
|
||||||
_t('CMSMain.RESTORED',"Restored '%s' successfully",'Param %s is a title'),
|
'CMSMain.RESTORED',
|
||||||
$restoredPage->TreeTitle
|
"Restored '{title}' successfully",
|
||||||
|
array('title' => $restoredPage->TreeTitle)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -1273,7 +1271,7 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
|||||||
$title = _t("CMSPagesController.MENUTITLE", LeftAndMain::menu_title_for_class('CMSPagesController'));
|
$title = _t("CMSPagesController.MENUTITLE", LeftAndMain::menu_title_for_class('CMSPagesController'));
|
||||||
return array(
|
return array(
|
||||||
"CMS_ACCESS_CMSMain" => array(
|
"CMS_ACCESS_CMSMain" => array(
|
||||||
'name' => sprintf(_t('CMSMain.ACCESS', "Access to '%s' section"), $title),
|
'name' => _t('CMSMain.ACCESS', "Access to '{title}' section", array('title' => $title)),
|
||||||
'category' => _t('Permission.CMS_ACCESS_CATEGORY', 'CMS Access'),
|
'category' => _t('Permission.CMS_ACCESS_CATEGORY', 'CMS Access'),
|
||||||
'help' => _t(
|
'help' => _t(
|
||||||
'CMSMain.ACCESS_HELP',
|
'CMSMain.ACCESS_HELP',
|
||||||
|
@ -99,17 +99,22 @@ class CMSPageHistoryController extends CMSMain {
|
|||||||
|
|
||||||
$view = _t('CMSPageHistoryController.VIEW',"view");
|
$view = _t('CMSPageHistoryController.VIEW',"view");
|
||||||
|
|
||||||
$message = sprintf(
|
$message = _t(
|
||||||
_t('CMSPageHistoryController.COMPARINGVERSION',"Comparing versions %s and %s."),
|
'CMSPageHistoryController.COMPARINGVERSION',
|
||||||
sprintf('%s (<a href="%s">%s</a>)', $versionID, Controller::join_links($link, $versionID), $view),
|
"Comparing versions {version1} and {version2}.",
|
||||||
sprintf('%s (<a href="%s">%s</a>)', $compareID, Controller::join_links($link, $compareID), $view)
|
array(
|
||||||
|
'version1' => sprintf('%s (<a href="%s">%s</a>)', $versionID, Controller::join_links($link, $versionID), $view),
|
||||||
|
'version2' => sprintf('%s (<a href="%s">%s</a>)', $compareID, Controller::join_links($link, $compareID), $view)
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
$revert->setReadonly(true);
|
$revert->setReadonly(true);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$message = sprintf(
|
$message = _t(
|
||||||
_t('CMSPageHistoryController.VIEWINGVERSION',"Currently viewing version %s."), $versionID
|
'CMSPageHistoryController.VIEWINGVERSION',
|
||||||
|
"Currently viewing version {version}.",
|
||||||
|
array('version' => $versionID)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -140,7 +140,7 @@ class ReportAdmin extends LeftAndMain implements PermissionProvider {
|
|||||||
$title = _t("ReportAdmin.MENUTITLE", LeftAndMain::menu_title_for_class($this->class));
|
$title = _t("ReportAdmin.MENUTITLE", LeftAndMain::menu_title_for_class($this->class));
|
||||||
return array(
|
return array(
|
||||||
"CMS_ACCESS_ReportAdmin" => array(
|
"CMS_ACCESS_ReportAdmin" => array(
|
||||||
'name' => sprintf(_t('CMSMain.ACCESS', "Access to '%s' section"), $title),
|
'name' => _t('CMSMain.ACCESS', "Access to '{title}' section", array('title' => $title)),
|
||||||
'category' => _t('Permission.CMS_ACCESS_CATEGORY', 'CMS Access')
|
'category' => _t('Permission.CMS_ACCESS_CATEGORY', 'CMS Access')
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
@ -204,12 +204,10 @@ class ErrorPage extends Page {
|
|||||||
fwrite($fh, $errorContent);
|
fwrite($fh, $errorContent);
|
||||||
fclose($fh);
|
fclose($fh);
|
||||||
} else {
|
} else {
|
||||||
$fileErrorText = sprintf(
|
$fileErrorText = _t(
|
||||||
_t(
|
|
||||||
"ErrorPage.ERRORFILEPROBLEM",
|
"ErrorPage.ERRORFILEPROBLEM",
|
||||||
"Error opening file \"%s\" for writing. Please check file permissions."
|
"Error opening file \"{filename}\" for writing. Please check file permissions.",
|
||||||
),
|
array('filename' => $errorFile)
|
||||||
$errorFile
|
|
||||||
);
|
);
|
||||||
$this->response->addHeader('X-Status', $fileErrorText);
|
$this->response->addHeader('X-Status', $fileErrorText);
|
||||||
return $this->httpError(405);
|
return $this->httpError(405);
|
||||||
|
@ -1495,14 +1495,10 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
|
|||||||
if($subject->ID && !in_array($subject->ClassName, $allowed)) {
|
if($subject->ID && !in_array($subject->ClassName, $allowed)) {
|
||||||
|
|
||||||
$result->error(
|
$result->error(
|
||||||
sprintf(
|
|
||||||
_t(
|
_t(
|
||||||
'SiteTree.PageTypeNotAllowed',
|
'SiteTree.PageTypeNotAllowed',
|
||||||
'Page type "%s" not allowed as child of this parent page',
|
'Page type "{type}" not allowed as child of this parent page',
|
||||||
|
array('type' => $subject->i18n_singular_name())
|
||||||
'First argument is a class name'
|
|
||||||
),
|
|
||||||
$subject->i18n_singular_name()
|
|
||||||
),
|
),
|
||||||
'ALLOWED_CHILDREN'
|
'ALLOWED_CHILDREN'
|
||||||
);
|
);
|
||||||
@ -1512,14 +1508,10 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
|
|||||||
// "Can be root" validation
|
// "Can be root" validation
|
||||||
if(!$this->stat('can_be_root') && !$this->ParentID) {
|
if(!$this->stat('can_be_root') && !$this->ParentID) {
|
||||||
$result->error(
|
$result->error(
|
||||||
sprintf(
|
|
||||||
_t(
|
_t(
|
||||||
'SiteTree.PageTypNotAllowedOnRoot',
|
'SiteTree.PageTypNotAllowedOnRoot',
|
||||||
'Page type "%s" is not allowed on the root level',
|
'Page type "{type}" is not allowed on the root level',
|
||||||
|
array('type' => $this->i18n_singular_name())
|
||||||
'First argument is a class name'
|
|
||||||
),
|
|
||||||
$this->i18n_singular_name()
|
|
||||||
),
|
),
|
||||||
'CAN_BE_ROOT'
|
'CAN_BE_ROOT'
|
||||||
);
|
);
|
||||||
@ -1781,9 +1773,10 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
|
|||||||
. $parentList;
|
. $parentList;
|
||||||
}
|
}
|
||||||
|
|
||||||
$statusMessage[] = sprintf(
|
$statusMessage[] = _t(
|
||||||
_t('SiteTree.APPEARSVIRTUALPAGES', "This content also appears on the virtual pages in the %s sections."),
|
'SiteTree.APPEARSVIRTUALPAGES',
|
||||||
$parentList
|
"This content also appears on the virtual pages in the {title} sections.",
|
||||||
|
array('title' => $parentList)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -301,14 +301,10 @@ class VirtualPage extends Page {
|
|||||||
$orig = $this->CopyContentFrom();
|
$orig = $this->CopyContentFrom();
|
||||||
if(!$orig->stat('can_be_root') && !$this->ParentID) {
|
if(!$orig->stat('can_be_root') && !$this->ParentID) {
|
||||||
$result->error(
|
$result->error(
|
||||||
sprintf(
|
|
||||||
_t(
|
_t(
|
||||||
'VirtualPage.PageTypNotAllowedOnRoot',
|
'VirtualPage.PageTypNotAllowedOnRoot',
|
||||||
'Original page type "%s" is not allowed on the root level for this virtual page',
|
'Original page type "{type}" is not allowed on the root level for this virtual page',
|
||||||
|
array('type' => $orig->i18n_singular_name())
|
||||||
'First argument is a class name'
|
|
||||||
),
|
|
||||||
$orig->i18n_singular_name()
|
|
||||||
),
|
),
|
||||||
'CAN_BE_ROOT_VIRTUAL'
|
'CAN_BE_ROOT_VIRTUAL'
|
||||||
);
|
);
|
||||||
|
@ -50,9 +50,10 @@ class SideReportView extends ViewableData {
|
|||||||
$result .= "</ul>\n";
|
$result .= "</ul>\n";
|
||||||
} else {
|
} else {
|
||||||
$result = "<p class=\"message notice\">" .
|
$result = "<p class=\"message notice\">" .
|
||||||
sprintf(
|
_t(
|
||||||
_t('SideReport.REPEMPTY','The %s report is empty.','%s is a report title'),
|
'SideReport.REPEMPTY',
|
||||||
$this->report->title()
|
'The {title} report is empty.',
|
||||||
|
array('title' => $this->report->title())
|
||||||
)
|
)
|
||||||
. "</p>";
|
. "</p>";
|
||||||
}
|
}
|
||||||
|
36
lang/en.yml
36
lang/en.yml
@ -19,7 +19,7 @@ en:
|
|||||||
ListView: 'List View'
|
ListView: 'List View'
|
||||||
NEWFOLDER: NewFolder
|
NEWFOLDER: NewFolder
|
||||||
SIZE: Size
|
SIZE: Size
|
||||||
THUMBSDELETED: '%s unused thumbnails have been deleted'
|
THUMBSDELETED: '{count} unused thumbnails have been deleted'
|
||||||
TreeView: 'Tree View'
|
TreeView: 'Tree View'
|
||||||
Upload: Upload
|
Upload: Upload
|
||||||
MENUTITLE: Files
|
MENUTITLE: Files
|
||||||
@ -67,7 +67,7 @@ en:
|
|||||||
UNPUBLISHED_PAGES: 'Un-published %d pages'
|
UNPUBLISHED_PAGES: 'Un-published %d pages'
|
||||||
UNPUBLISH_PAGES: Un-publish
|
UNPUBLISH_PAGES: Un-publish
|
||||||
CMSMain:
|
CMSMain:
|
||||||
ACCESS: 'Access to ''%s'' section'
|
ACCESS: 'Access to ''{title}'' section'
|
||||||
ACCESS_HELP: 'Allow viewing of the section containing page tree and content. View and edit permissions can be handled through page specific dropdowns, as well as the separate "Content permissions".'
|
ACCESS_HELP: 'Allow viewing of the section containing page tree and content. View and edit permissions can be handled through page specific dropdowns, as well as the separate "Content permissions".'
|
||||||
AddNew: 'Add new page'
|
AddNew: 'Add new page'
|
||||||
AddNewButton: 'Add new'
|
AddNewButton: 'Add new'
|
||||||
@ -76,7 +76,7 @@ en:
|
|||||||
Create: Create
|
Create: Create
|
||||||
DELETE: 'Delete draft'
|
DELETE: 'Delete draft'
|
||||||
DELETEFP: Delete
|
DELETEFP: Delete
|
||||||
DESCREMOVED: 'and %s descendants'
|
DESCREMOVED: 'and {count} descendants'
|
||||||
EMAIL: Email
|
EMAIL: Email
|
||||||
NEW: 'New '
|
NEW: 'New '
|
||||||
PAGENOTEXISTS: 'This page doesn''t exist'
|
PAGENOTEXISTS: 'This page doesn''t exist'
|
||||||
@ -86,14 +86,14 @@ en:
|
|||||||
PUBALLCONFIRM: 'Please publish every page in the site, copying content stage to live'
|
PUBALLCONFIRM: 'Please publish every page in the site, copying content stage to live'
|
||||||
PUBALLFUN: '"Publish All" functionality'
|
PUBALLFUN: '"Publish All" functionality'
|
||||||
PUBALLFUN2: "Pressing this button will do the equivalent of going to every page and pressing \"publish\". It's\n intended to be used after there have been massive edits of the content, such as when the site was\n first built."
|
PUBALLFUN2: "Pressing this button will do the equivalent of going to every page and pressing \"publish\". It's\n intended to be used after there have been massive edits of the content, such as when the site was\n first built."
|
||||||
PUBPAGES: 'Done: Published %d pages'
|
PUBPAGES: 'Done: Published {count} pages'
|
||||||
REMOVED: 'Deleted ''%s''%s from live site'
|
REMOVED: 'Deleted ''{title}''{additionalinfo} from live site'
|
||||||
REMOVEDPAGE: 'Removed ''%s'' from the published site'
|
REMOVEDPAGE: 'Removed ''{title}'' from the published site'
|
||||||
REMOVEDPAGEFROMDRAFT: 'Removed ''%s'' from the draft site'
|
REMOVEDPAGEFROMDRAFT: 'Removed ''{title}'' from the draft site'
|
||||||
RESTORE: Restore
|
RESTORE: Restore
|
||||||
RESTORED: 'Restored ''%s'' successfully'
|
RESTORED: 'Restored ''{title}'' successfully'
|
||||||
ROLLBACK: 'Roll back to this version'
|
ROLLBACK: 'Roll back to this version'
|
||||||
ROLLEDBACKPUB: 'Rolled back to published version. New version number is #%d'
|
ROLLEDBACKPUB: 'Rolled back to published version. New version number is #{version}'
|
||||||
ROLLEDBACKVERSION: 'Rolled back to version #%d. New version number is #%d'
|
ROLLEDBACKVERSION: 'Rolled back to version #%d. New version number is #%d'
|
||||||
SAVE: Save
|
SAVE: Save
|
||||||
SAVEDRAFT: 'Save Draft'
|
SAVEDRAFT: 'Save Draft'
|
||||||
@ -111,12 +111,12 @@ en:
|
|||||||
CMSPageHistoryController:
|
CMSPageHistoryController:
|
||||||
COMPAREMODE: 'Compare mode (select two)'
|
COMPAREMODE: 'Compare mode (select two)'
|
||||||
COMPAREVERSIONS: 'Compare Versions'
|
COMPAREVERSIONS: 'Compare Versions'
|
||||||
COMPARINGVERSION: 'Comparing versions %s and %s.'
|
COMPARINGVERSION: 'Comparing versions {version1} and {version2}.'
|
||||||
REVERTTOTHISVERSION: 'Revert to this version'
|
REVERTTOTHISVERSION: 'Revert to this version'
|
||||||
SHOWUNPUBLISHED: 'Show unpublished versions'
|
SHOWUNPUBLISHED: 'Show unpublished versions'
|
||||||
SHOWVERSION: 'Show Version'
|
SHOWVERSION: 'Show Version'
|
||||||
VIEW: view
|
VIEW: view
|
||||||
VIEWINGVERSION: 'Currently viewing version %s.'
|
VIEWINGVERSION: 'Currently viewing version {version}.'
|
||||||
MENUTITLE: History
|
MENUTITLE: History
|
||||||
CMSPageHistoryController_versions.ss:
|
CMSPageHistoryController_versions.ss:
|
||||||
AUTHOR: Author
|
AUTHOR: Author
|
||||||
@ -197,7 +197,7 @@ en:
|
|||||||
DEFAULTSERVERERRORPAGECONTENT: '<p>Sorry, there was a problem with handling your request.</p>'
|
DEFAULTSERVERERRORPAGECONTENT: '<p>Sorry, there was a problem with handling your request.</p>'
|
||||||
DEFAULTSERVERERRORPAGETITLE: 'Server error'
|
DEFAULTSERVERERRORPAGETITLE: 'Server error'
|
||||||
DESCRIPTION: 'Custom content for different error cases (e.g. "Page not found")'
|
DESCRIPTION: 'Custom content for different error cases (e.g. "Page not found")'
|
||||||
ERRORFILEPROBLEM: 'Error opening file "%s" for writing. Please check file permissions.'
|
ERRORFILEPROBLEM: 'Error opening file "{filename}" for writing. Please check file permissions.'
|
||||||
Folder:
|
Folder:
|
||||||
AddFolderButton: 'Add folder'
|
AddFolderButton: 'Add folder'
|
||||||
DELETEUNUSEDTHUMBNAILS: 'Delete unused thumbnails'
|
DELETEUNUSEDTHUMBNAILS: 'Delete unused thumbnails'
|
||||||
@ -208,7 +208,7 @@ en:
|
|||||||
DESCRIPTION: 'Generic content page'
|
DESCRIPTION: 'Generic content page'
|
||||||
LeftAndMain:
|
LeftAndMain:
|
||||||
PreviewButton: Preview
|
PreviewButton: Preview
|
||||||
STATUSPUBLISHEDSUCCESS: 'Published ''%s'' successfully'
|
STATUSPUBLISHEDSUCCESS: 'Published ''{title}'' successfully'
|
||||||
SearchResults: 'Search Results'
|
SearchResults: 'Search Results'
|
||||||
VersionUnknown: Unknown
|
VersionUnknown: Unknown
|
||||||
LegacyTableFieldsTestPage:
|
LegacyTableFieldsTestPage:
|
||||||
@ -256,7 +256,7 @@ en:
|
|||||||
LAST2WEEKS: 'Pages edited in the last 2 weeks'
|
LAST2WEEKS: 'Pages edited in the last 2 weeks'
|
||||||
OtherGroupTitle: Other
|
OtherGroupTitle: Other
|
||||||
ParameterLiveCheckbox: 'Check live site'
|
ParameterLiveCheckbox: 'Check live site'
|
||||||
REPEMPTY: 'The %s report is empty.'
|
REPEMPTY: 'The {title} report is empty.'
|
||||||
SilverStripeNavigatorLink:
|
SilverStripeNavigatorLink:
|
||||||
ShareInstructions: 'To share a this to this page, copy and paste the link below.'
|
ShareInstructions: 'To share a this to this page, copy and paste the link below.'
|
||||||
ShareLink: 'Share link'
|
ShareLink: 'Share link'
|
||||||
@ -284,7 +284,7 @@ en:
|
|||||||
ADDEDTODRAFTHELP: 'Page has not been published yet'
|
ADDEDTODRAFTHELP: 'Page has not been published yet'
|
||||||
ADDEDTODRAFTSHORT: Draft
|
ADDEDTODRAFTSHORT: Draft
|
||||||
ALLOWCOMMENTS: 'Allow comments on this page?'
|
ALLOWCOMMENTS: 'Allow comments on this page?'
|
||||||
APPEARSVIRTUALPAGES: 'This content also appears on the virtual pages in the %s sections.'
|
APPEARSVIRTUALPAGES: 'This content also appears on the virtual pages in the {title} sections.'
|
||||||
BUTTONCANCELDRAFT: 'Cancel draft changes'
|
BUTTONCANCELDRAFT: 'Cancel draft changes'
|
||||||
BUTTONCANCELDRAFTDESC: 'Delete your draft and revert to the currently published page'
|
BUTTONCANCELDRAFTDESC: 'Delete your draft and revert to the currently published page'
|
||||||
BUTTONSAVEPUBLISH: 'Save & Publish'
|
BUTTONSAVEPUBLISH: 'Save & Publish'
|
||||||
@ -334,8 +334,8 @@ en:
|
|||||||
PERMISSION_GRANTACCESS_DESCRIPTION: 'Manage access rights for content'
|
PERMISSION_GRANTACCESS_DESCRIPTION: 'Manage access rights for content'
|
||||||
PERMISSION_GRANTACCESS_HELP: 'Allow setting of page-specific access restrictions in the "Pages" section.'
|
PERMISSION_GRANTACCESS_HELP: 'Allow setting of page-specific access restrictions in the "Pages" section.'
|
||||||
PLURALNAME: 'Site Tres'
|
PLURALNAME: 'Site Tres'
|
||||||
PageTypNotAllowedOnRoot: 'Page type "%s" is not allowed on the root level'
|
PageTypNotAllowedOnRoot: 'Page type "{type}" is not allowed on the root level'
|
||||||
PageTypeNotAllowed: 'Page type "%s" not allowed as child of this parent page'
|
PageTypeNotAllowed: 'Page type "{type}" not allowed as child of this parent page'
|
||||||
REMOVEDFROMDRAFTHELP: 'Page is published, but has been deleted from draft'
|
REMOVEDFROMDRAFTHELP: 'Page is published, but has been deleted from draft'
|
||||||
REMOVEDFROMDRAFTSHORT: 'Removed from draft'
|
REMOVEDFROMDRAFTSHORT: 'Removed from draft'
|
||||||
REMOVE_INSTALL_WARNING: 'Warning: You should remove install.php from this SilverStripe install for security reasons.'
|
REMOVE_INSTALL_WARNING: 'Warning: You should remove install.php from this SilverStripe install for security reasons.'
|
||||||
@ -392,7 +392,7 @@ en:
|
|||||||
EDITCONTENT: 'click here to edit the content'
|
EDITCONTENT: 'click here to edit the content'
|
||||||
HEADER: 'This is a virtual page'
|
HEADER: 'This is a virtual page'
|
||||||
PLURALNAME: 'Virtual Pags'
|
PLURALNAME: 'Virtual Pags'
|
||||||
PageTypNotAllowedOnRoot: 'Original page type "%s" is not allowed on the root level for this virtual page'
|
PageTypNotAllowedOnRoot: 'Original page type "{type}" is not allowed on the root level for this virtual page'
|
||||||
SINGULARNAME: 'Virtual Page'
|
SINGULARNAME: 'Virtual Page'
|
||||||
cms:
|
cms:
|
||||||
FILESYSTEMSYNC: 'Sync files'
|
FILESYSTEMSYNC: 'Sync files'
|
||||||
|
Loading…
Reference in New Issue
Block a user