update some branding shit nigag

This commit is contained in:
2026-01-14 16:55:02 +00:00
parent 55e2c885b2
commit 9fb4bf8be2
4 changed files with 22 additions and 12 deletions

View File

@ -1,7 +1,9 @@
{
"name": "pl-fe",
"name": "ncd-fe",
"description": "Mastodon-compatible social media front-end.",
"keywords": ["fediverse"],
"keywords": [
"fediverse"
],
"website": "https://codeberg.org/mkljczk/pl-fe",
"stack": "container"
}

View File

@ -66,7 +66,12 @@
"account_moderation_modal.roles.moderator": "Janny",
"patron.donate": "Get a Badge",
"status.application_name": "ncd-fe",
"application.name": "ncd-fe",
"footer.meow": "Saving the world one shitpost at a time.",
"signup_panel.title": "Want to join {site_title}?",
"signup_panel.subtitle": "Sign up to shitpost with us!"
"signup_panel.subtitle": "Sign up to shitpost with us!",
"sourceCode.upstream": "https://codeberg.org/mkljczk/pl-fe",
"sourceCode.upstreamName": "mkljczk/pl-fe",
"sourceCode.displayName": "ncd-fe",
"getting_started.open_source_notice": "{sourceCode.displayName} is a fork of {sourceCode.displayName}. You can contribute or report issues at {code_link} (v{code_version})."
}

View File

@ -1,20 +1,20 @@
{
"name": "pl-fe",
"displayName": "pl-fe",
"name": "ncd-fe",
"displayName": "ncd-fe",
"version": "0.0.1",
"type": "module",
"description": "Mastodon-compatible social media front-end",
"homepage": "https://codeberg.org/mkljczk/pl-fe",
"description": "NiceCrew beta frontend - fork of mkljczk/pl-fe",
"homepage": "https://nicecrew.digital",
"repository": {
"type": "git",
"url": "https://codeberg.org/mkljczk/pl-fe"
"url": "https://gitea.nicecrew.digital/matty/ncd-fe"
},
"keywords": [
"fediverse",
"pleroma"
],
"bugs": {
"url": "https://codeberg.org/mkljczk/pl-fe/issues"
"url": "https://gitea.nicecrew.digital/matty/ncd-fe/issues"
},
"scripts": {
"start": "npx vite serve",

View File

@ -7,6 +7,8 @@ import sourceCode from 'pl-fe/utils/code';
const messages = defineMessages({
meow: { id: 'footer.meow', defaultMessage: 'meow :3 {emoji}' },
upstream: { id: 'sourceCode.upstream', defaultMessage: 'NIGGER' },
upstreamName: { id: 'sourceCode.upstreamName', defaultMessage: 'niggerpnenis' },
});
const LinkFooter: React.FC = (): JSX.Element => {
@ -21,9 +23,10 @@ const LinkFooter: React.FC = (): JSX.Element => {
) : (
<FormattedMessage
id='getting_started.open_source_notice'
defaultMessage='{code_name} is open source software. You can contribute or report issues at {code_link} (v{code_version}).'
defaultMessage='{code_name} is a fork of {upstream_link}. You can contribute or report issues at {code_link} (v{code_version}).'
values={{
code_name: sourceCode.displayName,
upstream_link: <a href={intl.formatMessage(messages.upstream)} target='_blank' rel='noopener'>{intl.formatMessage(messages.upstreamName)}</a>,
code_link: <a href={sourceCode.url} rel='noopener' target='_blank'>{sourceCode.repository}</a>,
code_version: sourceCode.version,
}}