-
Notifications
You must be signed in to change notification settings - Fork 7
fix(rename): replace Elk with Mozilla.social - MOSOWEB-98 #85
Conversation
@@ -7,7 +7,7 @@ const route = useRoute() | |||
if (process.server && !route.path.startsWith('/settings')) { | |||
useHead({ | |||
meta: [ | |||
{ property: 'og:url', content: `https://elk.zone${route.path}` }, | |||
{ property: 'og:url', content: `https://mozilla.social${route.path}` }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hopefully this makes sharing links better
@@ -52,7 +52,7 @@ function percolateStatus(status) { | |||
addStatus(status) | |||
} | |||
|
|||
nuxtApp.hook('elk-logo:click', () => { | |||
nuxtApp.hook('moz-logo:click', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These elk-logo
-> moz-logo
changes aren't visible to the user, but it felt like a reasonable change to make for a tiny bit of developer experience improvement
"app_logo": "Elk Logo", | ||
"app_name": "Elk", | ||
"app_logo": "Mozilla Logo", | ||
"app_name": "Mozilla.social", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
German translation - updated app name & logo
@@ -92,7 +92,7 @@ | |||
}, | |||
"app_desc_short": "Decentralized social media powered by Mastodon", | |||
"app_logo": "Mozilla Logo", | |||
"app_name": "Mozilla Social", | |||
"app_name": "Mozilla.social", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Went ahead and updated the English app name to match the Mozilla.social
syntax that product decided on
a4ff05e
to
bc2beca
Compare
Goal
Anywhere it's visible to the user, replace
elk
withMozilla.social
. MOSOWEB-98Implementation Details
elk
in the repo. Most of these are in documentation, config, constants, translations (that aren't supported) and dead components. I was pretty thorough in my chasing down of anything that might be visible to the user, and I think I've covered everything