diff --git a/PragmaThemePlugin.inc.php b/PragmaThemePlugin.inc.php
index 9303acf..9183785 100644
--- a/PragmaThemePlugin.inc.php
+++ b/PragmaThemePlugin.inc.php
@@ -133,7 +133,7 @@ public function addSiteWideData($hookname, $args) {
$orcidImageUrl = $this->getPluginPath() . '/templates/images/orcid.png';
if ($request->getContext()) {
- $templateMgr->assign('pragmaHomepageImage', $journal->getLocalizedSetting('homepageImage'));
+ $templateMgr->assign('pragmaHomepageImage', $journal->getLocalizedData('homepageImage'));
}
$templateMgr->assign(array(
diff --git a/templates/frontend/components/registrationFormContexts.tpl b/templates/frontend/components/registrationFormContexts.tpl
index c552150..f14c9c7 100755
--- a/templates/frontend/components/registrationFormContexts.tpl
+++ b/templates/frontend/components/registrationFormContexts.tpl
@@ -43,11 +43,11 @@
{foreach from=$readerUserGroups[$contextId] item=userGroup}
- {if $userGroup->getPermitSelfRegistration()}
- {assign var="userGroupId" value=$userGroup->getId()}
+ {if $userGroup->permitSelfRegistration}
+ {assign var="userGroupId" value=$userGroup->id}
- {$userGroup->getLocalizedName()}
+ {$userGroup->getLocalizedData('name')}
{if in_array($userGroupId, $userGroupIds)}
{assign var=isSelected value=true}
@@ -57,11 +57,11 @@
- {$currentContext->getLocalizedSetting('description')}
+ {$currentContext->getLocalizedData('description')}
- {$currentContext->getLocalizedSetting('about')}
+ {$currentContext->getLocalizedData('about')}
diff --git a/templates/frontend/pages/article.tpl b/templates/frontend/pages/article.tpl
index a810c62..710eb50 100644
--- a/templates/frontend/pages/article.tpl
+++ b/templates/frontend/pages/article.tpl
@@ -7,7 +7,7 @@
*
* @brief Display the page to view an article with all of it's details.
*
- * @uses $article Article This article
+ * @uses $article Submission This article
* @uses $publication Publication The publication being displayed
* @uses $firstPublication Publication The first published version of this article
* @uses $currentPublication Publication The most recently published version of this article
@@ -17,7 +17,7 @@
* @uses $primaryGalleys array List of article galleys that are not supplementary or dependent
* @uses $supplementaryGalleys array List of article galleys that are supplementary
*}
- {include file="frontend/components/header.tpl" pageTitleTranslated=$article->getLocalizedTitle()|escape}
+ {include file="frontend/components/header.tpl" pageTitleTranslated=$article->getLocalizedData('title')|escape}
diff --git a/templates/frontend/pages/editorialHistory.tpl b/templates/frontend/pages/editorialHistory.tpl
index 88f8c8d..97eaa1a 100644
--- a/templates/frontend/pages/editorialHistory.tpl
+++ b/templates/frontend/pages/editorialHistory.tpl
@@ -52,10 +52,11 @@
{/if}
{/foreach}
+
+ {include file="frontend/components/editLink.tpl" page="management" op="settings" path="context" anchor="masthead" sectionTitleKey="common.editorialHistory"}
+ {$currentContext->getLocalizedData('editorialHistory')}
- {include file="frontend/components/editLink.tpl" page="management" op="settings" path="context" anchor="masthead" sectionTitleKey="common.editorialHistory"}
- {$currentContext->getLocalizedData('editorialHistory')}
{include file="frontend/components/footer.tpl"}
diff --git a/templates/frontend/pages/indexSite.tpl b/templates/frontend/pages/indexSite.tpl
index a7f443d..a947c29 100644
--- a/templates/frontend/pages/indexSite.tpl
+++ b/templates/frontend/pages/indexSite.tpl
@@ -33,7 +33,7 @@
{assign var="countItems" value=count($journals)}
{foreach from=$journals item=journal}
{capture assign="url"}{url journal=$journal->getPath()}{/capture}
- {assign var="thumb" value=$journal->getLocalizedSetting('journalThumbnail')}
+ {assign var="thumb" value=$journal->getLocalizedData('journalThumbnail')}
{assign var="description" value=$journal->getLocalizedDescription()}
{assign var="journalKey" value=$journalKey+1}
diff --git a/templates/frontend/pages/orcidAbout.tpl b/templates/frontend/pages/orcidAbout.tpl
index a796747..4aadeb4 100644
--- a/templates/frontend/pages/orcidAbout.tpl
+++ b/templates/frontend/pages/orcidAbout.tpl
@@ -29,7 +29,7 @@
{translate key="orcid.about.howAndWhyMemberAPI"}
{else}
-
+
{translate key="orcid.about.howAndWhyPublicAPI"}
{/if}
diff --git a/templates/frontend/pages/privacy.tpl b/templates/frontend/pages/privacy.tpl
index 475815b..456174c 100755
--- a/templates/frontend/pages/privacy.tpl
+++ b/templates/frontend/pages/privacy.tpl
@@ -20,7 +20,7 @@
- {$currentContext->getLocalizedSetting('privacyStatement')}
+ {$currentContext->getLocalizedData('privacyStatement')}
diff --git a/templates/frontend/pages/userRegister.tpl b/templates/frontend/pages/userRegister.tpl
index f16e84b..1bb3b7f 100755
--- a/templates/frontend/pages/userRegister.tpl
+++ b/templates/frontend/pages/userRegister.tpl
@@ -63,7 +63,7 @@
{assign var=contextId value=$currentContext->getId()}
{assign var=userCanRegisterReviewer value=0}
{foreach from=$reviewerUserGroups[$contextId] item=userGroup}
- {if $userGroup->getPermitSelfRegistration()}
+ {if $userGroup->permitSelfRegistration}
{assign var=userCanRegisterReviewer value=$userCanRegisterReviewer+1}
{/if}
{/foreach}
@@ -80,16 +80,16 @@