mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 09:05:55 +00:00
Merge remote-tracking branch 'origin/1.0'
Conflicts: .travis.yml code/extensions/LeftAndMainSubsites.php composer.json
This commit is contained in:
commit
e6c8dff7be
@ -7,9 +7,9 @@ php:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- CORE_RELEASE=master
|
- CORE_RELEASE=3
|
||||||
matrix:
|
matrix:
|
||||||
- DB=MYSQL
|
- DB=MYSQL
|
||||||
- DB=PGSQL
|
- DB=PGSQL
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -218,6 +218,11 @@ class LeftAndMainSubsites extends Extension {
|
|||||||
Subsite::changeSubsite($_GET['SubsiteID']);
|
Subsite::changeSubsite($_GET['SubsiteID']);
|
||||||
|
|
||||||
//Redirect to clear the current page
|
//Redirect to clear the current page
|
||||||
|
if ($this->owner->canView(Member::currentUser())) {
|
||||||
|
//Redirect to clear the current page
|
||||||
|
return $this->owner->redirect($this->owner->Link());
|
||||||
|
}
|
||||||
|
//Redirect to the default CMS section
|
||||||
return $this->owner->redirect('admin/');
|
return $this->owner->redirect('admin/');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -230,7 +235,11 @@ class LeftAndMainSubsites extends Extension {
|
|||||||
// Update current subsite in session
|
// Update current subsite in session
|
||||||
Subsite::changeSubsite($record->SubsiteID);
|
Subsite::changeSubsite($record->SubsiteID);
|
||||||
|
|
||||||
//Redirect to clear the current page
|
if ($this->owner->canView(Member::currentUser())) {
|
||||||
|
//Redirect to clear the current page
|
||||||
|
return $this->owner->redirect($this->owner->Link());
|
||||||
|
}
|
||||||
|
//Redirect to the default CMS section
|
||||||
return $this->owner->redirect('admin/');
|
return $this->owner->redirect('admin/');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
67
lang/eo.yml
Normal file
67
lang/eo.yml
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
eo:
|
||||||
|
SubsiteAdmin:
|
||||||
|
MENUTITLE: Subretejoj
|
||||||
|
SubsiteXHRController:
|
||||||
|
MENUTITLE: SubsiteXHRController
|
||||||
|
ASSETADMIN:
|
||||||
|
SUBSITENOTICE: 'Dosierujoj kaj dosieroj kreitaj en la ĉefa retejo estas alireblaj de ĉiuj retejoj'
|
||||||
|
FileSubsites:
|
||||||
|
AllSitesDropdownOpt: 'Ĉiuj retejoj'
|
||||||
|
SubsiteFieldLabel: Subretejo
|
||||||
|
GridFieldAddFromTemplateButton:
|
||||||
|
AddFromTemplate: 'Aldoni novan el ŝablono'
|
||||||
|
GroupSubsites:
|
||||||
|
ACCESSALL: 'Ĉiuj subretejoj'
|
||||||
|
ACCESSONLY: 'Nur ĉi tiuj subretejoj'
|
||||||
|
ACCESSRADIOTITLE: 'Doni ĉi tiun grupon aliron al'
|
||||||
|
GlobalGroup: 'ĉiea grupo'
|
||||||
|
MANAGE_SUBSITES: 'Administri subretejojn por grupoj'
|
||||||
|
MANAGE_SUBSITES_HELP: 'Eblo limigi la permesojn por grupo al unu aŭ pluaj subretejoj.'
|
||||||
|
SECURITYTABTITLE: Subsites
|
||||||
|
LeftAndMainSubsites:
|
||||||
|
Saved: 'Konservita, bonvole ĝisdatigi rilatajn paĝojn.'
|
||||||
|
SiteTreeSubsites:
|
||||||
|
CopyAction: Kopio
|
||||||
|
CopyToSubsite: 'Kopii paĝon al subretejo'
|
||||||
|
Subsite:
|
||||||
|
COPYSTRUCTURE: 'Kopii strukturon de:'
|
||||||
|
CopyMessage: 'Kreis kopion de {title}'
|
||||||
|
CustomExtraMeta: 'Propraj meta-etikedoj'
|
||||||
|
CustomMetaDescription: Priskribo
|
||||||
|
CustomMetaKeywords: Ŝlosilvortoj
|
||||||
|
CustomMetaTitle: Titolo
|
||||||
|
DOMAINSAVEFIRST: 'Vi povas aldoni domajnojn post konservante unuafoje'
|
||||||
|
DomainsHeadline: 'Domajnoj por ĉi tiu subretejo'
|
||||||
|
DomainsListTitle: Domajnoj
|
||||||
|
IsPublicHeaderField: 'Aktiva subretejo'
|
||||||
|
NOTEMPLATE: 'Mankas ŝablono'
|
||||||
|
PLURALNAME: Subretejoj
|
||||||
|
PageTypeBlacklistField: 'Ĉu malpermesu paĝajn tipojn?'
|
||||||
|
SINGULARNAME: Subretejo
|
||||||
|
SiteConfigSubtitle: 'Jen via slogano'
|
||||||
|
SiteConfigTitle: 'Nomo de via retejo'
|
||||||
|
TabTitleConfig: Agordaro
|
||||||
|
ValidateTitle: 'Bonvole aldonu "Titolon"'
|
||||||
|
SubsiteDomain:
|
||||||
|
DOMAIN: Domajno
|
||||||
|
IS_PRIMARY: 'Estas unuaranga domajno'
|
||||||
|
PLURALNAME: 'Subretejaj domajnoj'
|
||||||
|
SINGULARNAME: 'Subreteja domajno'
|
||||||
|
SubsiteReportWrapper:
|
||||||
|
ReportDropdown: Retejoj
|
||||||
|
Subsites:
|
||||||
|
DefaultSiteFieldLabel: 'Apriora retejo'
|
||||||
|
DomainFieldLabel: Domajno
|
||||||
|
IsPublicFieldLabel: 'Enŝalti publikan aliron'
|
||||||
|
LanguageFieldLabel: Lingvo
|
||||||
|
MainSiteTitle: 'Ĉefa retejo'
|
||||||
|
PageTypeBlacklistFieldLabel: 'Paĝtipa nigra listo'
|
||||||
|
PrimaryDomainFieldLabel: 'Unuaranga domajno'
|
||||||
|
RedirectURLFieldLabel: 'Redirekti je URL'
|
||||||
|
ThemeFieldLabel: Etoso
|
||||||
|
TitleFieldLabel: 'Nomo de subretejo'
|
||||||
|
SubsitesVirtualPage:
|
||||||
|
DESCRIPTION: 'Vidigas la enhavon de paĝo en alia subretejo'
|
||||||
|
PLURALNAME: 'Virtualaj paĝoj de subretejoj'
|
||||||
|
SINGULARNAME: 'Virtuala paĝo de subretejoj'
|
||||||
|
SubsiteField: Subretejo
|
Loading…
x
Reference in New Issue
Block a user