Skip to content

Commit

Permalink
一応登録受付中なことも通知
Browse files Browse the repository at this point in the history
  • Loading branch information
atsu1125 committed Mar 2, 2023
1 parent 04662ef commit 66b97c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions locales/en-US.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1800,6 +1800,7 @@ desktop/views/pages/welcome.vue:
info: "Information"
invitation-required-to-register: "This server is currently invitation only. Only those with an invitation code can register."
unavailable-registration: "This server is not currently registration."
available-registration: "This server is currently accepting registration!"
desktop/views/pages/drive.vue:
title: "Misskey storage"
desktop/views/pages/note.vue:
Expand Down
1 change: 1 addition & 0 deletions locales/ja-JP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1961,6 +1961,7 @@ desktop/views/pages/welcome.vue:
info: "情報"
invitation-required-to-register: "現在このサーバーは招待制です。招待コードをお持ちの方のみ登録できます。"
unavailable-registration: "現在このサーバーは登録を受け付けておりません。"
available-registration: "現在このサーバーは登録受付中です!"

desktop/views/pages/drive.vue:
title: "Misskey Drive"
Expand Down
1 change: 1 addition & 0 deletions src/client/app/desktop/views/pages/welcome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<span class="desc" v-html="description || $t('@.about')"></span>
<ui-info warn v-if="meta && (meta.disableRegistration && meta.disableInvitation)">{{ $t('unavailable-registration') }}</ui-info>
<ui-info warn v-if="meta && (meta.disableRegistration && !meta.disableInvitation)">{{ $t('invitation-required-to-register') }}</ui-info>
<ui-info v-if="meta && (!meta.disableRegistration && !meta.disableInvitation)">{{ $t('available-registration') }}</ui-info>
</div>

<p class="sign">
Expand Down

0 comments on commit 66b97c4

Please sign in to comment.