update some branding shit nigag
This commit is contained in:
@ -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"
|
||||
}
|
||||
@ -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})."
|
||||
}
|
||||
@ -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",
|
||||
|
||||
@ -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,
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user