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 {
MENU: [
{
nameIdent: 'yuniteRebranding.newsFeed',
nameIdent: 'yuniteRebranding.header.newsFeed',
path: '/',
},
{
nameIdent: 'yuniteRebranding.myGroups',
nameIdent: 'yuniteRebranding.header.myGroups',
path: '/my-groups',
},
{
nameIdent: 'yuniteRebranding.topics',
nameIdent: 'yuniteRebranding.header.topics',
url: 'https://yunite.org/themen/',
},
{
nameIdent: 'yuniteRebranding.about',
nameIdent: 'yuniteRebranding.header.about',
url: 'https://yunite.org',
},
],

View File

@ -17,7 +17,7 @@ const ORGANIZATION = defaultPageParamsPages.ORGANIZATION.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
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: {
// 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
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
// headlineIdent: 'site.imprint', // localized string identifier, on null it's hidden, if undefined default is used
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
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
// headlineIdent: 'site.data-privacy', // localized string identifier, on null it's hidden, if undefined default is used
hasContainer: true,
@ -124,7 +124,7 @@ export default {
SUPPORT,
FOOTER_LINK_LIST: [
ORGANIZATION,
// ORGANIZATION,
// TERMS_AND_CONDITIONS,
// CODE_OF_CONDUCT,
DATA_PRIVACY,

View File

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

View File

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