|
@@ -103,7 +103,6 @@ export let _v_sitebranding_block, _v_user_block, _v_header_menu,
|
|
function initVues () {
|
|
function initVues () {
|
|
// only launch views if we are not in commerce pages
|
|
// only launch views if we are not in commerce pages
|
|
if (!checkNoVuePages()) {
|
|
if (!checkNoVuePages()) {
|
|
- initVi18n()
|
|
|
|
initVRouter()
|
|
initVRouter()
|
|
initVSiteBrandingBlock()
|
|
initVSiteBrandingBlock()
|
|
initVPagetitleBlock()
|
|
initVPagetitleBlock()
|
|
@@ -112,6 +111,7 @@ export let _v_sitebranding_block, _v_user_block, _v_header_menu,
|
|
initVSearchBlock()
|
|
initVSearchBlock()
|
|
initVMainContent()
|
|
initVMainContent()
|
|
initVStore()
|
|
initVStore()
|
|
|
|
+ initVi18n()
|
|
initVLeftContent()
|
|
initVLeftContent()
|
|
}
|
|
}
|
|
initVUserBlock()
|
|
initVUserBlock()
|
|
@@ -133,7 +133,7 @@ export let _v_sitebranding_block, _v_user_block, _v_header_menu,
|
|
function initVRouter () {
|
|
function initVRouter () {
|
|
// we need this to update the title and body classes while using history nav
|
|
// we need this to update the title and body classes while using history nav
|
|
router.beforeEach((to, from, next) => {
|
|
router.beforeEach((to, from, next) => {
|
|
- console.log('router beforeEach to ', to, router, i18n)
|
|
|
|
|
|
+ console.log('router beforeEach to ', to, router.app.$i18n)
|
|
// commit new title to store
|
|
// commit new title to store
|
|
let title = null
|
|
let title = null
|
|
switch (to.name) {
|
|
switch (to.name) {
|
|
@@ -144,7 +144,7 @@ export let _v_sitebranding_block, _v_user_block, _v_header_menu,
|
|
title = false
|
|
title = false
|
|
break
|
|
break
|
|
case 'pricing':
|
|
case 'pricing':
|
|
- title = i18n.t(to.name)
|
|
|
|
|
|
+ title = i18n.t('materio.' + to.name)
|
|
break
|
|
break
|
|
default:
|
|
default:
|
|
title = to.name
|
|
title = to.name
|