Merge remote-tracking branch 'parent/main' into upstream-20231214
This commit is contained in:
commit
08a2f557fe
61 changed files with 980 additions and 838 deletions
|
@ -63,13 +63,6 @@ module Mastodon
|
|||
# Initialize configuration defaults for originally generated Rails version.
|
||||
config.load_defaults 7.0
|
||||
|
||||
# TODO: Release a version which uses the 7.0 defaults as specified above,
|
||||
# but preserves the 6.1 cache format as set below. In a subsequent change,
|
||||
# remove this line setting to 6.1 cache format, and then release another version.
|
||||
# https://guides.rubyonrails.org/upgrading_ruby_on_rails.html#new-activesupport-cache-serialization-format
|
||||
# https://github.com/mastodon/mastodon/pull/24241#discussion_r1162890242
|
||||
config.active_support.cache_format_version = 6.1
|
||||
|
||||
# Please, add to the `ignore` list any other `lib` subdirectories that do
|
||||
# not contain `.rb` files, or that should not be reloaded or eager loaded.
|
||||
# Common ones are `templates`, `generators`, or `middleware`, for example.
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
# TODO: Remove after 4.2.0
|
||||
Rails.application.configure do
|
||||
config.active_support.key_generator_hash_digest_class = OpenSSL::Digest::SHA1
|
||||
end
|
||||
# TODO: remove this file some time after 4.3.0
|
||||
|
||||
Rails.application.config.after_initialize do
|
||||
Rails.application.config.action_dispatch.cookies_rotations.tap do |cookies|
|
||||
|
@ -12,9 +9,8 @@ Rails.application.config.after_initialize do
|
|||
|
||||
secret_key_base = Rails.application.secret_key_base
|
||||
|
||||
# TODO: Switch to SHA1 after 4.2.0
|
||||
key_generator = ActiveSupport::KeyGenerator.new(
|
||||
secret_key_base, iterations: 1000, hash_digest_class: OpenSSL::Digest::SHA256
|
||||
secret_key_base, iterations: 1000, hash_digest_class: OpenSSL::Digest::SHA1
|
||||
)
|
||||
key_len = ActiveSupport::MessageEncryptor.key_len
|
||||
|
||||
|
|
|
@ -6,7 +6,9 @@ hr:
|
|||
expires_at: Krajnji rok
|
||||
options: Opcije
|
||||
user:
|
||||
agreement: Ugovor o uslugama
|
||||
email: E-mail adresa
|
||||
locale: Lokalitet
|
||||
password: Lozinka
|
||||
user/account:
|
||||
username: Korisničko ime
|
||||
|
@ -18,3 +20,16 @@ hr:
|
|||
attributes:
|
||||
username:
|
||||
invalid: mora sadržavati samo slova, brojeve i _
|
||||
reserved: je rezervisano
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: nije validan URL
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: nije validan URL
|
||||
import:
|
||||
attributes:
|
||||
data:
|
||||
malformed: je neispravan
|
||||
|
|
|
@ -36,7 +36,7 @@ ru:
|
|||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
taken: поста уже существует
|
||||
taken: пост уже существует
|
||||
user:
|
||||
attributes:
|
||||
email:
|
||||
|
|
|
@ -28,7 +28,7 @@ zh-TW:
|
|||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: 不是有效的 URL
|
||||
invalid: 不是有效的網址
|
||||
import:
|
||||
attributes:
|
||||
data:
|
||||
|
|
|
@ -29,7 +29,7 @@ zh-TW:
|
|||
edit:
|
||||
title: 編輯應用程式
|
||||
form:
|
||||
error: 唉呦!請看看表單以排查錯誤
|
||||
error: 糟糕!請檢查表單以排查錯誤
|
||||
help:
|
||||
native_redirect_uri: 請使用 %{native_redirect_uri} 作本站測試
|
||||
redirect_uri: 每行輸入一個 URI
|
||||
|
|
|
@ -534,6 +534,7 @@ en-GB:
|
|||
total_reported: Reports about them
|
||||
total_storage: Media attachments
|
||||
totals_time_period_hint_html: The totals displayed below include data for all time.
|
||||
unknown_instance: There is currently no record of this domain on this server.
|
||||
invites:
|
||||
deactivate_all: Deactivate all
|
||||
filter:
|
||||
|
@ -610,6 +611,7 @@ en-GB:
|
|||
created_at: Reported
|
||||
delete_and_resolve: Delete posts
|
||||
forwarded: Forwarded
|
||||
forwarded_replies_explanation: This report is from a remote user and about remote content. It has been forwarded to you because the reported content is in reply to one of your users.
|
||||
forwarded_to: Forwarded to %{domain}
|
||||
mark_as_resolved: Mark as resolved
|
||||
mark_as_sensitive: Mark as sensitive
|
||||
|
@ -1038,6 +1040,14 @@ en-GB:
|
|||
hint_html: Just one more thing! We need to confirm you're a human (this is so we can keep the spam out!). Solve the CAPTCHA below and click "Continue".
|
||||
title: Security check
|
||||
confirmations:
|
||||
awaiting_review: Your e-mail address is confirmed! The %{domain} staff is now reviewing your registration. You will receive an e-mail if they approve your account!
|
||||
awaiting_review_title: Your registration is being reviewed
|
||||
clicking_this_link: clicking this link
|
||||
login_link: log in
|
||||
proceed_to_login_html: You can now proceed to %{login_link}.
|
||||
redirect_to_app_html: You should have been redirected to the <strong>%{app_name}</strong> app. If that did not happen, try %{clicking_this_link} or manually return to the app.
|
||||
registration_complete: Your registration on %{domain} is now complete!
|
||||
welcome_title: Welcome, %{name}!
|
||||
wrong_email_hint: If that e-mail address is not correct, you can change it in account settings.
|
||||
delete_account: Delete account
|
||||
delete_account_html: If you wish to delete your account, you can <a href="%{path}">proceed here</a>. You will be asked for confirmation.
|
||||
|
@ -1099,6 +1109,7 @@ en-GB:
|
|||
functional: Your account is fully operational.
|
||||
pending: Your application is pending review by our staff. This may take some time. You will receive an e-mail if your application is approved.
|
||||
redirecting_to: Your account is inactive because it is currently redirecting to %{acct}.
|
||||
self_destruct: As %{domain} is closing down, you will only get limited access to your account.
|
||||
view_strikes: View past strikes against your account
|
||||
too_fast: Form submitted too fast, try again.
|
||||
use_security_key: Use security key
|
||||
|
@ -1356,6 +1367,7 @@ en-GB:
|
|||
'86400': 1 day
|
||||
expires_in_prompt: Never
|
||||
generate: Generate invite link
|
||||
invalid: This invite is not valid
|
||||
invited_by: 'You were invited by:'
|
||||
max_uses:
|
||||
one: 1 use
|
||||
|
@ -1568,6 +1580,9 @@ en-GB:
|
|||
over_daily_limit: You have exceeded the limit of %{limit} scheduled posts for today
|
||||
over_total_limit: You have exceeded the limit of %{limit} scheduled posts
|
||||
too_soon: The scheduled date must be in the future
|
||||
self_destruct:
|
||||
lead_html: Unfortunately, <strong>%{domain}</strong> is permanently closing down. If you had an account there, you will not be able to continue using it, but you can still request a backup of your data.
|
||||
title: This server is closing down
|
||||
sessions:
|
||||
activity: Last activity
|
||||
browser: Browser
|
||||
|
@ -1736,6 +1751,7 @@ en-GB:
|
|||
default: "%b %d, %Y, %H:%M"
|
||||
month: "%b %Y"
|
||||
time: "%H:%M"
|
||||
with_time_zone: "%b %d, %Y, %H:%M %Z"
|
||||
translation:
|
||||
errors:
|
||||
quota_exceeded: The server-wide usage quota for the translation service has been exceeded.
|
||||
|
|
|
@ -534,6 +534,7 @@ et:
|
|||
total_reported: Nende kohta teateid
|
||||
total_storage: Lisatud meedia
|
||||
totals_time_period_hint_html: Allpool kuvatud summad sisaldavad andmed kogu aja kohta.
|
||||
unknown_instance: Hetkel pole selle domeeni jaoks siin serveris kirjet.
|
||||
invites:
|
||||
deactivate_all: Peata kõik
|
||||
filter:
|
||||
|
@ -610,6 +611,7 @@ et:
|
|||
created_at: Teavitatud
|
||||
delete_and_resolve: Kustuta postitused
|
||||
forwarded: Edastatud
|
||||
forwarded_replies_explanation: See aruanne pärineb kaugkasutajalt ja käsitleb kaugsisu. See on edastatud sulle, sest raporteeritud sisu on vastus ühele sinu kasutajale.
|
||||
forwarded_to: Edastatud %{domain} domeeni
|
||||
mark_as_resolved: Märgi lahendatuks
|
||||
mark_as_sensitive: Märgi kui tundlik sisu
|
||||
|
@ -832,6 +834,20 @@ et:
|
|||
system_checks:
|
||||
database_schema_check:
|
||||
message_html: On ootel andmebaasi migreerimisi. Rakenduse ootuspäraseks toimimiseks palun käivita need
|
||||
elasticsearch_health_red:
|
||||
message_html: Elasticsearch klaster on ebaterve (punane staatus), otsingufunktsioonid ei ole saadaval
|
||||
elasticsearch_health_yellow:
|
||||
message_html: Elasticsearch klaster on ebaterve (kollane staatus), võiksid uurida põhjust
|
||||
elasticsearch_index_mismatch:
|
||||
message_html: Elasticsearchi indeksite kaardistused on vananenud. Palun käivita <code>tootctl search deploy --only=%{value}</code>
|
||||
elasticsearch_preset:
|
||||
action: Vaata dokumentatsiooni
|
||||
message_html: Elasticsearchi klastris on rohkem kui üks sõlme, kuid Mastodon ei ole nende kasutamiseks konfigureeritud.
|
||||
elasticsearch_preset_single_node:
|
||||
action: Vaata dokumentatsiooni
|
||||
message_html: Elasticsearchi klastris on ainult üks sõlm <code>ES_PRESET</code> peaks olema seatud väärtusele <code>single_node_cluster</code>.
|
||||
elasticsearch_reset_chewy:
|
||||
message_html: Elasticsearchi süsteemiindeks on seadistuse muutumise tõttu vananenud. Palun käivita <code>tootctl search deploy --reset-chewy</code> selle uuendamiseks.
|
||||
elasticsearch_running_check:
|
||||
message_html: Elasticsearch ei vasta. Kontrolli, kas see töötab või keela täistekstiotsing
|
||||
elasticsearch_version_check:
|
||||
|
@ -1024,6 +1040,14 @@ et:
|
|||
hint_html: Üks asi veel! Me peame veenduma, et oled inimene (et me saaksime spämmi väljaspoole jätta!). Lahenda allpool olev CAPTCHA ja klõpsa "Jätka".
|
||||
title: Turvalisuse kontroll
|
||||
confirmations:
|
||||
awaiting_review: E-posti aadress on kinnitatud! %{domain} töötajad vaatavad praegu registreeringut läbi. Saad e-kirja, kui nad kiidavad konto heaks!
|
||||
awaiting_review_title: Su registreeringut vaadatakse läbi
|
||||
clicking_this_link: klõpsates seda linki
|
||||
login_link: logi sisse
|
||||
proceed_to_login_html: Saad nüüd jätkata valikuga %{login_link}.
|
||||
redirect_to_app_html: Sind oleks pidanud suunatama rakendusse <strong>%{app_name}</strong>. Kui seda ei juhtunud, proovi %{clicking_this_link} või naase käsitsi rakendusse.
|
||||
registration_complete: Sinu registreering domeenil %{domain} on nüüd valmis!
|
||||
welcome_title: Tere tulemast, %{name}!
|
||||
wrong_email_hint: Kui see e-postiaadress pole korrektne, saad seda kontosätetes muuta.
|
||||
delete_account: Konto kustutamine
|
||||
delete_account_html: Kui soovid oma konto kustutada, siis <a href="%{path}">jätka siit</a>. Pead kustutamise eraldi kinnitama.
|
||||
|
@ -1085,6 +1109,7 @@ et:
|
|||
functional: Konto on täies mahus kasutatav.
|
||||
pending: Taotlus ootab ülevaatamist meie personali poolt. See võib võtta mõne aja. Kui taotlus on vastu võetud, saadetakse sulle e-kiri.
|
||||
redirecting_to: See konto pole aktiivne, sest on suunatud aadressile %{acct}.
|
||||
self_destruct: Kuna %{domain} on sulgemisel, saad oma kontole vaid piiratud ligipääsu.
|
||||
view_strikes: Vaata enda eelnevaid juhtumeid
|
||||
too_fast: Vorm esitatud liiga kiirelt, proovi uuesti.
|
||||
use_security_key: Kasuta turvavõtit
|
||||
|
@ -1342,6 +1367,7 @@ et:
|
|||
'86400': 1 päev
|
||||
expires_in_prompt: Mitte kunagi
|
||||
generate: Loo
|
||||
invalid: See kutse pole kehtiv
|
||||
invited_by: 'Sind kutsus:'
|
||||
max_uses:
|
||||
one: 1 kasutus
|
||||
|
@ -1554,6 +1580,9 @@ et:
|
|||
over_daily_limit: Lubatud ajastatud postituste arv %{limit} päevas on tänaseks ületatud
|
||||
over_total_limit: Oled jõudnud ajastatud postituste lubatud maksimumarvuni %{limit}
|
||||
too_soon: Ajastatud kuupäev peab olema tukevikus
|
||||
self_destruct:
|
||||
lead_html: Kahjuks suletakse <strong>%{domain}</strong> lõplikult. Kui sul oli seal konto, ei saa sa seda enam kasutada, kuid siiski võid taotleda oma andmete varukoopiat.
|
||||
title: See server suletakse
|
||||
sessions:
|
||||
activity: Viimane aktiivsus
|
||||
browser: Veebilehitseja
|
||||
|
|
|
@ -711,7 +711,7 @@ ja:
|
|||
delete_and_resolve: 投稿を削除
|
||||
force_cw: 強制的にCWにする
|
||||
forwarded: 転送済み
|
||||
forwarded_replies_explanation: この報告はリモートユーザーからのものであり、またリモートコンテンツに関するものです。報告されたコンテンツがあなたのユーザーの内の一人に対するリプライの中にあるため、あなたに転送されました。
|
||||
forwarded_replies_explanation: これはリモートユーザーによる、リモートコンテンツについての報告です。問題のコンテンツはあなたのサーバー利用者への返信なので、こちらにも転送されて来ました。
|
||||
forwarded_to: "%{domain}に転送されました"
|
||||
mark_as_resolved: 解決済みとしてマーク
|
||||
mark_as_sensitive: 閲覧注意にする
|
||||
|
|
|
@ -16,7 +16,7 @@ zh-TW:
|
|||
acct: 指定要移動至的帳號的「使用者名稱@網域名稱」
|
||||
account_warning_preset:
|
||||
text: 您可使用嘟文語法,例如網址、「#」標籤與提及功能
|
||||
title: 可選的。不會向收件者顯示
|
||||
title: 可選。不會向收件者顯示
|
||||
admin_account_action:
|
||||
include_statuses: 使用者可看到導致檢舉或警告的嘟文
|
||||
send_email_notification: 使用者將收到帳號發生之事情的解釋
|
||||
|
|
|
@ -656,6 +656,10 @@ sk:
|
|||
rules_check:
|
||||
action: Spravuj serverové pravidlá
|
||||
message_html: Neurčil/a si žiadne serverové pravidlá.
|
||||
software_version_critical_check:
|
||||
action: Pozri dostupné aktualizácie
|
||||
software_version_patch_check:
|
||||
action: Pozri dostupné aktualizácie
|
||||
upload_check_privacy_error:
|
||||
action: Pozri tu pre viac informácií
|
||||
upload_check_privacy_error_object_storage:
|
||||
|
|
|
@ -467,7 +467,7 @@ zh-TW:
|
|||
other: 錯誤嘗試於 %{count} 天。
|
||||
no_failures_recorded: 報告中沒有錯誤。
|
||||
title: 可用狀態
|
||||
warning: 上一次嘗試連線至本伺服器失敗
|
||||
warning: 上一次嘗試連線至此伺服器失敗
|
||||
back_to_all: 所有
|
||||
back_to_limited: 受限制的
|
||||
back_to_warning: 警告
|
||||
|
@ -876,7 +876,7 @@ zh-TW:
|
|||
publishers:
|
||||
no_publisher_selected: 因未選取任何發行者,所以什麼事都沒發生
|
||||
shared_by_over_week:
|
||||
other: 上週被 %{count} 名使用者分享
|
||||
other: 上週被 %{count} 位使用者分享
|
||||
title: 熱門連結
|
||||
usage_comparison: 於今日被 %{today} 人分享,相較於昨日 %{yesterday} 人
|
||||
not_allowed_to_trend: 不允許登上熱門
|
||||
|
@ -1273,7 +1273,7 @@ zh-TW:
|
|||
other: 選取 %{count} 個符合您搜尋的項目。
|
||||
today: 今天
|
||||
validation_errors:
|
||||
other: 恩...似乎不太對勁耶?請檢查以下 %{count} 項錯誤
|
||||
other: 恩...似乎發生了點錯誤?請檢查以下 %{count} 項錯誤
|
||||
imports:
|
||||
errors:
|
||||
empty: 空的 CSV 檔案
|
||||
|
@ -1796,7 +1796,7 @@ zh-TW:
|
|||
welcome:
|
||||
edit_profile_action: 設定個人檔案
|
||||
edit_profile_step: 您可以設定您的個人檔案,包括上傳大頭貼、變更顯示名稱等等。您也可以選擇於新的跟隨者跟隨前,先對他們進行審核。
|
||||
explanation: 下面是幾個小幫助,希望它們能幫到您
|
||||
explanation: 以下是幾個小技巧,希望它們能幫到您
|
||||
final_action: 開始嘟嘟
|
||||
final_step: '開始嘟嘟吧!即使您現在沒有跟隨者,其他人仍然能於本站時間軸、主題標籤等地方,看到您的公開嘟文。試著用 #introductions 這個主題標籤介紹一下自己吧。'
|
||||
full_handle: 您的完整帳號名稱
|
||||
|
@ -1805,7 +1805,7 @@ zh-TW:
|
|||
title: "%{name} 誠摯歡迎您的加入!"
|
||||
users:
|
||||
follow_limit_reached: 您無法跟隨多於 %{limit} 個人
|
||||
go_to_sso_account_settings: 前往您的身分提供商 (identity provider) 之帳號設定
|
||||
go_to_sso_account_settings: 前往您的身分識別提供者(IdP)之帳號設定
|
||||
invalid_otp_token: 兩階段認證碼不正確
|
||||
otp_lost_help_html: 如果您無法存取這兩者,您可以透過 %{email} 與我們聯繫
|
||||
seamless_external_login: 由於您是由外部系統登入,所以不能設定密碼與電子郵件。
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue