Adjust the footer

This commit is contained in:
Wolfgang Huß 2022-10-22 20:46:38 +02:00
parent c13b285992
commit ea51f73b64
4 changed files with 28 additions and 16 deletions

View File

@ -1,19 +1,19 @@
export default { export default {
MENU: [ MENU: [
{ {
nameIdent: 'yuniteRebranding.newsFeed', nameIdent: 'yuniteRebranding.header.newsFeed',
path: '/', path: '/',
}, },
{ {
nameIdent: 'yuniteRebranding.myGroups', nameIdent: 'yuniteRebranding.header.myGroups',
path: '/my-groups', path: '/my-groups',
}, },
{ {
nameIdent: 'yuniteRebranding.topics', nameIdent: 'yuniteRebranding.header.topics',
url: 'https://yunite.org/themen/', url: 'https://yunite.org/themen/',
}, },
{ {
nameIdent: 'yuniteRebranding.about', nameIdent: 'yuniteRebranding.header.about',
url: 'https://yunite.org', url: 'https://yunite.org',
}, },
], ],

View File

@ -17,7 +17,7 @@ const ORGANIZATION = defaultPageParamsPages.ORGANIZATION.overwrite({
}) })
const DONATE = defaultPageParamsPages.DONATE.overwrite({ const DONATE = defaultPageParamsPages.DONATE.overwrite({
// we use 'ocelot-social.herokuapp.com' at the moment, because redirections of 'ocelot.social' subpages are not working correctly // we use 'ocelot-social.herokuapp.com' at the moment, because redirections of 'ocelot.social' subpages are not working correctly
externalLink: 'https://yunite.org/brand-guidelines/', // if string is defined and not empty it's dominating externalLink: 'https://yunite.org/spenden/', // if string is defined and not empty it's dominating
internalPage: { internalPage: {
// footerIdent: 'site.donate', // localized string identifier, if undefined default is used // footerIdent: 'site.donate', // localized string identifier, if undefined default is used
@ -34,7 +34,7 @@ const IMPRINT = defaultPageParamsPages.IMPRINT.overwrite({
externalLink: 'https://yunite.org/impressum/', // if string is defined and not empty it's dominating externalLink: 'https://yunite.org/impressum/', // if string is defined and not empty it's dominating
internalPage: { internalPage: {
// footerIdent: 'site.imprint', // localized string identifier, if undefined default is used footerIdent: 'yuniteRebranding.footer.imprint', // localized string identifier, if undefined default is used
// headTitleIdent: 'site.imprint', // localized string identifier, if undefined default is used // headTitleIdent: 'site.imprint', // localized string identifier, if undefined default is used
// headlineIdent: 'site.imprint', // localized string identifier, on null it's hidden, if undefined default is used // headlineIdent: 'site.imprint', // localized string identifier, on null it's hidden, if undefined default is used
hasContainer: true, hasContainer: true,
@ -73,7 +73,7 @@ const DATA_PRIVACY = defaultPageParamsPages.DATA_PRIVACY.overwrite({
externalLink: 'https://yunite.org/datenschutz/', // if string is defined and not empty it's dominating externalLink: 'https://yunite.org/datenschutz/', // if string is defined and not empty it's dominating
internalPage: { internalPage: {
// footerIdent: 'site.data-privacy', // localized string identifier, if undefined default is used footerIdent: 'yuniteRebranding.footer.dataPrivacy', // localized string identifier, if undefined default is used
// headTitleIdent: 'site.data-privacy', // localized string identifier, if undefined default is used // headTitleIdent: 'site.data-privacy', // localized string identifier, if undefined default is used
// headlineIdent: 'site.data-privacy', // localized string identifier, on null it's hidden, if undefined default is used // headlineIdent: 'site.data-privacy', // localized string identifier, on null it's hidden, if undefined default is used
hasContainer: true, hasContainer: true,
@ -124,7 +124,7 @@ export default {
SUPPORT, SUPPORT,
FOOTER_LINK_LIST: [ FOOTER_LINK_LIST: [
ORGANIZATION, // ORGANIZATION,
// TERMS_AND_CONDITIONS, // TERMS_AND_CONDITIONS,
// CODE_OF_CONDUCT, // CODE_OF_CONDUCT,
DATA_PRIVACY, DATA_PRIVACY,

View File

@ -1,8 +1,14 @@
{ {
"yuniteRebranding": { "yuniteRebranding": {
"header": {
"about": "Über Yunite", "about": "Über Yunite",
"myGroups": "Gruppen", "myGroups": "Gruppen",
"newsFeed": "Beiträge", "newsFeed": "Beiträge",
"topics": "Themen" "topics": "Themen"
},
"footer": {
"dataPrivacy": "Datenschutz",
"imprint": "Impressum"
}
} }
} }

View File

@ -1,8 +1,14 @@
{ {
"yuniteRebranding": { "yuniteRebranding": {
"header": {
"about": "About Yunite", "about": "About Yunite",
"myGroups": "Groups", "myGroups": "Groups",
"newsFeed": "News Feed", "newsFeed": "News Feed",
"topics": "Topics" "topics": "Topics"
},
"footer": {
"dataPrivacy": "Data privacy",
"imprint": "Imprint"
}
} }
} }