This commit is contained in:
Sam Therapy 2023-02-18 14:53:35 +01:00
commit 237c478a6d
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
15 changed files with 10975 additions and 13423 deletions

4
.gitattributes vendored Normal file
View File

@ -0,0 +1,4 @@
/.yarn/** linguist-vendored
/.yarn/releases/* binary
/.yarn/plugins/**/* binary
/.pnp.* binary linguist-generated

873
.yarn/releases/yarn-3.4.1.cjs vendored Executable file

File diff suppressed because one or more lines are too long

View File

@ -3,6 +3,34 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## 2.5.1
### Fixed
- Checkboxes in settings can now work with screenreaders
- Autocomplete in edit boxes can now work with screenreaders
- Status interact buttons now have focus indicator for anonymous users
- Top bar buttons now correctly have text labels
- It is now possible to register if the site admin requires birthday to register
- User cards from search results will correctly popup
- Fix notification attachment icon overflow
- Editing mute words is less laggy
- Repeater's name will no longer mess up with the directionality of the text sitting on the same line
- Unauthenticated access will give better error messages
- It is now easier to close the media viewer with a mouse when there is only one image
- Deleting profile fields can work properly
- Clicking the react button will correctly focus the search box
- Clicking buttons on the top-bar will no longer bring you to the top of the page
- Emoji picker is much faster to load
- `blockquote`s have a better display style
- Announcements posting and editing are now available to everyone with such a privilege, not just admins
- Adding or removing list members will actually work
- Emojis without a pack are now correctly displayed in emoji picker
- Changing notification settings will actually work
### Added
- You can now set and see birthdays
- Optional confirmation dialogs when performing various actions
- You can now set fallback languages
## 2.5.0 - 23.12.2022
### Fixed
- UI no longer lags when switching between mobile and desktop mode

View File

@ -70,7 +70,7 @@
"css-loader": "6.7.3",
"css-minimizer-webpack-plugin": "4.2.2",
"custom-event-polyfill": "1.0.7",
"eslint": "8.32.0",
"eslint": "8.33.0",
"eslint-config-standard": "17.0.0",
"eslint-formatter-friendly": "7.0.0",
"eslint-plugin-import": "2.27.5",
@ -97,7 +97,7 @@
"lodash": "4.17.21",
"mini-css-extract-plugin": "2.7.2",
"mocha": "10.2.0",
"nightwatch": "2.6.10",
"nightwatch": "2.6.11",
"opn": "5.5.0",
"ora": "0.4.1",
"postcss": "8.4.20",

View File

@ -580,8 +580,6 @@ textarea,
}
&[type="checkbox"] {
display: none;
&:checked + label::before {
color: $fallback--text;
color: var(--inputText, $fallback--text);
@ -887,3 +885,15 @@ option {
opacity: 0;
}
/* stylelint-enable no-descending-specificity */
.visible-for-screenreader-only {
display: block;
width: 1px;
height: 1px;
margin: -1px;
overflow: hidden;
visibility: visible;
clip: rect(0 0 0 0);
padding: 0;
position: absolute;
}

View File

@ -5,12 +5,16 @@
>
<input
type="checkbox"
class="visible-for-screenreader-only"
:disabled="disabled"
:checked="modelValue"
:indeterminate="indeterminate"
@change="$emit('update:modelValue', $event.target.checked)"
>
<i class="checkbox-indicator" />
<i
class="checkbox-indicator"
:aria-hidden="true"
/>
<span
v-if="!!$slots.default"
class="label"
@ -33,6 +37,7 @@ export default {
<style lang="scss">
@import "../../variables";
@import "../../mixins";
.checkbox {
position: relative;
@ -81,8 +86,6 @@ export default {
}
input[type="checkbox"] {
display: none;
&:checked + .checkbox-indicator::before {
color: $fallback--text;
color: var(--inputText, $fallback--text);

View File

@ -16,7 +16,7 @@ const registration = {
confirm: '',
birthday: '',
reason: '',
language: ''
language: ['']
},
captcha: {}
}),
@ -100,7 +100,7 @@ const registration = {
this.user.captcha_token = this.captcha.token
this.user.captcha_answer_data = this.captcha.answer_data
if (this.user.language) {
this.user.language = localeService.internalToBackendLocale(this.user.language)
this.user.language = localeService.internalToBackendLocaleMulti(this.user.language.filter(k => k))
}
this.v$.$touch()

View File

@ -210,6 +210,7 @@
:prompt-text="$t('registration.email_language')"
:language="v$.user.language.$model"
:set-language="val => v$.user.language.$model = val"
@click.stop.prevent
/>
</div>

View File

@ -1,6 +1,6 @@
<template>
<div
class="screen-reader-text"
class="visible-for-screenreader-only"
:aria-live="ariaLive"
>
{{ currentText }}
@ -8,14 +8,3 @@
</template>
<script src="./screen_reader_notice.js"></script>
<style lang="scss">
.screen-reader-text {
display: block;
width: 1px;
height: 1px;
margin: -1px;
overflow: hidden;
visibility: visible;
}
</style>

View File

@ -5,12 +5,12 @@
>
<Popover
trigger="hover"
:trigger-attrs="{ 'aria-label': $t('settings.setting_changed') }"
>
<template #trigger>
&nbsp;
<FAIcon
icon="wrench"
:aria-label="$t('settings.setting_changed')"
/>
</template>
<template #content>

View File

@ -17,7 +17,17 @@
"media_removal": "メディアをのぞく",
"media_removal_desc": "このインスタンスは、これらのインスタンスからおくられてきたメディアを、とりのぞきます:",
"media_nsfw": "メディアをすべてセンシティブにする",
"media_nsfw_desc": "このインスタンスは、これらのインスタンスからおくられてきたメディアを、すべて、センシティブにマークします:"
"media_nsfw_desc": "このインスタンスは、これらのインスタンスからおくられてきたメディアを、すべて、センシティブにマークします:",
"reason": "りゆう",
"instance": "インスタンス",
"not_applicable": "なし"
},
"keyword": {
"keyword_policies": "キーワードポリシー",
"reject": "おことわり",
"replace": "おきかえ",
"ftl_removal": "「つながっているすべてのネットワーク」タイムラインからのぞく",
"is_replaced_by": "→"
}
},
"staff": "スタッフ"
@ -36,7 +46,10 @@
"scope_options": "こうかいはんいせんたく",
"text_limit": "もじのかず",
"title": "ゆうこうなきのう",
"who_to_follow": "おすすめユーザー"
"who_to_follow": "おすすめユーザー",
"pleroma_chat_messages": "Pleroma チャット",
"upload_limit": "アップロードできるファイルのおおきさ",
"shout": "Shoutbox"
},
"finder": {
"error_fetching_user": "ユーザーけんさくがエラーになりました",
@ -54,7 +67,34 @@
"disable": "なし",
"enable": "あり",
"confirm": "たしかめる",
"verify": "たしかめる"
"verify": "たしかめる",
"retry": "もういちど、ためしてください",
"loading": "よみこんでいます…",
"undo": "もとにもどす",
"yes": "はい",
"no": "いいえ",
"unpin": "ピンどめするのをやめる",
"scroll_to_top": "いちばんうえにもどる",
"role": {
"moderator": "モデレーター",
"admin": "かんりするひと"
},
"flash_security": "Flash コンテンツはどんなコードでもじっこうできるので、あぶないかもしれません。",
"flash_fail": "Flash コンテンツをよみこむことに、しっぱいしました。コンソールで、くわしいないようを、よむことができます。",
"scope_in_timeline": {
"private": "フォロワーげんてい",
"public": "パブリック",
"unlisted": "アンリステッド",
"direct": "ダイレクト"
},
"pin": "ピンどめする",
"flash_content": "Flash コンテンツを、 Ruffle をつかってひょうじする (うごかないかもしれません)。",
"generic_error_message": "エラーになりました: {0}",
"error_retry": "もういちど、ためしてください",
"never_show_again": "にどとひょうじしない",
"close": "とじる",
"dismiss": "むしする",
"peek": "かくす"
},
"image_cropper": {
"crop_picture": "がぞうをきりぬく",
@ -83,11 +123,17 @@
"heading": {
"totp": "2-ファクターにんしょう",
"recovery": "2-ファクターリカバリー"
}
},
"logout_confirm_title": "ログアウトのかくにん",
"logout_confirm": "ほんとうに、ログアウトしますか?",
"logout_confirm_accept_button": "ログアウトする",
"logout_confirm_cancel_button": "ログアウトしない"
},
"media_modal": {
"previous": "まえ",
"next": "つぎ"
"next": "つぎ",
"counter": "{current} / {total}",
"hide": "メディアビューアーをとじる"
},
"nav": {
"about": "これはなに?",
@ -104,7 +150,20 @@
"user_search": "ユーザーをさがす",
"search": "さがす",
"who_to_follow": "おすすめユーザー",
"preferences": "せってい"
"preferences": "せってい",
"home_timeline": "ホームタイムライン",
"bookmarks": "ブックマーク",
"timelines": "タイムライン",
"chats": "チャット",
"lists": "リスト",
"mobile_notifications": "つうちをひらく (よんでないものがあります)",
"mobile_notifications_close": "つうちをとじる",
"announcements": "おしらせ",
"edit_pinned": "ピンどめをへんしゅう",
"search_close": "けんさくバーをとじる",
"edit_nav_mobile": "ナビゲーションバーのせっていをかえる",
"mobile_sidebar": "モバイルのサイドバーをきりかえる",
"edit_finish": "へんしゅうをおわりにする"
},
"notifications": {
"broken_favorite": "ステータスがみつかりません。さがしています…",
@ -114,21 +173,29 @@
"notifications": "つうち",
"read": "よんだ!",
"repeated_you": "あなたのステータスがリピートされました",
"no_more_notifications": "つうちはありません"
"no_more_notifications": "つうちはありません",
"error": "つうちをとりにいくことに、しっぱいしました: {0}",
"follow_request": "あなたをフォローしたいです",
"migrated_to": "インスタンスを、ひっこしました",
"reacted_with": "{0} でリアクションしました",
"poll_ended": "とうひょうが、おわりました",
"submitted_report": "つうほうしました"
},
"polls": {
"add_poll": "いれふだをはじめる",
"add_poll": "とうひょうをはじめる",
"add_option": "オプションをふやす",
"option": "オプション",
"votes": "いれふだ",
"vote": "ふだをいれる",
"type": "いれふだのかた",
"votes": "ひょう",
"vote": "とうひょうする",
"type": "とうひょうのけいしき",
"single_choice": "ひとつえらぶ",
"multiple_choices": "いくつでもえらべる",
"expiry": "いれふだのながさ",
"expires_in": "いれふだは {0} で、おわります",
"expired": "いれふだは {0} まえに、おわりました",
"not_enough_options": "ユニークなオプションが、たりません"
"expiry": "とうひょうのながさ",
"expires_in": "とうひょうは {0} で、おわります",
"expired": "とうひょうは {0} まえに、おわりました",
"not_enough_options": "ユニークなオプションが、たりません",
"people_voted_count": "{count} にんが、とうひょうしました",
"votes_count": "{count} ひょう"
},
"emoji": {
"stickers": "ステッカー",
@ -139,7 +206,19 @@
"custom": "カスタムえもじ",
"unicode": "ユニコードえもじ",
"load_all_hint": "はじめの {saneAmount} このえもじだけがロードされています。すべてのえもじをロードすると、パフォーマンスがわるくなるかもしれません。",
"load_all": "すべてのえもじをロード ({emojiAmount} こあります)"
"load_all": "すべてのえもじをロード ({emojiAmount} こあります)",
"unicode_groups": {
"flags": "はた",
"activities": "かつどう",
"animals-and-nature": "どうぶつ・しぜん",
"food-and-drink": "たべもの・のみもの",
"objects": "もの",
"people-and-body": "ひと・からだ",
"smileys-and-emotion": "えがお・きもち",
"symbols": "きごう",
"travel-and-places": "りょこう・ばしょ"
},
"regional_indicator": "ばしょをしめすきごう {letter}"
},
"stickers": {
"add_sticker": "ステッカーをふやす"
@ -147,7 +226,10 @@
"interactions": {
"favs_repeats": "リピートとおきにいり",
"follows": "あたらしいフォロー",
"load_older": "ふるいやりとりをみる"
"load_older": "ふるいやりとりをみる",
"emoji_reactions": "えもじリアクション",
"moves": "ユーザーのひっこし",
"reports": "つうほう"
},
"post_status": {
"new_status": "とうこうする",
@ -176,7 +258,18 @@
"private": "フォロワーげんてい: フォロワーのみにとどきます",
"public": "パブリック: パブリックタイムラインにとどきます",
"unlisted": "アンリステッド: パブリックタイムラインにとどきません"
}
},
"media_description_error": "メディアのアップロードにしっぱいしました。もういちどためしてください",
"edit_status": "ステータスをへんしゅうする",
"media_description": "メディアのせつめい",
"content_type_selection": "とうこうのけいしき",
"edit_remote_warning": "ほかのリモートインスタンスは、へんしゅうをサポートしていないかもしれません。そして、へんしゅうされたとうこうをうけとることができないかもしれません。",
"post": "とうこう",
"edit_unsupported_warning": "Pleroma は、メンションやとうひょうのへんしゅうを、サポートしていません。",
"preview": "プレビュー",
"preview_empty": "なにもありません",
"empty_status_error": "とうこうないようを、にゅうりょくしてください",
"scope_notice_dismiss": "このつうちをとじる"
},
"registration": {
"bio": "プロフィール",
@ -196,8 +289,18 @@
"email_required": "なにかかいてください",
"password_required": "なにかかいてください",
"password_confirmation_required": "なにかかいてください",
"password_confirmation_match": "パスワードがちがいます"
}
"password_confirmation_match": "パスワードがちがいます",
"birthday_required": "なにかかいてください",
"birthday_min_age": "{date} か、それよりまえにしてください"
},
"reason_placeholder": "このインスタンスでは、ひとがかくにんして、とうろくをうけいれています。\nなぜあなたがとうろくしたいのかを、かんりしているひとに、おしえてください。",
"bio_optional": "プロフィール (かかなくてもよい)",
"reason": "とうろくするりゆう",
"email_optional": "Eメール (かかなくてもよい)",
"register": "とうろくする",
"email_language": "サーバーからのメールは、なにご(どのことば)がいいですか?",
"birthday": "たんじょうび:",
"birthday_optional": "たんじょうび (かかなくてもよい):"
},
"remote_user_resolver": {
"remote_user_resolver": "リモートユーザーリゾルバー",
@ -393,7 +496,24 @@
"save_load_hint": "「のこす」オプションをONにすると、テーマをえらんだときとロードしたとき、いまのせっていをのこします。また、テーマをエクスポートするとき、これらのオプションをストアします。すべてのチェックボックスをOFFにすると、テーマをエクスポートしたとき、すべてのせっていをセーブします。",
"reset": "リセット",
"clear_all": "すべてクリア",
"clear_opacity": "とうめいどをクリア"
"clear_opacity": "とうめいどをクリア",
"help": {
"older_version_imported": "ふるいバージョンのフロントエンドでつくられたファイルをインポートしました。",
"snapshot_missing": "ファイルにはテーマのスナップショットがありません。おもっていたみためと、ちがうかもしれません。",
"migration_snapshot_ok": "あんぜんのため、テーマのスナップショットがよみこまれました。テーマのデータをよみこむことができます。",
"snapshot_source_mismatch": "バージョンがただしくないです。フロントエンドのバージョンをもとにもどしたあと、あたらしくしたことが、りゆうかもしれません。ふるいフロントエンドでテーマをへんこうしていたばあい、ふるいバージョンをつかうのがいいです。そうでないばあい、あたらしいバージョンをつかってください。",
"snapshot_present": "テーマのスナップショットをよみこみました。せっていはうわがきされました。かわりに、テーマのじっさいのデータをよみこむことができます。",
"fe_upgraded": "フロントエンドといっしょに、テーマエンジンもあたらしくなりました。",
"fe_downgraded": "フロントエンドが、まえのバージョンにもどりました。",
"migration_napshot_gone": "スナップショットがありません。おぼえているみためと、ちがうかもしれません。",
"upgraded_from_v2": "PleromaFEがあたらしくなったので、いままでのみためとすこしちがうかもしれません。",
"v2_imported": "ふるいフロントエンドのためのファイルをインポートしました。せっていしたのとは、すこしちがうかもしれません。",
"future_version_imported": "あたらしいフロントエンドでつくられたファイルをインポートしました。"
},
"load_theme": "テーマをよみこむ",
"keep_as_is": "そのままにする",
"use_snapshot": "ふるいバージョン",
"use_source": "あたらしいバージョン"
},
"common": {
"color": "いろ",
@ -429,7 +549,26 @@
"borders": "さかいめ",
"buttons": "ボタン",
"inputs": "インプットフィールド",
"faint_text": "うすいテキスト"
"faint_text": "うすいテキスト",
"post": "とうこう / プロフィール",
"wallpaper": "かべがみ",
"icons": "アイコン",
"highlight": "よくみえるようにした、ようそ",
"pressed": "おしたとき",
"chat": {
"border": "さかいめ",
"incoming": "うけとったもの",
"outgoing": "おくったもの"
},
"underlay": "アンダーレイ",
"alert_neutral": "それいがい",
"popover": "ツールチップ、メニュー、ポップオーバー",
"poll": "とうひょうのグラフ",
"selectedPost": "えらんだとうこう",
"selectedMenu": "えらんだメニューアイテム",
"disabled": "つかえないとき",
"toggled": "きりかえたとき",
"tabs": "タブ"
},
"radii": {
"_tab_label": "まるさ"
@ -462,7 +601,8 @@
"buttonPressed": "ボタン (おされているとき)",
"buttonPressedHover": "ボタン (ホバー、かつ、おされているとき)",
"input": "インプットフィールド"
}
},
"hintV3": "かげのばあいは、 {0} というかきかたをつかうことができます。そうすると、ほかのいろのスロットをつかうことができます。"
},
"fonts": {
"_tab_label": "フォント",
@ -497,7 +637,167 @@
"title": "バージョン",
"backend_version": "バックエンドのバージョン",
"frontend_version": "フロントエンドのバージョン"
}
},
"notification_visibility_polls": "あなたがさんかしたとうひょうが、おわりました",
"setting_server_side": "このせっていは、あなたのプロフィールについてのものです。へんこうすると、すべてのセッションとクライアントにえいきょうします",
"mute_import_error": "ミュートのインポートが、エラーになりました",
"account_backup_description": "あなたのアカウントじょうほうや、とうこうのアーカイブを、ダウンロードすることができます。しかし、 Pleroma アカウントにインポートすることはまだできません。",
"list_backups_error": "バックアップリストをとりにいくことが、エラーになりました: {error}",
"list_aliases_error": "エイリアスをとりにいくときに、エラーになりました: {error}",
"added_alias": "エイリアスをつくりました。",
"move_account_notes": "もしあなたがアカウントをほかのインスタンスにひっこしたいのなら、ひっこすさきのアカウントからここへのエイリアスをつくってください。",
"file_export_import": {
"backup_settings_theme": "せっていとテーマをファイルにバックアップする",
"restore_settings": "ファイルからせっていをもとにもどす",
"errors": {
"file_too_new": "メジャーバージョン({fileMajor})がちがいます。この PleromaFE (せっていのバージョン {feMajor}) はふるいので、つかうことができません",
"file_slightly_new": "ファイルのマイナーバージョンがちがっています。いくつかのせっていは、よみこまれないかもしれません",
"invalid_file": "これは Pleroma のせっていをバックアップしたファイルではありません。",
"file_too_old": "メジャーバージョン({fileMajor})がちがいます。ファイルのバージョンが古いので、使うことができません(バージョン {feMajor} いじょうのせっていバージョンをつかってください)"
},
"backup_settings": "せっていをファイルにバックアップする",
"backup_restore": "せっていのバックアップ"
},
"hide_wallpaper": "このインスタンスのバックグラウンドをかくす",
"reply_visibility_following_short": "わたしのフォローしているひとにあてられたリプライをみる",
"reply_visibility_self_short": "じぶんにあてられたリプライだけをみる",
"save": "へんこうをほぞんする",
"reset_banner_confirm": "ほんとうに、バナーをリセットしますか?",
"tree_advanced": "ツリービューで、ナビゲーションをもっとじゅうなんにする",
"third_column_mode": "じゅうぶんなくうかんがあれば、3ばんめのれつをひょうじする",
"conversation_other_replies_button": "「ほかのリプライ」ボタンをひょうじするばしょ",
"user_popover_avatar_action_open": "プロフィールをひらく",
"notification_setting_filters": "フィルター",
"notification_setting_hide_notification_contents": "おくったひとと、ないようを、プッシュつうちにひょうじしない",
"backup_running": "バックアップしています。{number}このデータをしょりしました。",
"word_filter_and_more": "ことばのフィルターと、そのほか…",
"account_privacy": "プライバシー",
"posts": "とうこう",
"move_account": "アカウントをひっこす",
"move_account_target": "ひっこしさきのアカウント (れい: {example})",
"mute_bot_posts": "Bot のとうこうをミュートする",
"hide_bot_indication": "Bot によるとうこうであることを、とうこうにひょうじしない",
"hide_all_muted_posts": "ミュートしたとうこうをかくす",
"hide_shoutbox": "Shoutbox をかくす",
"conversation_display_tree": "ツリーけいしき",
"mention_link_display_full_for_remote": "リモートユーザーだけ、ながいなまえでひょうじする (れい: {'@'}hoge{'@'}example.org)",
"mention_link_bolden_you": "あなたがメンションされたとき、あなたへのメンションを、よくみえるようにする",
"user_popover_avatar_action": "ポップオーバーのアバターをクリックしたとき",
"user_popover_avatar_action_zoom": "アバターをおおきくする",
"user_popover_avatar_action_close": "ポップオーバーをとじる",
"always_show_post_button": "とうこうボタンをいつもひょうじする",
"auto_update": "あたらしいとうこうを、じどうてきにみせる",
"user_mutes": "ユーザー",
"useStreamingApi": "とうこうとつうちを、リアルタイムにうけとる",
"use_websockets": "Websockets をつかう (リアルタイムアップデート)",
"mutes_and_blocks": "ミュートとブロック",
"emoji_reactions_on_timeline": "えもじリアクションをタイムラインにひょうじする",
"accent": "アクセント",
"domain_mutes": "ドメイン",
"import_mutes_from_a_csv_file": "CSVファイルからミュートをインポートする",
"reset_avatar": "アバターをリセットする",
"remove_language": "とりのぞく",
"primary_language": "いちばんわかることば:",
"add_language": "よびとしてつかうことばを、ついかする",
"fallback_language": "よびとしてつかうことば {index}:",
"lists_navigation": "ナビゲーションにリストをひょうじする",
"account_alias": "アカウントのエイリアス",
"mention_link_display_full": "いつも、ながいなまえをひょうじする (れい: {'@'}hoge{'@'}example.org)",
"setting_changed": "せっていは、デフォルトとちがっています",
"email_language": "サーバーからうけとるEメールのことば",
"mute_export": "ミュートのエクスポート",
"mute_export_button": "あなたのミュートを、 CSV ファイルにエクスポートします",
"mute_import": "ミュートのインポート",
"mutes_imported": "ミュートをインポートしました!すこしじかんがかかるかもしれません。",
"account_backup": "アカウントのバックアップ",
"account_backup_table_head": "バックアップ",
"download_backup": "ダウンロード",
"backup_not_ready": "バックアップのじゅんびが、まだできていません。",
"backup_failed": "バックアップにしっぱいしました。",
"remove_backup": "とりのぞく",
"add_backup": "あたらしいバックアップをつくる",
"added_backup": "あたらしいバックアップをつくりました。",
"add_backup_error": "あたらしいバックアップをつくるときに、エラーになりました: {error}",
"bot": "これは bot アカウントです",
"account_alias_table_head": "エイリアス",
"hide_list_aliases_error_action": "とじる",
"remove_alias": "このエイリアスをけす",
"add_alias_error": "エイリアスをつくるときに、エラーになりました: {error}",
"new_alias_target": "あたらしいエイリアスをつくる (れい: {example})",
"moved_account": "アカウントをひっこしました。",
"move_account_error": "アカウントをひっこしているときに、エラーになりました: {error}",
"wordfilter": "ことばのフィルター",
"hide_media_previews": "メディアのプレビューをかくす",
"right_sidebar": "サイドバーをみぎにひょうじする",
"hide_wordfiltered_statuses": "ことばのフィルターでフィルターされたステータスをかくす",
"hide_muted_threads": "ミュートされたスレッドをかくす",
"navbar_column_stretch": "ナビゲーションバーをれつのはばまでのばす",
"birthday": {
"label": "たんじょうび",
"show_birthday": "たんじょうびを、ひょうじする"
},
"profile_fields": {
"label": "プロフィールのメタデータ",
"add_field": "フィールドをふやす",
"name": "ラベル",
"value": "ないよう"
},
"user_profiles": "ユーザープロフィール",
"notification_visibility_moves": "ユーザーのひっこし",
"notification_visibility_emoji_reactions": "リアクション",
"hide_favorites_description": "おきにいりのリストをみせない (つうちはおくられます)",
"reset_profile_background": "プロフィールバックグラウンドをリセットする",
"reset_profile_banner": "プロフィールバナーをリセットする",
"reset_avatar_confirm": "ほんとうに、アバターをリセットしますか?",
"reset_background_confirm": "ほんとうに、バックグラウンドをリセットしますか?",
"column_sizes_sidebar": "サイドバー",
"column_sizes_notifs": "つうち",
"columns": "れつ",
"column_sizes": "れつのおおきさ",
"column_sizes_content": "コンテンツ",
"conversation_display": "スレッドのひょうじけいしき",
"conversation_display_linear": "リニアけいしき",
"conversation_display_linear_quick": "リニアビュー",
"show_scrollbars": "よこのれつにスクロールバーをひょうじする",
"third_column_mode_none": "3ばんめのれつをひょうじしない",
"third_column_mode_postform": "とうこうフォームとナビゲーション",
"third_column_mode_notifications": "つうちのれつをひょうじする",
"tree_fade_ancestors": "げんざいのステータスのおやを、うすいいろのもじでひょうじする",
"conversation_other_replies_button_below": "ステータスのした",
"conversation_other_replies_button_inside": "ステータスのなか",
"max_depth_in_thread": "デフォルトでひょうじするスレッドのふかさ",
"sensitive_by_default": "デフォルトで、とうこうをNSFWにする",
"type_domains_to_mute": "ミュートしたいドメインを、ここでけんさくできます",
"mention_link_use_tooltip": "メンションのリンクをクリックしたとき、ユーザーカードをみせる",
"mention_link_show_avatar": "ユーザーのアバターをリンクのよこにひょうじする",
"mention_link_show_avatar_quick": "ユーザーのアバターをメンションのとなりにひょうじする",
"mention_link_fade_domain": "ドメイン(れい: {'@'}hoge{'@'}example.org のなかの {'@'}example.org)を、うすいいろにする",
"user_popover_avatar_overlay": "ユーザーのポップオーバーを、ユーザーのアバターのうえにひょうじする",
"show_yous": "(あなた)をひょうじする",
"notification_setting_block_from_strangers": "フォローしていないユーザーからのつうちをブロックする",
"notification_setting_privacy": "プライバシー",
"more_settings": "そのたのせってい",
"expert_mode": "くわしいせっていを、ひょうじする",
"mention_links": "メンションのリンク",
"post_look_feel": "とうこうのみためとかんかく",
"allow_following_move": "フォローしているアカウントがインスタンスをひっこしたばあい、じどうでフォローしてもよい",
"chatMessageRadius": "チャットメッセージ",
"confirm_dialogs": "つぎのばあいに、かくにんをする",
"confirm_dialogs_repeat": "ステータスをリピートするとき",
"confirm_dialogs_unfollow": "ユーザーのフォローをはずすとき",
"confirm_dialogs_block": "ユーザーをブロックするとき",
"confirm_dialogs_mute": "ユーザーをミュートするとき",
"confirm_dialogs_delete": "ステータスをけすとき",
"confirm_dialogs_logout": "ログアウトするとき",
"confirm_dialogs_approve_follow": "フォローをうけいれるとき",
"confirm_dialogs_deny_follow": "フォローをことわるとき",
"confirm_dialogs_remove_follower": "フォロワーをとりのぞくとき",
"conversation_display_tree_quick": "ツリービュー",
"disable_sticky_headers": "れつのヘッダーを、がめんのいちばんうえにこていしない",
"virtual_scrolling": "タイムラインのレンダリングをよくする",
"use_at_icon": "{'@'} きごうを、もじのかわりに、アイコンでひょうじする",
"mention_link_display_short": "いつも、みじかいなまえにする (れい: {'@'}hoge)",
"mention_link_display": "メンションのリンクをひょうじするけいしき"
},
"time": {
"day": "{0}日",
@ -531,7 +831,23 @@
"year": "{0}年",
"years": "{0}年",
"year_short": "{0}年",
"years_short": "{0}年"
"years_short": "{0}年",
"unit": {
"minutes": "{0}ふん",
"seconds_short": "{0}びょう",
"weeks": "{0}しゅうかん",
"weeks_short": "{0}しゅう",
"years": "{0}ねん",
"years_short": "{0}ねん",
"days": "{0}にち",
"days_short": "{0}にち",
"hours": "{0}じかん",
"hours_short": "{0}じかん",
"minutes_short": "{0}ふん",
"months": "{0}かげつ",
"months_short": "{0}かげつ",
"seconds": "{0}びょう"
}
},
"timeline": {
"collapse": "たたむ",
@ -543,7 +859,11 @@
"show_new": "よみこみ",
"up_to_date": "さいしん",
"no_more_statuses": "これでおわりです",
"no_statuses": "ありません"
"no_statuses": "ありません",
"socket_broke": "コード{0}により、リアルタイムでつながることがなくなりました",
"socket_reconnected": "リアルタイムでつながることを、つくりました",
"reload": "もういちど、よみこむ",
"error": "タイムラインをとりにいくときに、エラーになりました: {0}"
},
"status": {
"favorites": "おきにいり",
@ -556,7 +876,57 @@
"reply_to": "へんしん:",
"replies_list": "へんしん:",
"mute_conversation": "スレッドをミュートする",
"unmute_conversation": "スレッドをミュートするのをやめる"
"unmute_conversation": "スレッドをミュートするのをやめる",
"repeat_confirm_title": "リピートのかくにん",
"mentions": "メンション",
"thread_muted": "ミュートされたスレッド",
"collapse_attachments": "ファイルをかくす",
"remove_attachment": "ファイルをとりのぞく",
"thread_show_full": "このスレッドのすべてのとうこうをみる (ぜんぶで{numStatus}このステータス、ふかさ{depth})",
"show_all_attachments": "すべてのファイルをみる",
"hide_full_subject": "かくす",
"nsfw": "NSFW",
"hide_content": "かくす",
"status_deleted": "このとうこうは、けされました",
"you": "(あなた)",
"expand": "ひろげる",
"repeat_confirm_accept_button": "リピートする",
"repeat_confirm_cancel_button": "リピートしない",
"edited_at": "({time} まえにへんしゅう)",
"delete_confirm_title": "けすことのかくにん",
"delete_confirm_accept_button": "けす",
"delete_confirm_cancel_button": "のこす",
"edit": "ステータスをへんしゅうする",
"bookmark": "ブックマークする",
"unbookmark": "ブックマークをはずす",
"replies_list_with_others": "へんしん (ほかに +{numReplies}こ):",
"status_unavailable": "ステータスがありません",
"copy_link": "リンクをコピー",
"external_source": "そとにあるソース",
"thread_muted_and_words": "つぎのことばをふくむので:",
"show_content": "みる",
"plus_more": "あと {number}こ",
"many_attachments": "とうこうには、{number}このファイルがついています",
"show_attachment_in_modal": "メディアモーダルでみる",
"show_attachment_description": "せつめいのプレビュー (ぜんぶみるには、ファイルをひらいてください)",
"hide_attachment": "ファイルをかくす",
"attachment_stop_flash": "Flash プレーヤーをとめる",
"move_up": "ファイルをひだりにうごかす",
"move_down": "ファイルをみぎにうごかす",
"open_gallery": "ギャラリーをひらく",
"thread_hide": "スレッドをかくす",
"thread_show": "スレッドをみる",
"show_full_subject": "すべてをみる",
"repeat_confirm": "ほんとうに、このステータスをリピートしますか?",
"show_all_conversation": "このスレッドをぜんぶみる (あと {numStatus}このステータス)",
"show_only_conversation_under_this": "このステータスへのへんしんだけをみる",
"status_history": "ステータスのれきし",
"thread_show_full_with_icon": "{icon} {text}",
"thread_follow": "のこりのとうこうをみる (ぜんぶで {numStatus}このステータス)",
"thread_follow_with_icon": "{icon} {text}",
"ancestor_follow": "このステータスよりしたの、{numReplies}このへんしんをみる",
"ancestor_follow_with_icon": "{icon} {text}",
"show_all_conversation_with_icon": "{icon} {text}"
},
"user_card": {
"approve": "うけいれ",
@ -577,7 +947,7 @@
"media": "メディア",
"mention": "メンション",
"mute": "ミュート",
"muted": "ミュートしています",
"muted": "ミュートしています",
"per_day": "/日",
"remote_follow": "リモートフォロー",
"report": "つうほう",
@ -608,8 +978,52 @@
"disable_remote_subscription": "ほかのインスタンスからフォローされないようにする",
"disable_any_subscription": "フォローされないようにする",
"quarantine": "ほかのインスタンスのユーザーのとうこうをとめる",
"delete_user": "ユーザーをけす"
}
"delete_user": "ユーザーをけす",
"delete_user_data_and_deactivate_confirmation": "これをすると、このアカウントのデータがきえて、にどとつかえなくなります。ほんとうに、していいですか?"
},
"mute_confirm_accept_button": "ミュートする",
"unfollow_confirm_title": "フォローをやめることのかくにん",
"mute_confirm": "ほんとうに、 {user} をミュートしますか?",
"mute_duration_prompt": "このユーザーをつぎのじかんだけミュートする (0にすると、おわりがありません):",
"edit_note_apply": "てきよう",
"block_confirm": "ほんとうに、 {user} をブロックしますか?",
"deactivated": "つかえない",
"remove_follower": "フォロワーをとりのぞく",
"highlight": {
"solid": "バッググラウンドをひとつのいろにする",
"striped": "しまもようのバックグラウンドにする",
"side": "はじにせんをつける",
"disabled": "めだたせない"
},
"mute_confirm_cancel_button": "ミュートしない",
"unfollow_confirm_accept_button": "フォローをやめる",
"unfollow_confirm": "ほんとうに、 {user} のフォローをやめますか?",
"unfollow_confirm_cancel_button": "フォローしたままにする",
"mute_confirm_title": "ミュートのかくにん",
"block_confirm_accept_button": "ブロックする",
"block_confirm_cancel_button": "ブロックしない",
"deny_confirm_title": "おことわりのかくにん",
"deny_confirm_accept_button": "ことわる",
"deny_confirm_cancel_button": "ことわらない",
"deny_confirm": "{user} のフォローリクエストをことわりますか?",
"follow_cancel": "リクエストをキャンセル",
"birthday": "{birthday} に、うまれました",
"remove_follower_confirm_title": "フォロワーをとりのぞくことのかくにん",
"remove_follower_confirm_accept_button": "とりのぞく",
"remove_follower_confirm_cancel_button": "のこす",
"remove_follower_confirm": "ほんとうに、 {user} をあなたのフォロワーからとりのぞきますか?",
"edit_note": "メモをへんしゅうする",
"edit_note_cancel": "キャンセル",
"message": "メッセージ",
"bot": "bot",
"approve_confirm_title": "うけいれのかくにん",
"approve_confirm_accept_button": "うけいれる",
"approve_confirm_cancel_button": "うけいれない",
"approve_confirm": "{user} のフォローリクエストをうけいれますか?",
"edit_profile": "プロフィールをへんしゅう",
"block_confirm_title": "ブロックのかくにん",
"note_blank": "(なし)",
"note": "メモ"
},
"user_profile": {
"timeline_title": "ユーザータイムライン",
@ -634,13 +1048,21 @@
"repeat": "リピート",
"reply": "リプライ",
"favorite": "おきにいり",
"user_settings": "ユーザーせってい"
"user_settings": "ユーザーせってい",
"accept_follow_request": "フォローのおねがいを、うけいれる",
"toggle_mute": "ミュートされたないようをみるために、つうちをひらくか、とじる",
"autocomplete_available": "{number}このけっかが、あります。うえとしたのキーをつかって、けっかをみることができます。",
"add_reaction": "リアクションをつける",
"reject_follow_request": "フォローのおねがいを、ことわる",
"bookmark": "ブックマーク",
"toggle_expand": "とうこうをすべてみるために、つうちをひらくか、とじる"
},
"upload": {
"error": {
"base": "アップロードにしっぱいしました。",
"file_too_big": "ファイルがおおきすぎます [{filesize} {filesizeunit} / {allowedsize} {allowedsizeunit}]",
"default": "しばらくしてから、ためしてください"
"default": "しばらくしてから、ためしてください",
"message": "アップロードにしっぱいしました: {0}"
},
"file_size_units": {
"B": "B",
@ -655,7 +1077,9 @@
"hashtags": "ハッシュタグ",
"person_talking": "{count} にんが、はなしています",
"people_talking": "{count} にんが、はなしています",
"no_results": "みつかりませんでした"
"no_results": "みつかりませんでした",
"no_more_results": "これでおわりです",
"load_more": "もっとみる"
},
"password_reset": {
"forgot_password": "パスワードを、わすれましたか?",
@ -668,5 +1092,103 @@
"password_reset_disabled": "このインスタンスでは、パスワードリセットは、できません。インスタンスのアドミニストレーターに、おといあわせください。",
"password_reset_required": "ログインするには、パスワードをリセットしてください。",
"password_reset_required_but_mailer_is_disabled": "あなたはパスワードのリセットがひつようです。しかし、まずいことに、このインスタンスでは、パスワードのリセットができなくなっています。このインスタンスのアドミニストレーターに、おといあわせください。"
},
"announcements": {
"post_placeholder": "おしらせのないようを、にゅうりょくしてください。",
"end_time_prompt": "おわるじかん: ",
"inactive_message": "このおしらせは、つかわれていません",
"page_header": "おしらせ",
"title": "おしらせ",
"post_action": "とうこう",
"post_form_header": "おしらせをとうこう",
"mark_as_read_action": "よんだことにする",
"post_error": "エラー: {error}",
"close_error": "とじる",
"delete_action": "けす",
"start_time_display": "{time}にはじまります",
"end_time_display": "{time}におわります",
"edit_action": "へんしゅう",
"start_time_prompt": "はじまるじかん: ",
"all_day_prompt": "このイベントはいちにちじゅうやります",
"published_time_display": "{time}にこうかいされました",
"submit_edit_action": "そうしん",
"cancel_edit_action": "キャンセル"
},
"report": {
"reported_statuses": "つうほうされたステータス:",
"reporter": "つうほうしたひと:",
"state_closed": "クローズ",
"state_resolved": "かいけつしました",
"reported_user": "つうほうされたユーザー:",
"notes": "メモ:",
"state": "じょうたい:",
"state_open": "オープン"
},
"update": {
"update_bugs": "もんだいや、バグがあれば、 {pleromaGitlab} でおしえてください。ちゃんとテストはしているのですが、たくさんのことをかえているので、そしてかいはつバージョンをつかっているので、もんだいやバグに、きづかないことがあります。あなたがきづいたもんだいについての、フィードバックやていあんを、まっています。 Pleroma や Pleroma-FE をよくするやりかたについても、おしえてください。",
"update_changelog_here": "すべてのかわったことのきろく",
"art_by": "{linkToArtist}によるさくひん",
"big_update_title": "すこし、まってください",
"big_update_content": "しばらくリリースがありませんでした。おもっていたみためと、ちがうかもしれません。",
"update_bugs_gitlab": "Pleroma GitLab",
"update_changelog": "かわったことをすべてみるには、{theFullChangelog}をみてください。"
},
"chats": {
"new": "あたらしいチャット",
"chats": "チャット",
"you": "あなた:",
"message_user": "{nickname} にメッセージ",
"delete": "けす",
"empty_message_error": "なにかかいてください",
"more": "もっとみる",
"delete_confirm": "ほんとうに、このメッセージをけしますか?",
"error_loading_chat": "チャットをよみこむことに、しっぱいしました。",
"error_sending_message": "メッセージをおくることに、しっぱいしました。",
"empty_chat_list_placeholder": "チャットがありません。あたらしいチャットボタンをおして、はじめてください!"
},
"shoutbox": {
"title": "Shoutbox"
},
"errors": {
"storage_unavailable": "Pleroma はブラウザーのストレージにアクセスすることができません。あなたがログインしたことと、あなたのローカルのせっていは、ほぞんされません。ほかにももんだいがおきるかもしれません。 Cookie をゆうこうにしてください。"
},
"lists": {
"lists": "リスト",
"new": "あたらしいリスト",
"search": "ユーザーをさがす",
"title": "リストのなまえ",
"create": "つくる",
"save": "へんこうをほぞんする",
"delete": "リストをけす",
"following_only": "フォローしているひとげんていにする",
"manage_lists": "リストをかんりする",
"manage_members": "リストにふくまれるひとを、かんりする",
"add_members": "もっとユーザーをさがす",
"remove_from_list": "リストからとりのぞく",
"add_to_list": "リストにいれる",
"editing_list": "リスト {listTitle} をへんしゅうしています",
"creating_list": "あたらしいリストをつくっています",
"update_title": "なまえをほぞんする",
"really_delete": "ほんとうに、リストをけしますか?",
"is_in_list": "すでにリストのなかにあります",
"error": "リストをへんしゅうするときに、エラーになりました: {0}"
},
"file_type": {
"audio": "オーディオ",
"video": "ビデオ",
"image": "がぞう",
"file": "ファイル"
},
"display_date": {
"today": "きょう"
},
"unicode_domain_indicator": {
"tooltip": "このドメインは、ASCIIいがいのもじをふくんでいます。"
},
"domain_mute_card": {
"mute": "ミュート",
"mute_progress": "ミュートしています…",
"unmute": "ミュートをやめる",
"unmute_progress": "ミュートをやめています…"
}
}

View File

@ -118,7 +118,10 @@
"totp": "Двофакторна автентифікація"
},
"enter_two_factor_code": "Введіть двофакторний код автентифікації",
"placeholder": "напр. stepan"
"placeholder": "напр. stepan",
"logout_confirm": "Ви дійсно хочете вийти?",
"logout_confirm_accept_button": "Вийти",
"logout_confirm_cancel_button": "Ні, хочу назад!"
},
"importer": {
"error": "Під час імпортування файлу сталася помилка.",
@ -189,7 +192,8 @@
"mobile_notifications": "Відкрити сповіщення (є непрочитані)",
"mobile_notifications_close": "Закрити сповіщення",
"edit_nav_mobile": "Редагувати панель навігації",
"announcements": "Анонси"
"announcements": "Анонси",
"search_close": "Закрити панель пошуку"
},
"media_modal": {
"next": "Наступна",

View File

@ -59,7 +59,9 @@
"never_show_again": "不再显示",
"undo": "撤销",
"yes": "是",
"no": "否"
"no": "否",
"unpin": "取消固定该项",
"pin": "固定该项"
},
"image_cropper": {
"crop_picture": "裁剪图片",
@ -88,7 +90,11 @@
"heading": {
"totp": "双重因素验证",
"recovery": "双重因素恢复"
}
},
"logout_confirm_cancel_button": "不要登出",
"logout_confirm_title": "确认登出",
"logout_confirm_accept_button": "登出",
"logout_confirm": "您确定要登出吗?"
},
"media_modal": {
"previous": "往前",
@ -120,7 +126,11 @@
"edit_finish": "完成编辑",
"mobile_notifications": "打开通知(有未读的)",
"mobile_notifications_close": "关闭通知",
"announcements": "公告"
"announcements": "公告",
"edit_nav_mobile": "自定义导航栏",
"edit_pinned": "编辑固定的项目",
"mobile_sidebar": "切换移动设备侧栏",
"search_close": "关闭搜索栏"
},
"notifications": {
"broken_favorite": "未知的状态,正在搜索中…",
@ -135,7 +145,8 @@
"migrated_to": "迁移到了",
"follow_request": "想要关注你",
"error": "取得通知时发生错误:{0}",
"poll_ended": "投票结束了"
"poll_ended": "投票结束了",
"submitted_report": "提交举报"
},
"polls": {
"add_poll": "增加投票",
@ -160,7 +171,9 @@
"favs_repeats": "转发和喜欢",
"follows": "新的关注者",
"load_older": "加载更早的互动",
"moves": "用户迁移"
"moves": "用户迁移",
"reports": "举报",
"emoji_reactions": "表情回应"
},
"post_status": {
"new_status": "发布新状态",
@ -194,7 +207,12 @@
"media_description": "媒体描述",
"media_description_error": "更新媒体失败,请重试",
"empty_status_error": "不能发布没有内容、没有附件的发文",
"post": "发送"
"post": "发送",
"edit_remote_warning": "其它远程实例可能不支持编辑并且无法接收您的帖子的最新版本。",
"edit_unsupported_warning": "Pleroma 不支持对提及或投票进行编辑。",
"edit_status": "编辑状态",
"content_type_selection": "发帖格式",
"scope_notice_dismiss": "关闭此提示"
},
"registration": {
"bio": "简介",
@ -214,12 +232,18 @@
"email_required": "不能留空",
"password_required": "不能留空",
"password_confirmation_required": "不能留空",
"password_confirmation_match": "密码不一致"
"password_confirmation_match": "密码不一致",
"birthday_required": "不能为空",
"birthday_min_age": "必须在 {date} 或之前"
},
"reason_placeholder": "此实例的注册需要手动批准。\n请让管理员知道您为什么想要注册。",
"reason": "注册理由",
"register": "注册",
"email_language": "你想从服务器收到什么语言的邮件?"
"email_language": "你想从服务器收到什么语言的邮件?",
"bio_optional": "介绍(可选)",
"email_optional": "电子邮件(可选)",
"birthday": "生日:",
"birthday_optional": "生日(可选):"
},
"selectable_list": {
"select_all": "选择全部"
@ -610,7 +634,7 @@
"backup_settings": "备份设置到文件",
"backup_restore": "设置备份"
},
"right_sidebar": "在右侧显示侧边栏",
"right_sidebar": "反转分栏的顺序",
"hide_shoutbox": "隐藏实例留言板",
"expert_mode": "显示高级",
"download_backup": "下载",
@ -642,7 +666,78 @@
"move_account_notes": "如果你想把账号移动到别的地方,你必须去目标账号,然后加一个指向这里的别名。",
"wordfilter": "词语过滤器",
"user_profiles": "用户资料",
"third_column_mode_notifications": "消息栏"
"third_column_mode_notifications": "通知栏",
"backup_running": "此备份正在进行,已处理 {number} 条记录。 |此备份正在进行,已处理 {number} 条记录。",
"lists_navigation": "在导航中显示列表",
"word_filter_and_more": "词过滤器及其它...",
"backup_failed": "此备份已失败。",
"birthday": {
"label": "生日",
"show_birthday": "展示我的生日"
},
"hide_favorites_description": "不显示我的喜欢列表(人们仍然会收到通知)",
"third_column_mode": "当有足够的空间时,显示第三栏包含",
"third_column_mode_postform": "主要的发文形式和导航",
"columns": "分栏",
"user_popover_avatar_overlay": "在用户头像上显示用户弹出窗口",
"navbar_column_stretch": "延伸导航栏至分栏宽度",
"posts": "帖子",
"conversation_display_linear_quick": "线性视图",
"conversation_other_replies_button": "显示 “其它回复” 按钮",
"confirm_dialogs_delete": "删除状态",
"confirm_dialogs_mute": "隐藏用户",
"column_sizes": "分栏大小",
"column_sizes_sidebar": "侧栏",
"column_sizes_content": "內容",
"column_sizes_notifs": "通知",
"conversation_other_replies_button_below": "在状态下方",
"conversation_other_replies_button_inside": "在状态中",
"auto_update": "自动显示新的帖子",
"use_websockets": "使用 websockets实时更新",
"max_depth_in_thread": "默认显示同主题帖子中的最大层数",
"hide_wordfiltered_statuses": "隐藏经过词语过滤的状态",
"hide_muted_threads": "不显示已隐藏的同主题帖子",
"notification_visibility_polls": "你所投的投票的结束于",
"tree_advanced": "允许在树状视图中进行更灵活的导航",
"tree_fade_ancestors": "以模糊的文字显示当前状态的原型",
"conversation_display_linear": "线性样式",
"mention_link_fade_domain": "淡化域名(例如:{'@'}example.org 中的 {'@'}foo{'@'}example.org",
"mention_link_bolden_you": "当你被提及时突出显示提及你",
"user_popover_avatar_action": "弹出式头像点击动作",
"user_popover_avatar_action_zoom": "缩放头像",
"user_popover_avatar_action_close": "关闭弹出窗口",
"show_yous": "显示 (You)s",
"add_language": "添加备用语言",
"remove_language": "移除",
"primary_language": "主要语言:",
"fallback_language": "备用语言 {index}",
"account_privacy": "隐私",
"conversation_display": "对话显示样式",
"conversation_display_tree": "树状样式",
"conversation_display_tree_quick": "树状视图",
"disable_sticky_headers": "不要把分栏的顶栏固定在屏幕的顶部",
"confirm_dialogs": "请求确认于",
"confirm_dialogs_logout": "登出",
"confirm_dialogs_deny_follow": "拒绝关注请求",
"confirm_dialogs_approve_follow": "批准关注请求",
"confirm_dialogs_block": "屏蔽用户",
"confirm_dialogs_unfollow": "取消关注用户",
"confirm_dialogs_repeat": "转发状态",
"confirm_dialogs_remove_follower": "移除关注者",
"mute_bot_posts": "隐藏机器人的帖子",
"hide_bot_indication": "隐藏帖子中的机器人提示",
"always_show_post_button": "始终显示浮动的新帖子按钮",
"show_scrollbars": "显示侧栏的滚动条",
"third_column_mode_none": "完全不显示第三栏",
"use_at_icon": "将 {'@'} 符号显示为图标而不是文本",
"mention_link_display": "显示提及链接",
"mention_link_display_short": "始终以简称的形式出现(例如:{'@'}foo",
"mention_link_display_full_for_remote": "仅远程实例用户以全名的形式出现(例如:{'@'}foo{'@'}example.org",
"mention_link_display_full": "始终以全名的形式出现(例如:{'@'}foo{'@'}example.org",
"mention_link_use_tooltip": "点击提及链接时显示用户卡片",
"mention_link_show_avatar": "在链接旁边显示用户头像",
"mention_link_show_avatar_quick": "在提及内容旁边显示用户头像",
"user_popover_avatar_action_open": "打开个人资料"
},
"time": {
"day": "{0} 天",
@ -708,7 +803,9 @@
"reload": "重新载入",
"error": "取得时间轴时发生错误:{0}",
"socket_broke": "丢失实时连接CloseEvent code {0}",
"socket_reconnected": "已建立实时连接"
"socket_reconnected": "已建立实时连接",
"quick_view_settings": "快速视图设置",
"quick_filter_settings": "快速过滤设置"
},
"status": {
"favorites": "喜欢",
@ -717,7 +814,7 @@
"pin": "在个人资料置顶",
"unpin": "取消在个人资料置顶",
"pinned": "置顶",
"delete_confirm": "你真的想要删除这条状态吗?",
"delete_confirm": "您确定要删除这条状态吗?",
"reply_to": "回复",
"replies_list": "回复:",
"mute_conversation": "隐藏对话",
@ -726,7 +823,7 @@
"show_content": "显示内容",
"hide_full_subject": "隐藏此部分标题",
"show_full_subject": "显示全部标题",
"thread_muted": "此系列消息已被隐藏",
"thread_muted": "同主题帖子已被隐藏",
"copy_link": "复制状态链接",
"status_unavailable": "状态不可取得",
"unbookmark": "取消书签",
@ -747,10 +844,10 @@
"attachment_stop_flash": "停止 Flash 播放器",
"move_up": "把附件左移",
"open_gallery": "打开图库",
"thread_hide": "隐藏这个线索",
"thread_show": "显示这个线索",
"thread_hide": "隐藏这个同主题帖子",
"thread_show": "显示这个同主题帖子",
"thread_show_full_with_icon": "{icon} {text}",
"thread_follow": "查看这个线索的剩余部分(一共有 {numStatus} 个状态)",
"thread_follow": "查看这个同主题帖子的剩余部分(一共有 {numStatus} 个状态)",
"thread_follow_with_icon": "{icon} {text}",
"ancestor_follow": "查看这个状态下的别的 {numReplies} 个回复",
"ancestor_follow_with_icon": "{icon} {text}",
@ -759,8 +856,19 @@
"mentions": "提及",
"replies_list_with_others": "回复(另外 +{numReplies} 个):",
"move_down": "把附件右移",
"thread_show_full": "显示这个线索下的所有东西(一共有 {numStatus} 个状态,最大深度 {depth}",
"show_only_conversation_under_this": "只显示这个状态的回复"
"thread_show_full": "显示这个同主题帖子下的所有东西(一共有 {numStatus} 个状态,最大深度 {depth}",
"show_only_conversation_under_this": "只显示这个状态的回复",
"repeat_confirm": "您确定要转发这条状态吗?",
"repeat_confirm_title": "确认转发",
"repeat_confirm_accept_button": "转发",
"repeat_confirm_cancel_button": "不要转发",
"edit": "编辑状态",
"edited_at": "(最后编辑于 {time}",
"delete_confirm_title": "确认删除",
"delete_confirm_accept_button": "删除",
"delete_confirm_cancel_button": "保留",
"show_attachment_in_modal": "在媒体模式中显示",
"status_history": "状态历史"
},
"user_card": {
"approve": "核准",
@ -808,7 +916,8 @@
"disable_remote_subscription": "禁止从远程实例关注用户",
"disable_any_subscription": "完全禁止关注用户",
"quarantine": "从联合实例中禁止用户帖子",
"delete_user": "删除用户"
"delete_user": "删除用户",
"delete_user_data_and_deactivate_confirmation": "这将永久删除该账户的数据并停用该账户。你完全确定吗?"
},
"hidden": "已隐藏",
"show_repeats": "显示转发",
@ -822,7 +931,41 @@
"solid": "单一颜色背景",
"disabled": "不突出显示"
},
"edit_profile": "编辑个人资料"
"edit_profile": "编辑个人资料",
"approve_confirm_title": "确认批准",
"approve_confirm_accept_button": "批准",
"block_confirm_accept_button": "屏蔽",
"block_confirm_cancel_button": "不要屏蔽",
"deactivated": "已停用",
"deny_confirm_title": "确认拒绝",
"deny_confirm_accept_button": "拒绝",
"deny_confirm_cancel_button": "不要拒绝",
"deny_confirm": "您是否要拒绝 {user} 的关注请求?",
"follow_cancel": "取消请求",
"unfollow_confirm_title": "确认取消关注",
"unfollow_confirm": "您确定要取消关注 {user} 吗?",
"unfollow_confirm_accept_button": "取消关注",
"unfollow_confirm_cancel_button": "不要取消关注",
"mute_confirm_title": "确认隐藏",
"mute_confirm_accept_button": "隐藏",
"mute_confirm_cancel_button": "不要隐藏",
"mute_duration_prompt": "让这个用户隐藏0表示无限期",
"remove_follower": "移除关注者",
"remove_follower_confirm_title": "确认移除关注者",
"remove_follower_confirm_cancel_button": "保留",
"remove_follower_confirm": "您确定要将 {user} 从您的关注者里移除吗?",
"birthday": "生于 {birthday}",
"note": "备注",
"approve_confirm_cancel_button": "不要批准",
"approve_confirm": "您是否要批准 {user} 的关注请求?",
"block_confirm_title": "确认屏蔽",
"block_confirm": "您确定要屏蔽 {user} 吗?",
"mute_confirm": "您确定要隐藏 {user} 吗?",
"remove_follower_confirm_accept_button": "移除",
"note_blank": "(空)",
"edit_note": "编辑备注",
"edit_note_apply": "应用",
"edit_note_cancel": "取消"
},
"user_profile": {
"timeline_title": "用户时间线",
@ -851,7 +994,10 @@
"reject_follow_request": "拒绝关注请求",
"add_reaction": "添加互动",
"bookmark": "书签",
"accept_follow_request": "接受关注请求"
"accept_follow_request": "接受关注请求",
"toggle_expand": "展开或折叠通知以显示帖子全文",
"toggle_mute": "展开或折叠通知以显示已隐藏的内容",
"autocomplete_available": "共有 {number} 个结果可用。使用向上和向下键浏览它们。"
},
"upload": {
"error": {
@ -873,7 +1019,9 @@
"hashtags": "话题标签",
"person_talking": "{count} 人正在讨论",
"people_talking": "{count} 人正在讨论",
"no_results": "没有搜索结果"
"no_results": "没有搜索结果",
"no_more_results": "没有更多结果",
"load_more": "加载更多结果"
},
"password_reset": {
"forgot_password": "忘记密码了?",
@ -910,9 +1058,11 @@
"symbols": "符号",
"travel-and-places": "旅行和地点",
"activities": "活动",
"animals-and-nature": "动物和自然"
"animals-and-nature": "动物和自然",
"smileys-and-emotion": "表情与情感"
},
"regional_indicator": "地区指示符 {letter}"
"regional_indicator": "地区指示符 {letter}",
"unpacked": "拆分的表情符号"
},
"about": {
"mrf": {
@ -972,7 +1122,7 @@
"empty_chat_list_placeholder": "您还没有任何聊天记录。开始聊天吧!",
"error_sending_message": "发送消息时出了点问题。",
"error_loading_chat": "加载聊天时出了点问题。",
"delete_confirm": "您确要删除此消息吗?",
"delete_confirm": "您确要删除此消息吗?",
"more": "更多",
"empty_message_error": "无法发布空消息",
"new": "新聊天",
@ -1001,5 +1151,48 @@
"submit_edit_action": "提交",
"cancel_edit_action": "取消",
"inactive_message": "这个公告不活跃"
},
"report": {
"reported_user": "被举报者:",
"state_closed": "已关闭",
"state_resolved": "已解决",
"reporter": "举报者:",
"state_open": "开启",
"reported_statuses": "已举报的状态:",
"notes": "备注:",
"state": "状态:"
},
"unicode_domain_indicator": {
"tooltip": "此域名包含非 ascii 字符。"
},
"update": {
"update_bugs_gitlab": "Pleroma GitLab",
"update_changelog": "关于变化的更多细节,请参见 {theFullChangelog} 。",
"update_changelog_here": "完整的更新日志",
"big_update_title": "请忍耐一下",
"big_update_content": "我们已经有一段时间没有发布发行版,所以事情的外观和感觉可能与你习惯的不一样。",
"update_bugs": "请在 {pleromaGitlab} 上报告任何问题和bug因为我们已经改变了很多虽然我们进行了彻底的测试并且自己使用了开发版本但我们可能错过了一些东西。我们欢迎你对你可能遇到的问题或如何改进Pleroma和Pleroma-FE提出反馈和建议。",
"art_by": "Art by {linkToArtist}"
},
"lists": {
"search": "搜索用户",
"create": "创建",
"save": "保存更改",
"delete": "删除列表",
"following_only": "限制于正在关注",
"manage_lists": "管理列表",
"manage_members": "管理列表成员",
"add_members": "搜索更多用户",
"remove_from_list": "从列表中移除",
"add_to_list": "添加到列表",
"is_in_list": "已在列表中",
"editing_list": "正在编辑列表 {listTitle}",
"creating_list": "正在创建新的列表",
"update_title": "保存标题",
"really_delete": "真的要删除列表吗?",
"error": "操作列表时出错:{0}",
"lists": "列表",
"new": "新的列表",
"title": "列表标题"
}
}

View File

@ -113,12 +113,23 @@
"submit": "提交",
"apply": "應用",
"role": {
"moderator": "主持人",
"moderator": "審查者",
"admin": "管理員"
},
"flash_content": "點擊以使用 Ruffle 顯示 Flash 內容(實驗性,可能無效)。",
"flash_security": "請注意這可能有潜在的危險因為Flash內容仍然是武斷的程式碼。",
"flash_fail": "無法加載flash內容請參閱控制台瞭解詳細資訊。"
"flash_fail": "無法加載flash內容請參閱控制台瞭解詳細資訊。",
"no": "否",
"generic_error_message": "發生了一個錯誤: {0}",
"never_show_again": "不再顯示",
"yes": "是",
"undo": "復原",
"scroll_to_top": "滾動至頂部",
"pin": "置頂",
"scope_in_timeline": {
"private": "僅關注者"
},
"unpin": "停止置頂"
},
"finder": {
"find_user": "尋找用戶",
@ -133,7 +144,8 @@
"pleroma_chat_messages": "Pleroma 聊天",
"chat": "聊天",
"gopher": "Gopher",
"upload_limit": "上傳限制"
"upload_limit": "上傳限制",
"shout": "留言板"
},
"exporter": {
"processing": "正在處理,稍後會提示您下載文件",
@ -164,11 +176,14 @@
"reject": "拒絕",
"accept_desc": "本實例只接收來自下列實例的消息:",
"simple_policies": "站規",
"accept": "接受"
"accept": "接受",
"instance": "實例",
"reason": "原因",
"not_applicable": "N/A"
},
"mrf_policies_desc": "MRF 策略會影響本實例的互通行為。以下策略已啟用:",
"keyword": {
"ftl_removal": "從“全部已知網絡”時間線上移除",
"ftl_removal": "從「全部已知網絡」時間線上移除",
"replace": "取代",
"reject": "拒絕",
"is_replaced_by": "→",
@ -865,5 +880,26 @@
"password_reset_disabled": "密碼重置已經被禁用。請聯繫你的實例管理員。",
"password_reset_required": "您必須重置密碼才能登陸。",
"password_reset_required_but_mailer_is_disabled": "您必須重置密碼,但是密碼重置被禁用了。請聯繫您所在實例的管理員。"
},
"announcements": {
"post_error": "錯誤: {error}",
"close_error": "關閉",
"delete_action": "刪除",
"start_time_prompt": "開始時間: ",
"end_time_prompt": "結束時間: ",
"all_day_prompt": "這是全日活動",
"start_time_display": "{time} 開始",
"end_time_display": "{time} 結束",
"published_time_display": "{time} 發布",
"edit_action": "編輯",
"submit_edit_action": "送出",
"cancel_edit_action": "取消",
"inactive_message": "此公告無效",
"page_header": "公告",
"title": "公告",
"mark_as_read_action": "標示為以閱讀",
"post_placeholder": "在此輸入您的公告內容……",
"post_form_header": "發布公告",
"post_action": "發布"
}
}

22561
yarn.lock

File diff suppressed because it is too large Load Diff