Address check-i18n warnings (#23313)
* Address check-i18n warnings * Add language names to language helpersgh/stable
parent
c6ef56fd5e
commit
6a5e447753
|
@ -199,6 +199,8 @@ module LanguagesHelper
|
||||||
sco: ['Scots', 'Scots'].freeze,
|
sco: ['Scots', 'Scots'].freeze,
|
||||||
sma: ['Southern Sami', 'Åarjelsaemien Gïele'].freeze,
|
sma: ['Southern Sami', 'Åarjelsaemien Gïele'].freeze,
|
||||||
smj: ['Lule Sami', 'Julevsámegiella'].freeze,
|
smj: ['Lule Sami', 'Julevsámegiella'].freeze,
|
||||||
|
szl: ['Silesian', 'ślůnsko godka'].freeze,
|
||||||
|
tai: ['Tai', 'ภาษาไท or ภาษาไต'].freeze,
|
||||||
tok: ['Toki Pona', 'toki pona'].freeze,
|
tok: ['Toki Pona', 'toki pona'].freeze,
|
||||||
zba: ['Balaibalan', 'باليبلن'].freeze,
|
zba: ['Balaibalan', 'باليبلن'].freeze,
|
||||||
zgh: ['Standard Moroccan Tamazight', 'ⵜⴰⵎⴰⵣⵉⵖⵜ'].freeze,
|
zgh: ['Standard Moroccan Tamazight', 'ⵜⴰⵎⴰⵣⵉⵖⵜ'].freeze,
|
||||||
|
@ -210,8 +212,10 @@ module LanguagesHelper
|
||||||
# names, but for some translations, we need the names of the
|
# names, but for some translations, we need the names of the
|
||||||
# regional variants specifically
|
# regional variants specifically
|
||||||
REGIONAL_LOCALE_NAMES = {
|
REGIONAL_LOCALE_NAMES = {
|
||||||
|
'en-GB': 'English (British)',
|
||||||
'es-AR': 'Español (Argentina)',
|
'es-AR': 'Español (Argentina)',
|
||||||
'es-MX': 'Español (México)',
|
'es-MX': 'Español (México)',
|
||||||
|
'fr-QC': 'Français (Canadien)',
|
||||||
'pt-BR': 'Português (Brasil)',
|
'pt-BR': 'Português (Brasil)',
|
||||||
'pt-PT': 'Português (Portugal)',
|
'pt-PT': 'Português (Portugal)',
|
||||||
'sr-Latn': 'Srpski (latinica)',
|
'sr-Latn': 'Srpski (latinica)',
|
||||||
|
|
|
@ -69,12 +69,14 @@ module Mastodon
|
||||||
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
||||||
config.i18n.available_locales = [
|
config.i18n.available_locales = [
|
||||||
:af,
|
:af,
|
||||||
|
:an,
|
||||||
:ar,
|
:ar,
|
||||||
:ast,
|
:ast,
|
||||||
:be,
|
:be,
|
||||||
:bg,
|
:bg,
|
||||||
:bn,
|
:bn,
|
||||||
:br,
|
:br,
|
||||||
|
:bs,
|
||||||
:ca,
|
:ca,
|
||||||
:ckb,
|
:ckb,
|
||||||
:co,
|
:co,
|
||||||
|
@ -84,6 +86,7 @@ module Mastodon
|
||||||
:de,
|
:de,
|
||||||
:el,
|
:el,
|
||||||
:en,
|
:en,
|
||||||
|
:'en-GB',
|
||||||
:eo,
|
:eo,
|
||||||
:es,
|
:es,
|
||||||
:'es-AR',
|
:'es-AR',
|
||||||
|
@ -92,7 +95,9 @@ module Mastodon
|
||||||
:eu,
|
:eu,
|
||||||
:fa,
|
:fa,
|
||||||
:fi,
|
:fi,
|
||||||
|
:fo,
|
||||||
:fr,
|
:fr,
|
||||||
|
:'fr-QC',
|
||||||
:fy,
|
:fy,
|
||||||
:ga,
|
:ga,
|
||||||
:gd,
|
:gd,
|
||||||
|
@ -103,6 +108,7 @@ module Mastodon
|
||||||
:hu,
|
:hu,
|
||||||
:hy,
|
:hy,
|
||||||
:id,
|
:id,
|
||||||
|
:ig,
|
||||||
:io,
|
:io,
|
||||||
:is,
|
:is,
|
||||||
:it,
|
:it,
|
||||||
|
@ -113,16 +119,20 @@ module Mastodon
|
||||||
:kn,
|
:kn,
|
||||||
:ko,
|
:ko,
|
||||||
:ku,
|
:ku,
|
||||||
|
:kw,
|
||||||
|
:la,
|
||||||
:lt,
|
:lt,
|
||||||
:lv,
|
:lv,
|
||||||
:mk,
|
:mk,
|
||||||
:ml,
|
:ml,
|
||||||
:mr,
|
:mr,
|
||||||
:ms,
|
:ms,
|
||||||
|
:my,
|
||||||
:nl,
|
:nl,
|
||||||
:nn,
|
:nn,
|
||||||
:no,
|
:no,
|
||||||
:oc,
|
:oc,
|
||||||
|
:pa,
|
||||||
:pl,
|
:pl,
|
||||||
:'pt-BR',
|
:'pt-BR',
|
||||||
:'pt-PT',
|
:'pt-PT',
|
||||||
|
@ -130,6 +140,7 @@ module Mastodon
|
||||||
:ru,
|
:ru,
|
||||||
:sa,
|
:sa,
|
||||||
:sc,
|
:sc,
|
||||||
|
:sco,
|
||||||
:si,
|
:si,
|
||||||
:sk,
|
:sk,
|
||||||
:sl,
|
:sl,
|
||||||
|
@ -137,10 +148,14 @@ module Mastodon
|
||||||
:sr,
|
:sr,
|
||||||
:'sr-Latn',
|
:'sr-Latn',
|
||||||
:sv,
|
:sv,
|
||||||
|
:szl,
|
||||||
:ta,
|
:ta,
|
||||||
|
:tai,
|
||||||
:te,
|
:te,
|
||||||
:th,
|
:th,
|
||||||
:tr,
|
:tr,
|
||||||
|
:tt,
|
||||||
|
:ug,
|
||||||
:uk,
|
:uk,
|
||||||
:ur,
|
:ur,
|
||||||
:vi,
|
:vi,
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
zh_Hant:
|
|
||||||
activerecord:
|
|
||||||
attributes:
|
|
||||||
status:
|
|
||||||
owned_poll: 投票
|
|
||||||
errors:
|
|
||||||
models:
|
|
||||||
account:
|
|
||||||
attributes:
|
|
||||||
username:
|
|
||||||
invalid: 只允許使用字母、數字和底線
|
|
||||||
status:
|
|
||||||
attributes:
|
|
||||||
reblog:
|
|
||||||
taken: 的嘟文已經存在
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,131 +0,0 @@
|
||||||
---
|
|
||||||
en_GB:
|
|
||||||
simple_form:
|
|
||||||
hints:
|
|
||||||
account_warning_preset:
|
|
||||||
text: You can use toot syntax, such as URLs, hashtags and mentions
|
|
||||||
admin_account_action:
|
|
||||||
send_email_notification: The user will receive an explanation of what happened with their account
|
|
||||||
text_html: Optional. You can use toot syntax. You can <a href="%{path}">add warning presets</a> to save time
|
|
||||||
type_html: Choose what to do with <strong>%{acct}</strong>
|
|
||||||
warning_preset_id: Optional. You can still add custom text to end of the preset
|
|
||||||
defaults:
|
|
||||||
autofollow: People who sign up through the invite will automatically follow you
|
|
||||||
avatar: PNG, GIF or JPG. At most %{size}. Will be downscaled to %{dimensions}px
|
|
||||||
bot: This account mainly performs automated actions and might not be monitored
|
|
||||||
context: One or multiple contexts where the filter should apply
|
|
||||||
digest: Only sent after a long period of inactivity and only if you have received any personal messages in your absence
|
|
||||||
discoverable_html: The <a href="%{path}" target="_blank">directory</a> lets people find accounts based on interests and activity. Requires at least %{min_followers} followers
|
|
||||||
email: You will be sent a confirmation e-mail
|
|
||||||
fields: You can have up to 4 items displayed as a table on your profile
|
|
||||||
header: PNG, GIF or JPG. At most %{size}. Will be downscaled to %{dimensions}px
|
|
||||||
inbox_url: Copy the URL from the frontpage of the relay you want to use
|
|
||||||
irreversible: Filtered toots will disappear irreversibly, even if filter is later removed
|
|
||||||
locale: The language of the user interface, e-mails and push notifications
|
|
||||||
locked: Requires you to manually approve followers
|
|
||||||
password: Use at least 8 characters
|
|
||||||
phrase: Will be matched regardless of casing in text or content warning of a toot
|
|
||||||
scopes: Which APIs the application will be allowed to access. If you select a top-level scope, you don't need to select individual ones.
|
|
||||||
setting_aggregate_reblogs: Do not show new boosts for toots that have been recently boosted (only affects newly-received boosts)
|
|
||||||
setting_display_media_default: Hide media marked as sensitive
|
|
||||||
setting_display_media_hide_all: Always hide all media
|
|
||||||
setting_display_media_show_all: Always show media marked as sensitive
|
|
||||||
setting_hide_network: Who you follow and who follows you will not be shown on your profile
|
|
||||||
setting_noindex: Affects your public profile and status pages
|
|
||||||
setting_show_application: The application you use to toot will be displayed in the detailed view of your toots
|
|
||||||
username: Your username will be unique on %{domain}
|
|
||||||
whole_word: When the keyword or phrase is alphanumeric only, it will only be applied if it matches the whole word
|
|
||||||
featured_tag:
|
|
||||||
name: 'You might want to use one of these:'
|
|
||||||
imports:
|
|
||||||
data: CSV file exported from another Mastodon server
|
|
||||||
sessions:
|
|
||||||
otp: 'Enter the two-factor code generated by your phone app or use one of your recovery codes:'
|
|
||||||
user:
|
|
||||||
chosen_languages: When checked, only toots in selected languages will be displayed in public timelines
|
|
||||||
labels:
|
|
||||||
account:
|
|
||||||
fields:
|
|
||||||
name: Label
|
|
||||||
value: Content
|
|
||||||
account_warning_preset:
|
|
||||||
text: Preset text
|
|
||||||
admin_account_action:
|
|
||||||
send_email_notification: Notify the user per e-mail
|
|
||||||
text: Custom warning
|
|
||||||
type: Action
|
|
||||||
types:
|
|
||||||
disable: Disable
|
|
||||||
none: Do nothing
|
|
||||||
silence: Silence
|
|
||||||
suspend: Suspend and irreversibly delete account data
|
|
||||||
warning_preset_id: Use a warning preset
|
|
||||||
defaults:
|
|
||||||
autofollow: Invite to follow your account
|
|
||||||
avatar: Avatar
|
|
||||||
bot: This is a bot account
|
|
||||||
chosen_languages: Filter languages
|
|
||||||
confirm_new_password: Confirm new password
|
|
||||||
confirm_password: Confirm password
|
|
||||||
context: Filter contexts
|
|
||||||
current_password: Current password
|
|
||||||
data: Data
|
|
||||||
discoverable: List this account on the directory
|
|
||||||
display_name: Display name
|
|
||||||
email: E-mail address
|
|
||||||
expires_in: Expire after
|
|
||||||
fields: Profile metadata
|
|
||||||
header: Header
|
|
||||||
inbox_url: URL of the relay inbox
|
|
||||||
irreversible: Drop instead of hide
|
|
||||||
locale: Interface language
|
|
||||||
locked: Lock account
|
|
||||||
max_uses: Max number of uses
|
|
||||||
new_password: New password
|
|
||||||
note: Bio
|
|
||||||
otp_attempt: Two-factor code
|
|
||||||
password: Password
|
|
||||||
phrase: Keyword or phrase
|
|
||||||
setting_aggregate_reblogs: Group boosts in timelines
|
|
||||||
setting_auto_play_gif: Auto-play animated GIFs
|
|
||||||
setting_boost_modal: Show confirmation dialog before boosting
|
|
||||||
setting_default_language: Posting language
|
|
||||||
setting_default_privacy: Post privacy
|
|
||||||
setting_default_sensitive: Always mark media as sensitive
|
|
||||||
setting_delete_modal: Show confirmation dialog before deleting a toot
|
|
||||||
setting_display_media: Media display
|
|
||||||
setting_display_media_default: Default
|
|
||||||
setting_display_media_hide_all: Hide all
|
|
||||||
setting_display_media_show_all: Show all
|
|
||||||
setting_expand_spoilers: Always expand toots marked with content warnings
|
|
||||||
setting_hide_network: Hide your network
|
|
||||||
setting_noindex: Opt-out of search engine indexing
|
|
||||||
setting_reduce_motion: Reduce motion in animations
|
|
||||||
setting_show_application: Disclose application used to send toots
|
|
||||||
setting_system_font_ui: Use system's default font
|
|
||||||
setting_theme: Site theme
|
|
||||||
setting_unfollow_modal: Show confirmation dialog before unfollowing someone
|
|
||||||
severity: Severity
|
|
||||||
type: Import type
|
|
||||||
username: Username
|
|
||||||
username_or_email: Username or Email
|
|
||||||
whole_word: Whole word
|
|
||||||
featured_tag:
|
|
||||||
name: Hashtag
|
|
||||||
interactions:
|
|
||||||
must_be_follower: Block notifications from non-followers
|
|
||||||
must_be_following: Block notifications from people you don't follow
|
|
||||||
must_be_following_dm: Block direct messages from people you don't follow
|
|
||||||
notification_emails:
|
|
||||||
digest: Send digest e-mails
|
|
||||||
favourite: Send e-mail when someone favourites your status
|
|
||||||
follow: Send e-mail when someone follows you
|
|
||||||
follow_request: Send e-mail when someone requests to follow you
|
|
||||||
mention: Send e-mail when someone mentions you
|
|
||||||
reblog: Send e-mail when someone boosts your status
|
|
||||||
report: Send e-mail when a new report is submitted
|
|
||||||
'no': 'No'
|
|
||||||
required:
|
|
||||||
mark: "*"
|
|
||||||
text: required
|
|
||||||
'yes': 'Yes'
|
|
Reference in New Issue