mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Corrected translation references in templates
Were using old entity naming scheme (*.ss) instead of underscored version which doesn't create a new YML namespace. This means all existing translations should indeed be used. Was already fixed in master, but not in 3.1
This commit is contained in:
parent
ba360497aa
commit
dc7e2df20a
@ -8,10 +8,10 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="cms-login-status">
|
<div class="cms-login-status">
|
||||||
<a href="Security/logout" class="logout-link" title="<% _t('LeftAndMain_Menu.ss.LOGOUT','Log out') %>"><% _t('LeftAndMain_Menu.ss.LOGOUT','Log out') %></a>
|
<a href="Security/logout" class="logout-link" title="<% _t('LeftAndMain_Menu.ss.LOGOUT','Log out') %>"><% _t('LeftAndMain_Menu_ss.LOGOUT','Log out') %></a>
|
||||||
<% with $CurrentMember %>
|
<% with $CurrentMember %>
|
||||||
<span>
|
<span>
|
||||||
<% _t('LeftAndMain_Menu.ss.Hello','Hi') %>
|
<% _t('LeftAndMain_Menu_ss.Hello','Hi') %>
|
||||||
<a href="{$AbsoluteBaseURL}admin/myprofile" class="profile-link">
|
<a href="{$AbsoluteBaseURL}admin/myprofile" class="profile-link">
|
||||||
<% if $FirstName && $Surname %>$FirstName $Surname<% else_if $FirstName %>$FirstName<% else %>$Email<% end_if %>
|
<% if $FirstName && $Surname %>$FirstName $Surname<% else_if $FirstName %>$FirstName<% else %>$Email<% end_if %>
|
||||||
</a>
|
</a>
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<div class="importSpec" id="SpecFor{$ModelName}">
|
<div class="importSpec" id="SpecFor{$ModelName}">
|
||||||
<a href="#SpecDetailsFor{$ModelName}" class="detailsLink"><% sprintf(_t('IMPORTSPECLINK', 'Show Specification for %s'),$ModelName) %></a>
|
<a href="#SpecDetailsFor{$ModelName}" class="detailsLink"><% sprintf(_t('IMPORTSPECLINK', 'Show Specification for %s'),$ModelName) %></a>
|
||||||
<div class="details" id="SpecDetailsFor{$ModelName}">
|
<div class="details" id="SpecDetailsFor{$ModelName}">
|
||||||
<h4><% sprintf(_t('ModelAdmin_ImportSpec.ss.IMPORTSPECTITLE', 'Specification for %s'),$ModelName) %></h4>
|
<h4><% sprintf(_t('ModelAdmin_ImportSpec_ss.IMPORTSPECTITLE', 'Specification for %s'),$ModelName) %></h4>
|
||||||
<h5><% _t('ModelAdmin_ImportSpec.ss.IMPORTSPECFIELDS', 'Database columns') %></h5>
|
<h5><% _t('ModelAdmin_ImportSpec_ss.IMPORTSPECFIELDS', 'Database columns') %></h5>
|
||||||
<% loop $Fields %>
|
<% loop $Fields %>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><em>$Name</em></dt>
|
<dt><em>$Name</em></dt>
|
||||||
@ -10,7 +10,7 @@
|
|||||||
</dl>
|
</dl>
|
||||||
<% end_loop %>
|
<% end_loop %>
|
||||||
|
|
||||||
<h5><% _t('ModelAdmin_ImportSpec.ss.IMPORTSPECRELATIONS', 'Relations') %></h5>
|
<h5><% _t('ModelAdmin_ImportSpec_ss.IMPORTSPECRELATIONS', 'Relations') %></h5>
|
||||||
<% loop $Relations %>
|
<% loop $Relations %>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><em>$Name</em></dt>
|
<dt><em>$Name</em></dt>
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
<div class="cms-content-tools west cms-panel cms-panel-layout" id="cms-content-tools-ModelAdmin" data-expandOnClick="true" data-layout-type="border">
|
<div class="cms-content-tools west cms-panel cms-panel-layout" id="cms-content-tools-ModelAdmin" data-expandOnClick="true" data-layout-type="border">
|
||||||
<div class="cms-panel-content center">
|
<div class="cms-panel-content center">
|
||||||
<h3 class="cms-panel-header"><% _t('ModelAdmin_Tools.ss.FILTER', 'Filter') %></h3>
|
<h3 class="cms-panel-header"><% _t('ModelAdmin_Tools_ss.FILTER', 'Filter') %></h3>
|
||||||
$SearchForm
|
$SearchForm
|
||||||
|
|
||||||
<% if $ImportForm %>
|
<% if $ImportForm %>
|
||||||
<h3 class="cms-panel-header"><% _t('ModelAdmin_Tools.ss.IMPORT', 'Import') %></h3>
|
<h3 class="cms-panel-header"><% _t('ModelAdmin_Tools_ss.IMPORT', 'Import') %></h3>
|
||||||
$ImportForm
|
$ImportForm
|
||||||
<% end_if %>
|
<% end_if %>
|
||||||
</div>
|
</div>
|
||||||
<div class="cms-panel-content-collapsed">
|
<div class="cms-panel-content-collapsed">
|
||||||
<h3 class="cms-panel-header"><% _t('ModelAdmin_Tools.ss.FILTER', 'Filter') %></h3>
|
<h3 class="cms-panel-header"><% _t('ModelAdmin_Tools_ss.FILTER', 'Filter') %></h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
$Content
|
$Content
|
||||||
|
|
||||||
<div class="cms-preview east" data-layout-type="border">
|
<div class="cms-preview east" data-layout-type="border">
|
||||||
<div class="preview-note"><span><!-- --></span><% _t('CMSPageHistoryController_versions.ss.PREVIEW','Website preview') %></div>
|
<div class="preview-note"><span><!-- --></span><% _t('CMSPageHistoryController_versions_ss.PREVIEW','Website preview') %></div>
|
||||||
<div class="preview-scroll center">
|
<div class="preview-scroll center">
|
||||||
<div class="preview-device-outer">
|
<div class="preview-device-outer">
|
||||||
<div class="preview-device-inner">
|
<div class="preview-device-inner">
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<h3><% _t('ModelSidebar.ss.SEARCHLISTINGS','Search') %></h3>
|
<h3><% _t('ModelSidebar_ss.SEARCHLISTINGS','Search') %></h3>
|
||||||
$SearchForm
|
$SearchForm
|
||||||
|
|
||||||
<% if $ImportForm %>
|
<% if $ImportForm %>
|
||||||
<h3><% _t('ModelSidebar.ss.IMPORT_TAB_HEADER', 'Import') %></h3>
|
<h3><% _t('ModelSidebar_ss.IMPORT_TAB_HEADER', 'Import') %></h3>
|
||||||
$ImportForm
|
$ImportForm
|
||||||
<% end_if %>
|
<% end_if %>
|
||||||
|
128
lang/en.yml
128
lang/en.yml
@ -1,6 +1,5 @@
|
|||||||
en:
|
en:
|
||||||
AssetAdmin:
|
AssetAdmin:
|
||||||
ALLOWEDEXTS: 'Allowed extensions'
|
|
||||||
NEWFOLDER: NewFolder
|
NEWFOLDER: NewFolder
|
||||||
SHOWALLOWEDEXTS: 'Show allowed extensions'
|
SHOWALLOWEDEXTS: 'Show allowed extensions'
|
||||||
AssetTableField:
|
AssetTableField:
|
||||||
@ -71,6 +70,8 @@ en:
|
|||||||
ACCESSALLINTERFACES: 'Access to all CMS sections'
|
ACCESSALLINTERFACES: 'Access to all CMS sections'
|
||||||
ACCESSALLINTERFACESHELP: 'Overrules more specific access settings.'
|
ACCESSALLINTERFACESHELP: 'Overrules more specific access settings.'
|
||||||
SAVE: Save
|
SAVE: Save
|
||||||
|
CMSPageHistoryController_versions_ss:
|
||||||
|
PREVIEW: 'Website preview'
|
||||||
CMSProfileController:
|
CMSProfileController:
|
||||||
MENUTITLE: 'My Profile'
|
MENUTITLE: 'My Profile'
|
||||||
ChangePasswordEmail_ss:
|
ChangePasswordEmail_ss:
|
||||||
@ -82,23 +83,13 @@ en:
|
|||||||
CheckboxField:
|
CheckboxField:
|
||||||
NOANSWER: No
|
NOANSWER: No
|
||||||
YESANSWER: Yes
|
YESANSWER: Yes
|
||||||
ComplexTableField:
|
|
||||||
CLOSEPOPUP: 'Close Popup'
|
|
||||||
SUCCESSADD2: 'Added {name}'
|
|
||||||
SUCCESSEDIT: 'Saved %s %s %s'
|
|
||||||
ComplexTableField_ss:
|
|
||||||
ADDITEM: 'Add %s'
|
|
||||||
NOITEMSFOUND: 'No items found'
|
|
||||||
SORTASC: 'Sort ascending'
|
|
||||||
SORTDESC: 'Sort descending'
|
|
||||||
ComplexTableField_popup_ss:
|
|
||||||
NEXT: Next
|
|
||||||
PREVIOUS: Previous
|
|
||||||
ConfirmedPasswordField:
|
ConfirmedPasswordField:
|
||||||
ATLEAST: 'Passwords must be at least {min} characters long.'
|
ATLEAST: 'Passwords must be at least {min} characters long.'
|
||||||
BETWEEN: 'Passwords must be {min} to {max} characters long.'
|
BETWEEN: 'Passwords must be {min} to {max} characters long.'
|
||||||
MAXIMUM: 'Passwords must be at most {max} characters long.'
|
MAXIMUM: 'Passwords must be at most {max} characters long.'
|
||||||
SHOWONCLICKTITLE: 'Change Password'
|
SHOWONCLICKTITLE: 'Change Password'
|
||||||
|
ContentController:
|
||||||
|
NOTLOGGEDIN: 'Not logged in'
|
||||||
CreditCardField:
|
CreditCardField:
|
||||||
FIRST: first
|
FIRST: first
|
||||||
FOURTH: fourth
|
FOURTH: fourth
|
||||||
@ -114,6 +105,7 @@ en:
|
|||||||
DAYS: days
|
DAYS: days
|
||||||
HOUR: hour
|
HOUR: hour
|
||||||
HOURS: hours
|
HOURS: hours
|
||||||
|
LessThanMinuteAgo: 'less than a minute'
|
||||||
MIN: min
|
MIN: min
|
||||||
MINS: mins
|
MINS: mins
|
||||||
MONTH: month
|
MONTH: month
|
||||||
@ -124,7 +116,6 @@ en:
|
|||||||
TIMEDIFFIN: 'in {difference}'
|
TIMEDIFFIN: 'in {difference}'
|
||||||
YEAR: year
|
YEAR: year
|
||||||
YEARS: years
|
YEARS: years
|
||||||
LessThanMinuteAgo: 'less than a minute'
|
|
||||||
DateField:
|
DateField:
|
||||||
NOTSET: 'not set'
|
NOTSET: 'not set'
|
||||||
TODAY: today
|
TODAY: today
|
||||||
@ -137,11 +128,9 @@ en:
|
|||||||
INVALID_REQUEST: 'Invalid request'
|
INVALID_REQUEST: 'Invalid request'
|
||||||
DropdownField:
|
DropdownField:
|
||||||
CHOOSE: (Choose)
|
CHOOSE: (Choose)
|
||||||
|
CHOOSESEARCH: '(Choose or Search)'
|
||||||
EmailField:
|
EmailField:
|
||||||
VALIDATION: 'Please enter an email address'
|
VALIDATION: 'Please enter an email address'
|
||||||
Email_BounceRecord:
|
|
||||||
PLURALNAME: 'Email Bounce Records'
|
|
||||||
SINGULARNAME: 'Email Bounce Record'
|
|
||||||
Enum:
|
Enum:
|
||||||
ANY: Any
|
ANY: Any
|
||||||
File:
|
File:
|
||||||
@ -176,19 +165,6 @@ en:
|
|||||||
WavType: 'WAV audo file'
|
WavType: 'WAV audo file'
|
||||||
XlsType: 'Excel spreadsheet'
|
XlsType: 'Excel spreadsheet'
|
||||||
ZipType: 'ZIP compressed file'
|
ZipType: 'ZIP compressed file'
|
||||||
FileIFrameField:
|
|
||||||
ATTACH: 'Attach {type}'
|
|
||||||
ATTACHONCESAVED: '{type}s can be attached once you have saved the record for the first time.'
|
|
||||||
ATTACHONCESAVED2: 'Files can be attached once you have saved the record for the first time.'
|
|
||||||
DELETE: 'Delete {type}'
|
|
||||||
DISALLOWEDFILETYPE: 'This filetype is not allowed to be uploaded'
|
|
||||||
FILE: File
|
|
||||||
FROMCOMPUTER: 'From your Computer'
|
|
||||||
FROMFILESTORE: 'From the File Store'
|
|
||||||
NOSOURCE: 'Please select a source file to attach'
|
|
||||||
REPLACE: 'Replace {type}'
|
|
||||||
FileIFrameField_iframe_ss:
|
|
||||||
TITLE: 'Image Uploading Iframe'
|
|
||||||
Filesystem:
|
Filesystem:
|
||||||
SYNCRESULTS: 'Sync complete: {createdcount} items created, {deletedcount} items deleted'
|
SYNCRESULTS: 'Sync complete: {createdcount} items created, {deletedcount} items deleted'
|
||||||
Folder:
|
Folder:
|
||||||
@ -200,6 +176,7 @@ en:
|
|||||||
TEXT2: 'password reset link'
|
TEXT2: 'password reset link'
|
||||||
TEXT3: for
|
TEXT3: for
|
||||||
Form:
|
Form:
|
||||||
|
CSRF_FAILED_MESSAGE: 'There seems to have been a technical problem. Please click the back button, refresh your browser, and try again.'
|
||||||
FIELDISREQUIRED: '{name} is required'
|
FIELDISREQUIRED: '{name} is required'
|
||||||
SubmitBtnLabel: Go
|
SubmitBtnLabel: Go
|
||||||
VALIDATIONCREDITNUMBER: 'Please ensure you have entered the {number} credit card number correctly'
|
VALIDATIONCREDITNUMBER: 'Please ensure you have entered the {number} credit card number correctly'
|
||||||
@ -209,10 +186,9 @@ en:
|
|||||||
VALIDATIONSTRONGPASSWORD: 'Passwords must have at least one digit and one alphanumeric character'
|
VALIDATIONSTRONGPASSWORD: 'Passwords must have at least one digit and one alphanumeric character'
|
||||||
VALIDATOR: Validator
|
VALIDATOR: Validator
|
||||||
VALIDCURRENCY: 'Please enter a valid currency'
|
VALIDCURRENCY: 'Please enter a valid currency'
|
||||||
CSRF_FAILED_MESSAGE: 'There seems to have been a technical problem. Please click the back button, refresh your browser, and try again.'
|
|
||||||
FormField:
|
FormField:
|
||||||
NONE: none
|
|
||||||
Example: 'e.g. %s'
|
Example: 'e.g. %s'
|
||||||
|
NONE: none
|
||||||
GridAction:
|
GridAction:
|
||||||
DELETE_DESCRIPTION: Delete
|
DELETE_DESCRIPTION: Delete
|
||||||
Delete: Delete
|
Delete: Delete
|
||||||
@ -243,7 +219,9 @@ en:
|
|||||||
Deleted: 'Deleted %s %s'
|
Deleted: 'Deleted %s %s'
|
||||||
Save: Save
|
Save: Save
|
||||||
Saved: 'Saved {name} {link}'
|
Saved: 'Saved {name} {link}'
|
||||||
GridFieldItemEditView_ss:
|
GridFieldEditButton_ss:
|
||||||
|
EDIT: Edit
|
||||||
|
GridFieldItemEditView:
|
||||||
Go_back: 'Go back'
|
Go_back: 'Go back'
|
||||||
Group:
|
Group:
|
||||||
AddRole: 'Add a role for this group'
|
AddRole: 'Add a role for this group'
|
||||||
@ -252,6 +230,7 @@ en:
|
|||||||
DefaultGroupTitleContentAuthors: 'Content Authors'
|
DefaultGroupTitleContentAuthors: 'Content Authors'
|
||||||
Description: Description
|
Description: Description
|
||||||
GroupReminder: 'If you choose a parent group, this group will take all it''s roles'
|
GroupReminder: 'If you choose a parent group, this group will take all it''s roles'
|
||||||
|
HierarchyPermsError: 'Can''t assign parent group "%s" with privileged permissions (requires ADMIN access)'
|
||||||
Locked: 'Locked?'
|
Locked: 'Locked?'
|
||||||
NoRoles: 'No roles found'
|
NoRoles: 'No roles found'
|
||||||
PLURALNAME: Groups
|
PLURALNAME: Groups
|
||||||
@ -273,6 +252,7 @@ en:
|
|||||||
ADDURL: 'Add URL'
|
ADDURL: 'Add URL'
|
||||||
ADJUSTDETAILSDIMENSIONS: 'Details & dimensions'
|
ADJUSTDETAILSDIMENSIONS: 'Details & dimensions'
|
||||||
ANCHORVALUE: Anchor
|
ANCHORVALUE: Anchor
|
||||||
|
BUTTONADDURL: 'Add url'
|
||||||
BUTTONINSERT: Insert
|
BUTTONINSERT: Insert
|
||||||
BUTTONINSERTLINK: 'Insert link'
|
BUTTONINSERTLINK: 'Insert link'
|
||||||
BUTTONREMOVELINK: 'Remove link'
|
BUTTONREMOVELINK: 'Remove link'
|
||||||
@ -314,12 +294,9 @@ en:
|
|||||||
URL: URL
|
URL: URL
|
||||||
URLNOTANOEMBEDRESOURCE: 'The URL ''{url}'' could not be turned into a media resource.'
|
URLNOTANOEMBEDRESOURCE: 'The URL ''{url}'' could not be turned into a media resource.'
|
||||||
UpdateMEDIA: 'Update Media'
|
UpdateMEDIA: 'Update Media'
|
||||||
BUTTONADDURL: 'Add url'
|
|
||||||
Image:
|
Image:
|
||||||
PLURALNAME: Files
|
PLURALNAME: Files
|
||||||
SINGULARNAME: File
|
SINGULARNAME: File
|
||||||
ImageField:
|
|
||||||
IMAGE: Image
|
|
||||||
Image_Cached:
|
Image_Cached:
|
||||||
PLURALNAME: Files
|
PLURALNAME: Files
|
||||||
SINGULARNAME: File
|
SINGULARNAME: File
|
||||||
@ -338,10 +315,12 @@ en:
|
|||||||
PreviewButton: Preview
|
PreviewButton: Preview
|
||||||
REORGANISATIONSUCCESSFUL: 'Reorganised the site tree successfully.'
|
REORGANISATIONSUCCESSFUL: 'Reorganised the site tree successfully.'
|
||||||
SAVEDUP: Saved.
|
SAVEDUP: Saved.
|
||||||
VersionUnknown: Unknown
|
|
||||||
ShowAsList: 'show as list'
|
ShowAsList: 'show as list'
|
||||||
TooManyPages: 'Too many pages'
|
TooManyPages: 'Too many pages'
|
||||||
ValidationError: 'Validation error'
|
ValidationError: 'Validation error'
|
||||||
|
VersionUnknown: Unknown
|
||||||
|
LeftAndMain_Menu_ss:
|
||||||
|
LOGOUT: 'Log out'
|
||||||
LeftAndMain_Menu_ss:
|
LeftAndMain_Menu_ss:
|
||||||
Hello: Hi
|
Hello: Hi
|
||||||
LOGOUT: 'Log out'
|
LOGOUT: 'Log out'
|
||||||
@ -366,7 +345,6 @@ en:
|
|||||||
EMAIL: Email
|
EMAIL: Email
|
||||||
EMPTYNEWPASSWORD: 'The new password can''t be empty, please try again'
|
EMPTYNEWPASSWORD: 'The new password can''t be empty, please try again'
|
||||||
ENTEREMAIL: 'Please enter an email address to get a password reset link.'
|
ENTEREMAIL: 'Please enter an email address to get a password reset link.'
|
||||||
ERRORLOCKEDOUT: 'Your account has been temporarily disabled because of too many failed attempts at logging in. Please try again in 20 minutes.'
|
|
||||||
ERRORLOCKEDOUT2: 'Your account has been temporarily disabled because of too many failed attempts at logging in. Please try again in {count} minutes.'
|
ERRORLOCKEDOUT2: 'Your account has been temporarily disabled because of too many failed attempts at logging in. Please try again in {count} minutes.'
|
||||||
ERRORNEWPASSWORD: 'You have entered your new password differently, try again'
|
ERRORNEWPASSWORD: 'You have entered your new password differently, try again'
|
||||||
ERRORPASSWORDNOTMATCH: 'Your current password does not match, please try again'
|
ERRORPASSWORDNOTMATCH: 'Your current password does not match, please try again'
|
||||||
@ -376,6 +354,7 @@ en:
|
|||||||
INVALIDNEWPASSWORD: 'We couldn''t accept that password: {password}'
|
INVALIDNEWPASSWORD: 'We couldn''t accept that password: {password}'
|
||||||
LOGGEDINAS: 'You''re logged in as {name}.'
|
LOGGEDINAS: 'You''re logged in as {name}.'
|
||||||
NEWPASSWORD: 'New Password'
|
NEWPASSWORD: 'New Password'
|
||||||
|
NoPassword: 'There is no password on this member.'
|
||||||
PASSWORD: Password
|
PASSWORD: Password
|
||||||
PLURALNAME: Members
|
PLURALNAME: Members
|
||||||
REMEMBERME: 'Remember me next time?'
|
REMEMBERME: 'Remember me next time?'
|
||||||
@ -395,7 +374,6 @@ en:
|
|||||||
db_NumVisit: 'Number of Visits'
|
db_NumVisit: 'Number of Visits'
|
||||||
db_Password: Password
|
db_Password: Password
|
||||||
db_PasswordExpiry: 'Password Expiry Date'
|
db_PasswordExpiry: 'Password Expiry Date'
|
||||||
NoPassword: 'There is no password on this member.'
|
|
||||||
MemberAuthenticator:
|
MemberAuthenticator:
|
||||||
TITLE: 'E-mail & Password'
|
TITLE: 'E-mail & Password'
|
||||||
MemberDatetimeOptionsetField:
|
MemberDatetimeOptionsetField:
|
||||||
@ -411,7 +389,6 @@ en:
|
|||||||
MONTHNOLEADING: 'Month digit without leading zero'
|
MONTHNOLEADING: 'Month digit without leading zero'
|
||||||
Preview: Preview
|
Preview: Preview
|
||||||
SHORTMONTH: 'Short name of month (e.g. Jun)'
|
SHORTMONTH: 'Short name of month (e.g. Jun)'
|
||||||
TOGGLEHELP: 'Toggle formatting help'
|
|
||||||
TWODIGITDAY: 'Two-digit day of month'
|
TWODIGITDAY: 'Two-digit day of month'
|
||||||
TWODIGITHOUR: 'Two digits of hour (00 through 23)'
|
TWODIGITHOUR: 'Two digits of hour (00 through 23)'
|
||||||
TWODIGITMINUTE: 'Two digits of minute (00 through 59)'
|
TWODIGITMINUTE: 'Two digits of minute (00 through 59)'
|
||||||
@ -443,8 +420,8 @@ en:
|
|||||||
Title: 'Data Models'
|
Title: 'Data Models'
|
||||||
UPDATEDRECORDS: 'Updated {count} records.'
|
UPDATEDRECORDS: 'Updated {count} records.'
|
||||||
ModelAdmin_ImportSpec_ss:
|
ModelAdmin_ImportSpec_ss:
|
||||||
IMPORTSPECFIELDS: 'Database columns'
|
|
||||||
IMPORTSPECLINK: 'Show Specification for %s'
|
IMPORTSPECLINK: 'Show Specification for %s'
|
||||||
|
IMPORTSPECFIELDS: 'Database columns'
|
||||||
IMPORTSPECRELATIONS: Relations
|
IMPORTSPECRELATIONS: Relations
|
||||||
IMPORTSPECTITLE: 'Specification for %s'
|
IMPORTSPECTITLE: 'Specification for %s'
|
||||||
ModelAdmin_Tools_ss:
|
ModelAdmin_Tools_ss:
|
||||||
@ -463,6 +440,10 @@ en:
|
|||||||
Pagination:
|
Pagination:
|
||||||
Page: Page
|
Page: Page
|
||||||
View: View
|
View: View
|
||||||
|
PasswordValidator:
|
||||||
|
LOWCHARSTRENGTH: 'Please increase password strength by adding some of the following characters: %s'
|
||||||
|
PREVPASSWORD: 'You''ve already used that password in the past, please choose a new password'
|
||||||
|
TOOSHORT: 'Password is too short, it must be %s or more characters long'
|
||||||
Permission:
|
Permission:
|
||||||
AdminGroup: Administrator
|
AdminGroup: Administrator
|
||||||
CMS_ACCESS_CATEGORY: 'CMS Access'
|
CMS_ACCESS_CATEGORY: 'CMS Access'
|
||||||
@ -482,19 +463,15 @@ en:
|
|||||||
Title: Title
|
Title: Title
|
||||||
PermissionRoleCode:
|
PermissionRoleCode:
|
||||||
PLURALNAME: 'Permission Role Cods'
|
PLURALNAME: 'Permission Role Cods'
|
||||||
|
PermsError: 'Can''t assign code "%s" with privileged permissions (requires ADMIN access)'
|
||||||
SINGULARNAME: 'Permission Role Code'
|
SINGULARNAME: 'Permission Role Code'
|
||||||
Permissions:
|
Permissions:
|
||||||
PERMISSIONS_CATEGORY: 'Roles and access permissions'
|
PERMISSIONS_CATEGORY: 'Roles and access permissions'
|
||||||
UserPermissionsIntro: 'Assigning groups to this user will adjust the permissions they have. See the groups section for details of permissions on individual groups.'
|
UserPermissionsIntro: 'Assigning groups to this user will adjust the permissions they have. See the groups section for details of permissions on individual groups.'
|
||||||
PhoneNumberField:
|
PhoneNumberField:
|
||||||
VALIDATION: 'Please enter a valid phone number'
|
VALIDATION: 'Please enter a valid phone number'
|
||||||
RelationComplexTableField_ss:
|
|
||||||
ADD: Add
|
|
||||||
CSVEXPORT: 'Export to CSV'
|
|
||||||
NOTFOUND: 'No items found'
|
|
||||||
Security:
|
Security:
|
||||||
ALREADYLOGGEDIN: 'You don''t have access to this page. If you have another account that can access that page, you can log in again below.'
|
ALREADYLOGGEDIN: 'You don''t have access to this page. If you have another account that can access that page, you can log in again below.'
|
||||||
LOSTPASSWORDHEADER: 'Lost Password'
|
|
||||||
BUTTONSEND: 'Send me the password reset link'
|
BUTTONSEND: 'Send me the password reset link'
|
||||||
CHANGEPASSWORDBELOW: 'You can change your password below.'
|
CHANGEPASSWORDBELOW: 'You can change your password below.'
|
||||||
CHANGEPASSWORDHEADER: 'Change your password'
|
CHANGEPASSWORDHEADER: 'Change your password'
|
||||||
@ -529,11 +506,11 @@ en:
|
|||||||
BtnImport: 'Import from CSV'
|
BtnImport: 'Import from CSV'
|
||||||
FileFieldLabel: 'CSV File <small>(Allowed extensions: *.csv)</small>'
|
FileFieldLabel: 'CSV File <small>(Allowed extensions: *.csv)</small>'
|
||||||
SilverStripeNavigator:
|
SilverStripeNavigator:
|
||||||
Edit: Edit
|
|
||||||
Auto: Auto
|
Auto: Auto
|
||||||
ChangeViewMode: 'Change view mode'
|
ChangeViewMode: 'Change view mode'
|
||||||
Desktop: Desktop
|
Desktop: Desktop
|
||||||
DualWindowView: 'Dual Window'
|
DualWindowView: 'Dual Window'
|
||||||
|
Edit: Edit
|
||||||
EditView: 'Edit mode'
|
EditView: 'Edit mode'
|
||||||
Mobile: Mobile
|
Mobile: Mobile
|
||||||
PreviewState: 'Preview State'
|
PreviewState: 'Preview State'
|
||||||
@ -543,32 +520,13 @@ en:
|
|||||||
Tablet: Tablet
|
Tablet: Tablet
|
||||||
ViewDeviceWidth: 'Select a preview width'
|
ViewDeviceWidth: 'Select a preview width'
|
||||||
Width: width
|
Width: width
|
||||||
SimpleImageField:
|
|
||||||
NOUPLOAD: 'No Image Uploaded'
|
|
||||||
SiteTree:
|
SiteTree:
|
||||||
TABMAIN: Main
|
TABMAIN: Main
|
||||||
TableField:
|
|
||||||
ISREQUIRED: 'In %s ''%s'' is required'
|
|
||||||
TableField_ss:
|
|
||||||
ADD: 'Add a new row'
|
|
||||||
ADDITEM: 'Add %s'
|
|
||||||
TableListField:
|
TableListField:
|
||||||
CSVEXPORT: 'Export to CSV'
|
CSVEXPORT: 'Export to CSV'
|
||||||
PRINT: Print
|
|
||||||
Print: Print
|
Print: Print
|
||||||
SELECT: 'Select:'
|
|
||||||
TableListField_ss:
|
|
||||||
NOITEMSFOUND: 'No items found'
|
|
||||||
SORTASC: 'Sort in ascending order'
|
|
||||||
SORTDESC: 'Sort in descending order'
|
|
||||||
TableListField_PageControls_ss:
|
TableListField_PageControls_ss:
|
||||||
DISPLAYING: Displaying
|
|
||||||
OF: of
|
OF: of
|
||||||
TO: to
|
|
||||||
VIEWFIRST: 'View first'
|
|
||||||
VIEWLAST: 'View last'
|
|
||||||
VIEWNEXT: 'View next'
|
|
||||||
VIEWPREVIOUS: 'View previous'
|
|
||||||
TimeField:
|
TimeField:
|
||||||
VALIDATEFORMAT: 'Please enter a valid time format ({format})'
|
VALIDATEFORMAT: 'Please enter a valid time format ({format})'
|
||||||
ToggleField:
|
ToggleField:
|
||||||
@ -578,6 +536,8 @@ en:
|
|||||||
ATTACHFILE: 'Attach a file'
|
ATTACHFILE: 'Attach a file'
|
||||||
ATTACHFILES: 'Attach files'
|
ATTACHFILES: 'Attach files'
|
||||||
AttachFile: 'Attach file(s)'
|
AttachFile: 'Attach file(s)'
|
||||||
|
CHOOSEANOTHERFILE: 'Choose another file'
|
||||||
|
CHOOSEANOTHERINFO: 'Replace this file with another one from the file store'
|
||||||
DELETE: 'Delete from files'
|
DELETE: 'Delete from files'
|
||||||
DELETEINFO: 'Permanently delete this file from the file store'
|
DELETEINFO: 'Permanently delete this file from the file store'
|
||||||
DOEDIT: Save
|
DOEDIT: Save
|
||||||
@ -592,45 +552,13 @@ en:
|
|||||||
FROMFILES: 'From files'
|
FROMFILES: 'From files'
|
||||||
HOTLINKINFO: 'Info: This image will be hotlinked. Please ensure you have permissions from the original site creator to do so.'
|
HOTLINKINFO: 'Info: This image will be hotlinked. Please ensure you have permissions from the original site creator to do so.'
|
||||||
MAXNUMBEROFFILES: 'Max number of {count} file(s) exceeded.'
|
MAXNUMBEROFFILES: 'Max number of {count} file(s) exceeded.'
|
||||||
MAXNUMBEROFFILESSHORT: 'Can only upload {count} files'
|
|
||||||
MAXNUMBEROFFILESONE: 'Can only upload one file'
|
MAXNUMBEROFFILESONE: 'Can only upload one file'
|
||||||
|
MAXNUMBEROFFILESSHORT: 'Can only upload {count} files'
|
||||||
|
OVERWRITEWARNING: 'File with the same name already exists'
|
||||||
REMOVE: Remove
|
REMOVE: Remove
|
||||||
REMOVEERROR: 'Error removing file'
|
|
||||||
REMOVEINFO: 'Remove this file from here, but do not delete it from the file store'
|
REMOVEINFO: 'Remove this file from here, but do not delete it from the file store'
|
||||||
STARTALL: 'Start all'
|
STARTALL: 'Start all'
|
||||||
STARTALLINFO: 'Start all uploads'
|
|
||||||
Saved: Saved
|
Saved: Saved
|
||||||
CHOOSEANOTHERFILE: 'Choose another file'
|
|
||||||
CHOOSEANOTHERINFO: 'Replace this file with another one from the file store'
|
|
||||||
OVERWRITEWARNING: 'File with the same name already exists'
|
|
||||||
UPLOADSINTO: 'saves into /{path}'
|
UPLOADSINTO: 'saves into /{path}'
|
||||||
Versioned:
|
Versioned:
|
||||||
has_many_Versions: Versions
|
has_many_Versions: Versions
|
||||||
CMSPageHistoryController_versions_ss:
|
|
||||||
PREVIEW: 'Website preview'
|
|
||||||
GridFieldEditButton_ss:
|
|
||||||
EDIT: Edit
|
|
||||||
CMSPageHistoryController_versions.ss:
|
|
||||||
PREVIEW: 'Website preview'
|
|
||||||
ContentController:
|
|
||||||
NOTLOGGEDIN: 'Not logged in'
|
|
||||||
GridFieldItemEditView:
|
|
||||||
Go_back: 'Go back'
|
|
||||||
LeftAndMain_Menu.ss:
|
|
||||||
Hello: Hi
|
|
||||||
LOGOUT: 'Log out'
|
|
||||||
ModelAdmin_ImportSpec.ss:
|
|
||||||
IMPORTSPECFIELDS: 'Database columns'
|
|
||||||
IMPORTSPECLINK: 'Show Specification for %s'
|
|
||||||
IMPORTSPECRELATIONS: Relations
|
|
||||||
IMPORTSPECTITLE: 'Specification for %s'
|
|
||||||
ModelAdmin_Tools.ss:
|
|
||||||
FILTER: Filter
|
|
||||||
IMPORT: Import
|
|
||||||
ModelSidebar.ss:
|
|
||||||
IMPORT_TAB_HEADER: Import
|
|
||||||
SEARCHLISTINGS: Search
|
|
||||||
PasswordValidator:
|
|
||||||
LOWCHARSTRENGTH: 'Please increase password strength by adding some of the following characters: %s'
|
|
||||||
PREVPASSWORD: 'You''ve already used that password in the past, please choose a new password'
|
|
||||||
TOOSHORT: 'Password is too short, it must be %s or more characters long'
|
|
||||||
|
Loading…
Reference in New Issue
Block a user