Skip to content

Commit

Permalink
chore: リポジトリのリンクを明記するように
Browse files Browse the repository at this point in the history
  • Loading branch information
yupix committed Feb 11, 2024
1 parent 2eb51a4 commit 4f38ba7
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
8 changes: 8 additions & 0 deletions locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3564,6 +3564,10 @@ export interface Locale extends ILocale {
* クラシック
*/
"classic": string;
/**
* オリジン
*/
"origin": string;
/**
* スレッドをミュート
*/
Expand Down Expand Up @@ -7937,6 +7941,10 @@ export interface Locale extends ILocale {
* プロフィール
*/
"profile": string;
/**
* クラシックプロフィール
*/
"classicProfile": string;
/**
* サーバー情報
*/
Expand Down
4 changes: 2 additions & 2 deletions packages/backend/src/server/api/endpoints/meta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ export const meta = {
repositoryUrl: {
type: 'string',
optional: false, nullable: false,
default: 'https://github.com/misskey-dev/misskey',
default: 'https://github.com/akarinext/akariskey',
},
feedbackUrl: {
type: 'string',
optional: false, nullable: false,
default: 'https://github.com/misskey-dev/misskey/issues/new',
default: 'https://github.com/akarinext/akariskey/issues/new',
},
defaultDarkTheme: {
type: 'string',
Expand Down
1 change: 1 addition & 0 deletions packages/backend/src/server/web/views/base.pug
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ doctype html
Thank you for using Misskey!
If you are reading this message... how about joining the development?
https://github.com/misskey-dev/misskey
https://github.com/akarinext/akariskey
html
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/server/web/views/error.pug
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ doctype html
Thank you for using Misskey!
If you are reading this message... how about joining the development?
https://github.com/misskey-dev/misskey
https://github.com/akarinext/akariskey
html

Expand Down
7 changes: 6 additions & 1 deletion packages/frontend/src/pages/about-misskey.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ SPDX-License-Identifier: AGPL-3.0-only
<FormLink to="https://github.com/misskey-dev/misskey" external>
<template #icon><i class="ti ti-code"></i></template>
{{ i18n.ts._aboutMisskey.source }}
<template #suffix>GitHub</template>
<template #suffix>Official Misskey GitHub</template>
</FormLink>
<FormLink to="https://github.com/akarinext/akariskey" external>
<template #icon><i class="ti ti-code"></i></template>
{{ i18n.ts._aboutMisskey.source }}
<template #suffix>Akariskey GitHub</template>
</FormLink>
<FormLink to="https://crowdin.com/project/misskey" external>
<template #icon><i class="ti ti-language-hiragana"></i></template>
Expand Down

0 comments on commit 4f38ba7

Please sign in to comment.