mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-11 06:20:42 +00:00
Compare commits
9 Commits
77a316e475
...
5a06307170
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a06307170 | ||
|
|
8c52889c86 | ||
|
|
05e45beb34 | ||
|
|
607449336d | ||
|
|
85bf5be604 | ||
|
|
cf23f0414f | ||
|
|
55becaa1b5 | ||
|
|
8625721805 | ||
|
|
7fe3e80758 |
@@ -22,7 +22,7 @@ class ActivityPub::LikesController < ActivityPub::BaseController
|
||||
def set_status
|
||||
@status = @account.statuses.find(params[:status_id])
|
||||
authorize @status, :show?
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ class ActivityPub::QuoteAuthorizationsController < ActivityPub::BaseController
|
||||
return not_found unless @quote.status.present? && @quote.quoted_status.present?
|
||||
|
||||
authorize @quote.quoted_status, :show?
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
end
|
||||
|
||||
@@ -25,7 +25,7 @@ class ActivityPub::RepliesController < ActivityPub::BaseController
|
||||
def set_status
|
||||
@status = @account.statuses.find(params[:status_id])
|
||||
authorize @status, :show?
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ class ActivityPub::SharesController < ActivityPub::BaseController
|
||||
def set_status
|
||||
@status = @account.statuses.find(params[:status_id])
|
||||
authorize @status, :show?
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ class Api::V1::Polls::VotesController < Api::BaseController
|
||||
def set_poll
|
||||
@poll = Poll.find(params[:poll_id])
|
||||
authorize @poll.status, :show?
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ class Api::V1::PollsController < Api::BaseController
|
||||
def set_poll
|
||||
@poll = Poll.find(params[:id])
|
||||
authorize @poll.status, :show?
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ class Api::V1::Statuses::BaseController < Api::BaseController
|
||||
def set_status
|
||||
@status = Status.find(params[:status_id])
|
||||
authorize @status, :show?
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
end
|
||||
|
||||
@@ -23,7 +23,7 @@ class Api::V1::Statuses::BookmarksController < Api::V1::Statuses::BaseController
|
||||
bookmark&.destroy!
|
||||
|
||||
render json: @status, serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new([@status], current_account.id, bookmarks_map: { @status.id => false })
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
end
|
||||
|
||||
@@ -25,7 +25,7 @@ class Api::V1::Statuses::FavouritesController < Api::V1::Statuses::BaseControlle
|
||||
|
||||
relationships = StatusRelationshipsPresenter.new([@status], current_account.id, favourites_map: { @status.id => false }, attributes_map: { @status.id => { favourites_count: count } })
|
||||
render json: @status, serializer: REST::StatusSerializer, relationships: relationships
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
end
|
||||
|
||||
@@ -36,7 +36,7 @@ class Api::V1::Statuses::ReblogsController < Api::V1::Statuses::BaseController
|
||||
|
||||
relationships = StatusRelationshipsPresenter.new([@status], current_account.id, reblogs_map: { @reblog.id => false }, attributes_map: { @reblog.id => { reblogs_count: count } })
|
||||
render json: @reblog, serializer: REST::StatusSerializer, relationships: relationships
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
|
||||
@@ -45,7 +45,7 @@ class Api::V1::Statuses::ReblogsController < Api::V1::Statuses::BaseController
|
||||
def set_reblog
|
||||
@reblog = Status.find(params[:status_id])
|
||||
authorize @reblog, :show?
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
|
||||
|
||||
@@ -148,7 +148,7 @@ class Api::V1::StatusesController < Api::BaseController
|
||||
def set_status
|
||||
@status = Status.find(params[:id])
|
||||
authorize @status, :show?
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
|
||||
|
||||
@@ -3,20 +3,34 @@
|
||||
class Api::V1Alpha::CollectionsController < Api::BaseController
|
||||
include Authorization
|
||||
|
||||
DEFAULT_COLLECTIONS_LIMIT = 40
|
||||
|
||||
rescue_from ActiveRecord::RecordInvalid, Mastodon::ValidationError do |e|
|
||||
render json: { error: ValidationErrorFormatter.new(e).as_json }, status: 422
|
||||
end
|
||||
|
||||
before_action :check_feature_enabled
|
||||
|
||||
before_action -> { authorize_if_got_token! :read, :'read:collections' }, only: [:index, :show]
|
||||
before_action -> { doorkeeper_authorize! :write, :'write:collections' }, only: [:create, :update, :destroy]
|
||||
|
||||
before_action :require_user!, only: [:create, :update, :destroy]
|
||||
|
||||
before_action :set_account, only: [:index]
|
||||
before_action :set_collections, only: [:index]
|
||||
before_action :set_collection, only: [:show, :update, :destroy]
|
||||
|
||||
after_action :insert_pagination_headers, only: [:index]
|
||||
|
||||
after_action :verify_authorized
|
||||
|
||||
def index
|
||||
cache_if_unauthenticated!
|
||||
authorize Collection, :index?
|
||||
|
||||
render json: @collections, each_serializer: REST::BaseCollectionSerializer
|
||||
end
|
||||
|
||||
def show
|
||||
cache_if_unauthenticated!
|
||||
authorize @collection, :show?
|
||||
@@ -50,6 +64,19 @@ class Api::V1Alpha::CollectionsController < Api::BaseController
|
||||
|
||||
private
|
||||
|
||||
def set_account
|
||||
@account = Account.find(params[:account_id])
|
||||
end
|
||||
|
||||
def set_collections
|
||||
@collections = @account.collections
|
||||
.with_tag
|
||||
.with_item_count
|
||||
.order(created_at: :desc)
|
||||
.offset(offset_param)
|
||||
.limit(limit_param(DEFAULT_COLLECTIONS_LIMIT))
|
||||
end
|
||||
|
||||
def set_collection
|
||||
@collection = Collection.find(params[:id])
|
||||
end
|
||||
@@ -65,4 +92,24 @@ class Api::V1Alpha::CollectionsController < Api::BaseController
|
||||
def check_feature_enabled
|
||||
raise ActionController::RoutingError unless Mastodon::Feature.collections_enabled?
|
||||
end
|
||||
|
||||
def next_path
|
||||
return unless records_continue?
|
||||
|
||||
api_v1_alpha_account_collections_url(@account, pagination_params(offset: offset_param + limit_param(DEFAULT_COLLECTIONS_LIMIT)))
|
||||
end
|
||||
|
||||
def prev_path
|
||||
return if offset_param.zero?
|
||||
|
||||
api_v1_alpha_account_collections_url(@account, pagination_params(offset: offset_param - limit_param(DEFAULT_COLLECTIONS_LIMIT)))
|
||||
end
|
||||
|
||||
def records_continue?
|
||||
((offset_param * limit_param(DEFAULT_COLLECTIONS_LIMIT)) + @collections.size) < @account.collections.size
|
||||
end
|
||||
|
||||
def offset_param
|
||||
params[:offset].to_i
|
||||
end
|
||||
end
|
||||
|
||||
@@ -30,7 +30,7 @@ class Api::Web::EmbedsController < Api::Web::BaseController
|
||||
def set_status
|
||||
@status = Status.find(params[:id])
|
||||
authorize @status, :show?
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
end
|
||||
|
||||
@@ -21,7 +21,7 @@ class AuthorizeInteractionsController < ApplicationController
|
||||
def set_resource
|
||||
@resource = located_resource
|
||||
authorize(@resource, :show?) if @resource.is_a?(Status)
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ class MediaController < ApplicationController
|
||||
|
||||
def verify_permitted_status!
|
||||
authorize @media_attachment.status, :show?
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
|
||||
|
||||
@@ -62,7 +62,7 @@ class StatusesController < ApplicationController
|
||||
def set_status
|
||||
@status = @account.statuses.find(params[:id])
|
||||
authorize @status, :show?
|
||||
rescue Mastodon::NotPermittedError
|
||||
rescue ActiveRecord::RecordNotFound, Mastodon::NotPermittedError
|
||||
not_found
|
||||
end
|
||||
|
||||
|
||||
@@ -1,31 +1,49 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class DateOfBirthInput < SimpleForm::Inputs::Base
|
||||
OPTIONS = [
|
||||
{ autocomplete: 'bday-year', maxlength: 4, pattern: '[0-9]+', placeholder: 'YYYY' }.freeze,
|
||||
{ autocomplete: 'bday-month', maxlength: 2, pattern: '[0-9]+', placeholder: 'MM' }.freeze,
|
||||
{ autocomplete: 'bday-day', maxlength: 2, pattern: '[0-9]+', placeholder: 'DD' }.freeze,
|
||||
].freeze
|
||||
OPTIONS = {
|
||||
day: { autocomplete: 'bday-day', maxlength: 2, pattern: '[0-9]+', placeholder: 'DD' },
|
||||
month: { autocomplete: 'bday-month', maxlength: 2, pattern: '[0-9]+', placeholder: 'MM' },
|
||||
year: { autocomplete: 'bday-year', maxlength: 4, pattern: '[0-9]+', placeholder: 'YYYY' },
|
||||
}.freeze
|
||||
|
||||
def input(wrapper_options = nil)
|
||||
merged_input_options = merge_wrapper_options(input_html_options, wrapper_options)
|
||||
merged_input_options[:inputmode] = 'numeric'
|
||||
|
||||
values = (object.public_send(attribute_name) || '').to_s.split('-')
|
||||
|
||||
safe_join(2.downto(0).map do |index|
|
||||
options = merged_input_options.merge(OPTIONS[index]).merge id: generate_id(index), 'aria-label': I18n.t("simple_form.labels.user.date_of_birth_#{index + 1}i"), value: values[index]
|
||||
@builder.text_field("#{attribute_name}(#{index + 1}i)", options)
|
||||
end)
|
||||
safe_join(
|
||||
ordered_options.map do |option|
|
||||
options = merged_input_options
|
||||
.merge(OPTIONS[option])
|
||||
.merge(
|
||||
id: generate_id(option),
|
||||
'aria-label': I18n.t("simple_form.labels.user.date_of_birth_#{param_for(option)}"),
|
||||
value: values[option]
|
||||
)
|
||||
@builder.text_field("#{attribute_name}(#{param_for(option)})", options)
|
||||
end
|
||||
)
|
||||
end
|
||||
|
||||
def label_target
|
||||
"#{attribute_name}_3i"
|
||||
"#{attribute_name}_#{param_for(ordered_options.first)}"
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def generate_id(index)
|
||||
"#{object_name}_#{attribute_name}_#{index + 1}i"
|
||||
def ordered_options
|
||||
I18n.t('date.order').map(&:to_sym)
|
||||
end
|
||||
|
||||
def generate_id(option)
|
||||
"#{object_name}_#{attribute_name}_#{param_for(option)}"
|
||||
end
|
||||
|
||||
def param_for(option)
|
||||
"#{ActionView::Helpers::DateTimeSelector::POSITION[option]}i"
|
||||
end
|
||||
|
||||
def values
|
||||
Date._parse((object.public_send(attribute_name) || '').to_s).transform_keys(mon: :month, mday: :day)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,4 +1,23 @@
|
||||
{
|
||||
"about.fork_disclaimer": "Glitch-soc er fri programvare med åpen kildekode, forgrenet fra Mastodon.",
|
||||
"compose.content-type.html": "HTML",
|
||||
"compose.content-type.html_meta": "Formater innleggene dine med HTML",
|
||||
"compose.content-type.markdown": "Markdown",
|
||||
"compose.content-type.markdown_meta": "Formater innleggene dine med Markdown",
|
||||
"compose.content-type.plain": "Ren tekst",
|
||||
"compose.disable_threaded_mode": "Deaktiver trådmodus",
|
||||
"compose.enable_threaded_mode": "Aktiver trådmodus",
|
||||
"confirmations.deprecated_settings.confirm": "Bruk Mastodon-innstillinger",
|
||||
"federation.federated.short": "Føderert",
|
||||
"federation.local_only.short": "Kun lokalt",
|
||||
"navigation_bar.app_settings": "App-innstillinger",
|
||||
"settings.always_show_spoilers_field": "Aktiver alltid feltet for innholdsvarsler",
|
||||
"settings.close": "Lukk",
|
||||
"settings.content_warnings": "Content warnings",
|
||||
"settings.preferences": "Preferences"
|
||||
"settings.content_warnings.regexp": "Regulært uttrykk",
|
||||
"settings.pop_in_left": "Venstre",
|
||||
"settings.pop_in_player": "Aktiver flytende avspiller",
|
||||
"settings.pop_in_right": "Høyre",
|
||||
"settings.preferences": "Preferences",
|
||||
"settings.side_arm.none": "Ingen"
|
||||
}
|
||||
|
||||
@@ -1,4 +1,23 @@
|
||||
{
|
||||
"settings.content_warnings": "Content warnings",
|
||||
"settings.preferences": "Preferences"
|
||||
"about.fork_disclaimer": "Glitch-soc er fri programvare med åpen kildekode, forgrenet fra Mastodon.",
|
||||
"compose.content-type.html": "HTML",
|
||||
"compose.content-type.html_meta": "Formater innleggene dine med HTML",
|
||||
"compose.content-type.markdown": "Markdown",
|
||||
"compose.content-type.markdown_meta": "Formater innleggene dine med Markdown",
|
||||
"compose.content-type.plain": "Ren tekst",
|
||||
"compose.disable_threaded_mode": "Deaktiver trådmodus",
|
||||
"compose.enable_threaded_mode": "Aktiver trådmodus",
|
||||
"confirmations.deprecated_settings.confirm": "Bruk Mastodon-innstillinger",
|
||||
"federation.federated.short": "Føderert",
|
||||
"federation.local_only.short": "Kun lokalt",
|
||||
"navigation_bar.app_settings": "App-innstillinger",
|
||||
"settings.always_show_spoilers_field": "Aktiver alltid feltet for innholdsvarsler",
|
||||
"settings.close": "Lukk",
|
||||
"settings.content_warnings": "Innholdsvarsler",
|
||||
"settings.content_warnings.regexp": "Regulært uttrykk",
|
||||
"settings.pop_in_left": "Venstre",
|
||||
"settings.pop_in_player": "Aktiver flytende avspiller",
|
||||
"settings.pop_in_right": "Høyre",
|
||||
"settings.preferences": "Brukerinnstillinger",
|
||||
"settings.side_arm.none": "Ingen"
|
||||
}
|
||||
|
||||
@@ -9,13 +9,25 @@
|
||||
"column.reblogged_by": "Inpulsionado por",
|
||||
"column_header.profile": "Perfil",
|
||||
"community.column_settings.allow_local_only": "Mostrar os toots apenas locais",
|
||||
"compose.attach.doodle": "Desenhe algo",
|
||||
"compose.change_federation": "Alterar configurações de federação",
|
||||
"compose.content-type.change": "Alterrar opções avançadas de formatação",
|
||||
"compose.content-type.html": "HTML",
|
||||
"compose.content-type.html_meta": "Formatar suas publicações usando HTML",
|
||||
"compose.content-type.markdown": "Markdown",
|
||||
"compose.content-type.markdown_meta": "Formatar suas publicações usando Markdown",
|
||||
"compose.content-type.plain": "Texto sem formatação",
|
||||
"compose.content-type.plain_meta": "Escrever sem formatação avançada",
|
||||
"confirmation_modal.do_not_ask_again": "Não pedir confirmação novamente",
|
||||
"confirmations.deprecated_settings.confirm": "Usar preferências do Mastodon",
|
||||
"confirmations.deprecated_settings.message": "Alguns dos {app_settings} específicos do dispositivo que você está usando foram substituídos por Mastodon {preferences} e serão substituídos:",
|
||||
"direct.group_by_conversations": "Agrupar por conversa",
|
||||
"favourite_modal.favourite": "Favoritar publicação?",
|
||||
"federation.federated.long": "Permitir que esta publicação alcance outros servidores",
|
||||
"federation.federated.short": "Federado",
|
||||
"federation.local_only.long": "Evitar que esta publicação alcance outros servidores",
|
||||
"federation.local_only.short": "Somente local",
|
||||
"firehose.column_settings.allow_local_only": "Exibir publicações somente locais em \"Todas\"",
|
||||
"home.column_settings.advanced": "Avançado",
|
||||
"home.column_settings.filter_regex": "Filtrar com uma expressão regular",
|
||||
"home.column_settings.show_direct": "Mostrar DMs",
|
||||
@@ -24,6 +36,7 @@
|
||||
"keyboard_shortcuts.secondary_toot": "para enviar toot usando a configuração de privacidade secundária",
|
||||
"moved_to_warning": "Esta conta foi como movida para {moved_to_link} e, portanto, pode não aceitar novos seguidores.",
|
||||
"navigation_bar.app_settings": "Configurações do aplicativo",
|
||||
"notifications.column_settings.filter_bar.show_bar": "Exibir barra de filtro",
|
||||
"settings.always_show_spoilers_field": "Sempre ativar o campo Aviso de Conteúdo",
|
||||
"settings.close": "Fechar",
|
||||
"settings.compose_box_opts": "Caixa de composição",
|
||||
@@ -37,6 +50,8 @@
|
||||
"settings.content_warnings_unfold_opts": "Opções de auto-revelar",
|
||||
"settings.deprecated_setting": "Essa configuração agora é controlada pelo {settings_page_link} do Mastodon",
|
||||
"settings.enable_content_warnings_auto_unfold": "Revelar automaticamente os avisos de conteúdo",
|
||||
"settings.fullwidth_view": "Estender colunas para preencher a largura (somente modo Desktop)",
|
||||
"settings.fullwidth_view_hint": "Estende as colunas para ocupar todo o espaço disponível.",
|
||||
"settings.general": "Geral",
|
||||
"settings.hicolor_privacy_icons": "Ícones de privacidade com cores de alto contraste",
|
||||
"settings.hicolor_privacy_icons.hint": "Exibir ícones de privacidade em cores brilhantes e facilmente distinguíveis",
|
||||
@@ -84,11 +99,14 @@
|
||||
"settings.tag_misleading_links.hint": "Acrescentar uma indicação visual com o link hospedeiro alvo a cada link que não o mencione explicitamente",
|
||||
"settings.wide_view": "Visualização ampla (apenas no Modo desktop)",
|
||||
"settings.wide_view_hint": "Estica as colunas para preencher melhor o espaço disponível.",
|
||||
"status.filtered": "Filtrado",
|
||||
"status.has_audio": "Possui um arquivo de áudio anexado",
|
||||
"status.has_pictures": "Possui uma imagem anexada",
|
||||
"status.has_preview_card": "Possui uma pré-visualização anexada",
|
||||
"status.has_video": "Possui um vídeo anexado",
|
||||
"status.hide": "Ocultar publicação",
|
||||
"status.in_reply_to": "Este toot é uma resposta",
|
||||
"status.is_poll": "Este toot é uma enquete",
|
||||
"status.local_only": "Visível apenas em sua instância"
|
||||
"status.local_only": "Visível apenas em sua instância",
|
||||
"status.show_filter_reason": "Mostrar mesmo assim"
|
||||
}
|
||||
|
||||
@@ -113,6 +113,10 @@
|
||||
"alt_text_modal.describe_for_people_with_visual_impairments": "Popište to pro osoby se zrakovým postižením…",
|
||||
"alt_text_modal.done": "Hotovo",
|
||||
"announcement.announcement": "Oznámení",
|
||||
"annual_report.announcement.action_build": "Sestavit můj Wrapstodon",
|
||||
"annual_report.announcement.action_view": "Zobrazit můj Wrapstodon",
|
||||
"annual_report.announcement.description": "Zjistěte více o vaší aktivitě na Mastodonu za poslední rok.",
|
||||
"annual_report.announcement.title": "Je zde Wrapstodon {year}",
|
||||
"annual_report.summary.archetype.booster": "Lovec obsahu",
|
||||
"annual_report.summary.archetype.lurker": "Špión",
|
||||
"annual_report.summary.archetype.oracle": "Vědma",
|
||||
@@ -131,6 +135,7 @@
|
||||
"annual_report.summary.new_posts.new_posts": "nové příspěvky",
|
||||
"annual_report.summary.percentile.text": "<topLabel>To vás umisťuje do horních</topLabel><percentage></percentage><bottomLabel> uživatelů domény {domain}.</bottomLabel>",
|
||||
"annual_report.summary.percentile.we_wont_tell_bernie": "To, že jste zdejší smetánka, zůstane mezi námi ;).",
|
||||
"annual_report.summary.share_message": "Mám archetyp {archetype}!",
|
||||
"annual_report.summary.thanks": "Děkujeme, že jste součástí Mastodonu!",
|
||||
"attachments_list.unprocessed": "(nezpracováno)",
|
||||
"audio.hide": "Skrýt zvuk",
|
||||
@@ -516,6 +521,7 @@
|
||||
"keyboard_shortcuts.toggle_hidden": "Zobrazit/skrýt text za varováním o obsahu",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "Zobrazit/skrýt média",
|
||||
"keyboard_shortcuts.toot": "Začít nový příspěvek",
|
||||
"keyboard_shortcuts.top": "Přesunout na začátek seznamu",
|
||||
"keyboard_shortcuts.translate": "k přeložení příspěvku",
|
||||
"keyboard_shortcuts.unfocus": "Zrušit zaměření na nový příspěvek/hledání",
|
||||
"keyboard_shortcuts.up": "Posunout v seznamu nahoru",
|
||||
|
||||
@@ -74,7 +74,7 @@
|
||||
"account.open_original_page": "Ursprüngliche Seite öffnen",
|
||||
"account.posts": "Beiträge",
|
||||
"account.posts_with_replies": "Beiträge & Antworten",
|
||||
"account.remove_from_followers": "{name} als Follower entfernen",
|
||||
"account.remove_from_followers": "@{name} als Follower entfernen",
|
||||
"account.report": "@{name} melden",
|
||||
"account.requested_follow": "{name} möchte dir folgen",
|
||||
"account.requests_to_follow_you": "Möchte dir folgen",
|
||||
@@ -320,7 +320,7 @@
|
||||
"domain_pill.your_server": "Deine digitale Heimat. Hier „leben“ alle Beiträge von dir. Falls es dir hier nicht gefällt, kannst du jederzeit den Server wechseln und ebenso deine Follower übertragen.",
|
||||
"domain_pill.your_username": "Deine eindeutige Identität auf diesem Server. Es ist möglich, Profile mit dem gleichen Profilnamen auf verschiedenen Servern zu finden.",
|
||||
"dropdown.empty": "Option auswählen",
|
||||
"embed.instructions": "Du kannst diesen Beitrag auf deiner Website einbetten, indem du den nachfolgenden Code kopierst.",
|
||||
"embed.instructions": "Du kannst diesen Beitrag außerhalb des Fediverse (z. B. in deine Website) einbetten, indem du diesen Code kopierst und dort einfügst.",
|
||||
"embed.preview": "Vorschau:",
|
||||
"emoji_button.activity": "Aktivitäten",
|
||||
"emoji_button.clear": "Leeren",
|
||||
@@ -370,8 +370,8 @@
|
||||
"errors.unexpected_crash.copy_stacktrace": "Fehlerdiagnose in die Zwischenablage kopieren",
|
||||
"errors.unexpected_crash.report_issue": "Fehler melden",
|
||||
"explore.suggested_follows": "Profile",
|
||||
"explore.title": "Angesagt",
|
||||
"explore.trending_links": "Neuigkeiten",
|
||||
"explore.title": "Im Trend",
|
||||
"explore.trending_links": "Artikel",
|
||||
"explore.trending_statuses": "Beiträge",
|
||||
"explore.trending_tags": "Hashtags",
|
||||
"featured_carousel.current": "<sr>Beitrag</sr> {current, number}/{max, number}",
|
||||
@@ -414,15 +414,15 @@
|
||||
"follow_suggestions.personalized_suggestion": "Persönliche Empfehlung",
|
||||
"follow_suggestions.popular_suggestion": "Beliebte Empfehlung",
|
||||
"follow_suggestions.popular_suggestion_longer": "Beliebt auf {domain}",
|
||||
"follow_suggestions.similar_to_recently_followed_longer": "Ähnlich zu Profilen, denen du seit kurzem folgst",
|
||||
"follow_suggestions.similar_to_recently_followed_longer": "Ähnelt deinen kürzlich gefolgten Profilen",
|
||||
"follow_suggestions.view_all": "Alle anzeigen",
|
||||
"follow_suggestions.who_to_follow": "Empfohlene Profile",
|
||||
"follow_suggestions.who_to_follow": "Wem folgen?",
|
||||
"followed_tags": "Abonnierte Hashtags",
|
||||
"footer.about": "Über",
|
||||
"footer.about_this_server": "Über",
|
||||
"footer.directory": "Profilverzeichnis",
|
||||
"footer.get_app": "App herunterladen",
|
||||
"footer.keyboard_shortcuts": "Tastenkombinationen",
|
||||
"footer.keyboard_shortcuts": "Tastaturkürzel",
|
||||
"footer.privacy_policy": "Datenschutzerklärung",
|
||||
"footer.source_code": "Quellcode anzeigen",
|
||||
"footer.status": "Status",
|
||||
@@ -483,48 +483,48 @@
|
||||
"interaction_modal.on_another_server": "Auf anderem Server",
|
||||
"interaction_modal.on_this_server": "Auf diesem Server",
|
||||
"interaction_modal.title": "Melde dich an, um fortzufahren",
|
||||
"interaction_modal.username_prompt": "z. B. {example}",
|
||||
"interaction_modal.username_prompt": "Z. B. {example}",
|
||||
"intervals.full.days": "{number, plural, one {# Tag} other {# Tage}}",
|
||||
"intervals.full.hours": "{number, plural, one {# Stunde} other {# Stunden}}",
|
||||
"intervals.full.minutes": "{number, plural, one {# Minute} other {# Minuten}}",
|
||||
"keyboard_shortcuts.back": "Zurücknavigieren",
|
||||
"keyboard_shortcuts.blocked": "Liste blockierter Profile öffnen",
|
||||
"keyboard_shortcuts.blocked": "Blockierte Profile öffnen",
|
||||
"keyboard_shortcuts.boost": "Beitrag teilen",
|
||||
"keyboard_shortcuts.column": "Auf die aktuelle Spalte fokussieren",
|
||||
"keyboard_shortcuts.column": "Aktuelle Spalte fokussieren",
|
||||
"keyboard_shortcuts.compose": "Eingabefeld fokussieren",
|
||||
"keyboard_shortcuts.description": "Beschreibung",
|
||||
"keyboard_shortcuts.direct": "Private Erwähnungen öffnen",
|
||||
"keyboard_shortcuts.down": "Ansicht nach unten bewegen",
|
||||
"keyboard_shortcuts.down": "Auswahl nach unten bewegen",
|
||||
"keyboard_shortcuts.enter": "Beitrag öffnen",
|
||||
"keyboard_shortcuts.favourite": "Beitrag favorisieren",
|
||||
"keyboard_shortcuts.favourites": "Favoriten öffnen",
|
||||
"keyboard_shortcuts.federated": "Föderierte Timeline öffnen",
|
||||
"keyboard_shortcuts.heading": "Tastenkombinationen",
|
||||
"keyboard_shortcuts.heading": "Tastenkürzel",
|
||||
"keyboard_shortcuts.home": "Startseite öffnen",
|
||||
"keyboard_shortcuts.hotkey": "Tastenkürzel",
|
||||
"keyboard_shortcuts.legend": "Tastenkombinationen anzeigen",
|
||||
"keyboard_shortcuts.legend": "Tastenkürzel anzeigen (diese Seite)",
|
||||
"keyboard_shortcuts.load_more": "Schaltfläche „Mehr laden“ fokussieren",
|
||||
"keyboard_shortcuts.local": "Lokale Timeline öffnen",
|
||||
"keyboard_shortcuts.mention": "Profil erwähnen",
|
||||
"keyboard_shortcuts.muted": "Liste stummgeschalteter Profile öffnen",
|
||||
"keyboard_shortcuts.my_profile": "Eigenes Profil aufrufen",
|
||||
"keyboard_shortcuts.notifications": "Benachrichtigungen aufrufen",
|
||||
"keyboard_shortcuts.open_media": "Medieninhalt öffnen",
|
||||
"keyboard_shortcuts.muted": "Stummgeschaltete Profile öffnen",
|
||||
"keyboard_shortcuts.my_profile": "Eigenes Profil öffnen",
|
||||
"keyboard_shortcuts.notifications": "Benachrichtigungen öffnen",
|
||||
"keyboard_shortcuts.open_media": "Medien öffnen",
|
||||
"keyboard_shortcuts.pinned": "Liste angehefteter Beiträge öffnen",
|
||||
"keyboard_shortcuts.profile": "Profil aufrufen",
|
||||
"keyboard_shortcuts.quote": "Beitrag zitieren",
|
||||
"keyboard_shortcuts.reply": "Auf Beitrag antworten",
|
||||
"keyboard_shortcuts.requests": "Liste der Follower-Anfragen aufrufen",
|
||||
"keyboard_shortcuts.search": "Suchleiste fokussieren",
|
||||
"keyboard_shortcuts.spoilers": "Feld für Inhaltswarnung anzeigen/ausblenden",
|
||||
"keyboard_shortcuts.reply": "Beitrag beantworten",
|
||||
"keyboard_shortcuts.requests": "Follower-Anfragen aufrufen",
|
||||
"keyboard_shortcuts.search": "Eingabefeld / Suche fokussieren",
|
||||
"keyboard_shortcuts.spoilers": "Feld für Inhaltswarnung anzeigen / ausblenden",
|
||||
"keyboard_shortcuts.start": "„Auf gehts!“ öffnen",
|
||||
"keyboard_shortcuts.toggle_hidden": "Beitragstext hinter der Inhaltswarnung anzeigen/ausblenden",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "Medien anzeigen/ausblenden",
|
||||
"keyboard_shortcuts.toggle_hidden": "Beitrag hinter Inhaltswarnung anzeigen / ausblenden",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "Medien anzeigen / ausblenden",
|
||||
"keyboard_shortcuts.toot": "Neuen Beitrag erstellen",
|
||||
"keyboard_shortcuts.top": "Zum Listenanfang springen",
|
||||
"keyboard_shortcuts.translate": "Beitrag übersetzen",
|
||||
"keyboard_shortcuts.unfocus": "Eingabefeld/Suche nicht mehr fokussieren",
|
||||
"keyboard_shortcuts.up": "Ansicht nach oben bewegen",
|
||||
"keyboard_shortcuts.unfocus": "Eingabefeld / Suche nicht mehr fokussieren",
|
||||
"keyboard_shortcuts.up": "Auswahl nach oben bewegen",
|
||||
"learn_more_link.got_it": "Verstanden",
|
||||
"learn_more_link.learn_more": "Mehr erfahren",
|
||||
"lightbox.close": "Schließen",
|
||||
@@ -547,7 +547,7 @@
|
||||
"lists.done": "Fertig",
|
||||
"lists.edit": "Liste bearbeiten",
|
||||
"lists.exclusive": "Mitglieder auf der Startseite ausblenden",
|
||||
"lists.exclusive_hint": "Profile, die sich auf dieser Liste befinden, werden nicht auf deiner Startseite angezeigt, damit deren Beiträge nicht doppelt erscheinen.",
|
||||
"lists.exclusive_hint": "Profile, die sich auf dieser Liste befinden, werden nicht im Feed deiner Startseite angezeigt, damit deren Beiträge nicht doppelt erscheinen.",
|
||||
"lists.find_users_to_add": "Suche nach Profilen, um sie hinzuzufügen",
|
||||
"lists.list_members_count": "{count, plural, one {# Mitglied} other {# Mitglieder}}",
|
||||
"lists.list_name": "Titel der Liste",
|
||||
@@ -556,19 +556,19 @@
|
||||
"lists.no_members_yet": "Keine Mitglieder vorhanden.",
|
||||
"lists.no_results_found": "Keine Suchergebnisse.",
|
||||
"lists.remove_member": "Entfernen",
|
||||
"lists.replies_policy.followed": "Alle folgenden Profile",
|
||||
"lists.replies_policy.followed": "alle folgenden Profile",
|
||||
"lists.replies_policy.list": "Mitglieder der Liste",
|
||||
"lists.replies_policy.none": "Niemanden",
|
||||
"lists.replies_policy.none": "niemanden",
|
||||
"lists.save": "Speichern",
|
||||
"lists.search": "Suchen",
|
||||
"lists.show_replies_to": "Antworten von Listenmitgliedern einbeziehen an …",
|
||||
"load_pending": "{count, plural, one {# neuer Beitrag} other {# neue Beiträge}}",
|
||||
"loading_indicator.label": "Wird geladen …",
|
||||
"loading_indicator.label": "Lädt …",
|
||||
"media_gallery.hide": "Ausblenden",
|
||||
"moved_to_account_banner.text": "Dein Konto {disabledAccount} ist derzeit deaktiviert, weil du zu {movedToAccount} umgezogen bist.",
|
||||
"mute_modal.hide_from_notifications": "Benachrichtigungen ausblenden",
|
||||
"mute_modal.hide_options": "Einstellungen ausblenden",
|
||||
"mute_modal.indefinite": "Bis ich die Stummschaltung aufhebe",
|
||||
"mute_modal.hide_from_notifications": "Auch aus den Benachrichtigungen entfernen",
|
||||
"mute_modal.hide_options": "Optionen ausblenden",
|
||||
"mute_modal.indefinite": "Dauerhaft, bis ich die Stummschaltung aufhebe",
|
||||
"mute_modal.show_options": "Optionen anzeigen",
|
||||
"mute_modal.they_can_mention_and_follow": "Das Profil wird dich weiterhin erwähnen und dir folgen können, aber du wirst davon nichts sehen.",
|
||||
"mute_modal.they_wont_know": "Das Profil wird nicht erkennen können, dass du es stummgeschaltet hast.",
|
||||
@@ -578,7 +578,7 @@
|
||||
"navigation_bar.about": "Über",
|
||||
"navigation_bar.account_settings": "Passwort und Sicherheit",
|
||||
"navigation_bar.administration": "Administration",
|
||||
"navigation_bar.advanced_interface": "Im erweiterten Webinterface öffnen",
|
||||
"navigation_bar.advanced_interface": "Erweitertes Webinterface öffnen",
|
||||
"navigation_bar.automated_deletion": "Automatisiertes Löschen",
|
||||
"navigation_bar.blocks": "Blockierte Profile",
|
||||
"navigation_bar.bookmarks": "Lesezeichen",
|
||||
@@ -588,8 +588,8 @@
|
||||
"navigation_bar.filters": "Stummgeschaltete Wörter",
|
||||
"navigation_bar.follow_requests": "Follower-Anfragen",
|
||||
"navigation_bar.followed_tags": "Abonnierte Hashtags",
|
||||
"navigation_bar.follows_and_followers": "Follower und Folge ich",
|
||||
"navigation_bar.import_export": "Importieren und exportieren",
|
||||
"navigation_bar.follows_and_followers": "Follower & Folge ich",
|
||||
"navigation_bar.import_export": "Importieren & exportieren",
|
||||
"navigation_bar.lists": "Listen",
|
||||
"navigation_bar.live_feed_local": "Live-Feed (Dieser Server)",
|
||||
"navigation_bar.live_feed_public": "Live-Feed (Alle Server)",
|
||||
@@ -599,9 +599,9 @@
|
||||
"navigation_bar.mutes": "Stummgeschaltete Profile",
|
||||
"navigation_bar.opened_in_classic_interface": "Beiträge, Konten und andere bestimmte Seiten werden standardmäßig im klassischen Webinterface geöffnet.",
|
||||
"navigation_bar.preferences": "Einstellungen",
|
||||
"navigation_bar.privacy_and_reach": "Datenschutz und Reichweite",
|
||||
"navigation_bar.privacy_and_reach": "Datenschutz & Reichweite",
|
||||
"navigation_bar.search": "Suche",
|
||||
"navigation_bar.search_trends": "Suche / Angesagt",
|
||||
"navigation_bar.search_trends": "Suche / Trends",
|
||||
"navigation_panel.collapse_followed_tags": "Menü für abonnierte Hashtags schließen",
|
||||
"navigation_panel.collapse_lists": "Listen-Menü schließen",
|
||||
"navigation_panel.expand_followed_tags": "Menü für abonnierte Hashtags öffnen",
|
||||
@@ -635,7 +635,7 @@
|
||||
"notification.moderation_warning": "Du wurdest von den Moderator*innen verwarnt",
|
||||
"notification.moderation_warning.action_delete_statuses": "Einige deiner Beiträge sind entfernt worden.",
|
||||
"notification.moderation_warning.action_disable": "Dein Konto wurde deaktiviert.",
|
||||
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Einige deiner Beiträge wurden mit einer Inhaltswarnung versehen.",
|
||||
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Einige deiner Beiträge haben eine Inhaltswarnung erhalten.",
|
||||
"notification.moderation_warning.action_none": "Dein Konto ist von den Moderator*innen verwarnt worden.",
|
||||
"notification.moderation_warning.action_sensitive": "Deine zukünftigen Beiträge werden mit einer Inhaltswarnung versehen.",
|
||||
"notification.moderation_warning.action_silence": "Dein Konto wurde eingeschränkt.",
|
||||
@@ -650,7 +650,7 @@
|
||||
"notification.relationships_severance_event.domain_block": "Ein Admin von {from} hat {target} blockiert – darunter {followersCount} deiner Follower und {followingCount, plural, one {# Konto, dem} other {# Konten, denen}} du folgst.",
|
||||
"notification.relationships_severance_event.learn_more": "Mehr erfahren",
|
||||
"notification.relationships_severance_event.user_domain_block": "Du hast {target} blockiert – {followersCount} deiner Follower und {followingCount, plural, one {# Konto, dem} other {# Konten, denen}} du folgst, wurden entfernt.",
|
||||
"notification.status": "{name} postete …",
|
||||
"notification.status": "{name} veröffentlichte …",
|
||||
"notification.update": "{name} bearbeitete einen Beitrag",
|
||||
"notification_requests.accept": "Akzeptieren",
|
||||
"notification_requests.accept_multiple": "{count, plural, one {# Anfrage akzeptieren …} other {# Anfragen akzeptieren …}}",
|
||||
@@ -686,9 +686,9 @@
|
||||
"notifications.column_settings.mention": "Erwähnungen:",
|
||||
"notifications.column_settings.poll": "Umfrageergebnisse:",
|
||||
"notifications.column_settings.push": "Push-Benachrichtigungen",
|
||||
"notifications.column_settings.quote": "Zitate:",
|
||||
"notifications.column_settings.quote": "Zitierte Beiträge:",
|
||||
"notifications.column_settings.reblog": "Geteilte Beiträge:",
|
||||
"notifications.column_settings.show": "In dieser Spalte anzeigen",
|
||||
"notifications.column_settings.show": "Im Feed „Benachrichtigungen“ anzeigen",
|
||||
"notifications.column_settings.sound": "Ton abspielen",
|
||||
"notifications.column_settings.status": "Neue Beiträge:",
|
||||
"notifications.column_settings.unread_notifications.category": "Ungelesene Benachrichtigungen",
|
||||
@@ -697,10 +697,10 @@
|
||||
"notifications.filter.all": "Alles",
|
||||
"notifications.filter.boosts": "Geteilte Beiträge",
|
||||
"notifications.filter.favourites": "Favoriten",
|
||||
"notifications.filter.follows": "Folgt",
|
||||
"notifications.filter.follows": "Neue Follower",
|
||||
"notifications.filter.mentions": "Erwähnungen",
|
||||
"notifications.filter.polls": "Umfrageergebnisse",
|
||||
"notifications.filter.statuses": "Neue Beiträge von Profilen, denen du folgst",
|
||||
"notifications.filter.statuses": "Neue Beiträge von abonnierten Profilen",
|
||||
"notifications.grant_permission": "Berechtigung erteilen.",
|
||||
"notifications.group": "{count} Benachrichtigungen",
|
||||
"notifications.mark_as_read": "Alle Benachrichtigungen als gelesen markieren",
|
||||
@@ -710,18 +710,18 @@
|
||||
"notifications.policy.accept": "Akzeptieren",
|
||||
"notifications.policy.accept_hint": "In Benachrichtigungen anzeigen",
|
||||
"notifications.policy.drop": "Ignorieren",
|
||||
"notifications.policy.drop_hint": "In die Leere senden und nie wieder sehen",
|
||||
"notifications.policy.drop_hint": "Ins Nirwana befördern und auf Nimmerwiedersehen!",
|
||||
"notifications.policy.filter": "Filtern",
|
||||
"notifications.policy.filter_hint": "An gefilterte Benachrichtigungen im Posteingang senden",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Durch Server-Moderator*innen eingeschränkt",
|
||||
"notifications.policy.filter_limited_accounts_title": "moderierten Konten",
|
||||
"notifications.policy.filter_new_accounts.hint": "Innerhalb {days, plural, one {des letzten Tages} other {der letzten # Tagen}} erstellt",
|
||||
"notifications.policy.filter_new_accounts_title": "neuen Konten",
|
||||
"notifications.policy.filter_not_followers_hint": "Einschließlich Profilen, die dir seit weniger als {days, plural, one {einem Tag} other {# Tagen}} folgen",
|
||||
"notifications.policy.filter_hint": "Im separaten Feed „Gefilterte Benachrichtigungen“ anzeigen",
|
||||
"notifications.policy.filter_limited_accounts_hint": "Durch Server-Moderator*innen eingeschränkte Profile",
|
||||
"notifications.policy.filter_limited_accounts_title": "eingeschränkten Konten",
|
||||
"notifications.policy.filter_new_accounts.hint": "Konto {days, plural, one {seit gestern} other {in den vergangenen # Tagen}} registriert",
|
||||
"notifications.policy.filter_new_accounts_title": "neuen Profilen",
|
||||
"notifications.policy.filter_not_followers_hint": "Einschließlich Profilen, die mir seit weniger als {days, plural, one {einem Tag} other {# Tagen}} folgen",
|
||||
"notifications.policy.filter_not_followers_title": "Profilen, die mir nicht folgen",
|
||||
"notifications.policy.filter_not_following_hint": "Bis du sie manuell genehmigst",
|
||||
"notifications.policy.filter_not_following_hint": "… bis ich sie manuell genehmige",
|
||||
"notifications.policy.filter_not_following_title": "Profilen, denen ich nicht folge",
|
||||
"notifications.policy.filter_private_mentions_hint": "Solange sie keine Antwort auf deine Erwähnung ist oder du dem Profil nicht folgst",
|
||||
"notifications.policy.filter_private_mentions_hint": "… solange sie keine Antwort auf meine Erwähnungen sind – oder ich den Profilen nicht folge",
|
||||
"notifications.policy.filter_private_mentions_title": "unerwünschten privaten Erwähnungen",
|
||||
"notifications.policy.title": "Benachrichtigungen verwalten von …",
|
||||
"notifications_permission_banner.enable": "Aktiviere Desktop-Benachrichtigungen",
|
||||
@@ -763,17 +763,17 @@
|
||||
"privacy.public.long": "Alle innerhalb und außerhalb von Mastodon",
|
||||
"privacy.public.short": "Öffentlich",
|
||||
"privacy.quote.anyone": "{visibility} – alle dürfen zitieren",
|
||||
"privacy.quote.disabled": "{visibility} – niemand darf zitieren",
|
||||
"privacy.quote.limited": "{visibility} – eingeschränktes Zitieren",
|
||||
"privacy.quote.disabled": "{visibility} – Zitieren deaktiviert",
|
||||
"privacy.quote.limited": "{visibility} – nur Follower",
|
||||
"privacy.unlisted.additional": "Das Verhalten ist wie bei „Öffentlich“, jedoch gibt es einige Einschränkungen. Der Beitrag wird nicht in „Live-Feeds“, „Erkunden“, Hashtags oder über die Mastodon-Suchfunktion auffindbar sein – selbst wenn die zugehörige Einstellung aktiviert wurde.",
|
||||
"privacy.unlisted.long": "Verborgen vor Suchergebnissen, Trends und öffentlichen Timelines",
|
||||
"privacy.unlisted.long": "Verborgen vor Suchen, Trends und öffentlichen Timelines",
|
||||
"privacy.unlisted.short": "Öffentlich (still)",
|
||||
"privacy_policy.last_updated": "Stand: {date}",
|
||||
"privacy_policy.title": "Datenschutzerklärung",
|
||||
"quote_error.edit": "Beim Bearbeiten eines Beitrags können keine Zitate hinzugefügt werden.",
|
||||
"quote_error.poll": "Zitieren ist bei Umfragen nicht gestattet.",
|
||||
"quote_error.private_mentions": "Das Zitieren ist bei privaten Erwähnungen nicht erlaubt.",
|
||||
"quote_error.quote": "Es ist jeweils nur ein Zitat zulässig.",
|
||||
"quote_error.edit": "Beim Bearbeiten eines vorhandenen Beitrags können keine Zitate hinzugefügt werden.",
|
||||
"quote_error.poll": "Zitieren ist bei Umfragen nicht erlaubt.",
|
||||
"quote_error.private_mentions": "Zitieren ist bei privaten Erwähnungen nicht erlaubt.",
|
||||
"quote_error.quote": "Es darf nur ein Beitrag zitiert werden.",
|
||||
"quote_error.unauthorized": "Du bist nicht berechtigt, diesen Beitrag zu zitieren.",
|
||||
"quote_error.upload": "Zitieren ist mit Medien-Anhängen nicht möglich.",
|
||||
"recommended": "Empfohlen",
|
||||
@@ -783,7 +783,7 @@
|
||||
"relative_time.days": "{number} T.",
|
||||
"relative_time.full.days": "vor {number, plural, one {# Tag} other {# Tagen}}",
|
||||
"relative_time.full.hours": "vor {number, plural, one {# Stunde} other {# Stunden}}",
|
||||
"relative_time.full.just_now": "gerade eben",
|
||||
"relative_time.full.just_now": "soeben",
|
||||
"relative_time.full.minutes": "vor {number, plural, one {# Minute} other {# Minuten}}",
|
||||
"relative_time.full.seconds": "vor {number, plural, one {1 Sekunde} other {# Sekunden}}",
|
||||
"relative_time.hours": "{number} Std.",
|
||||
@@ -793,13 +793,13 @@
|
||||
"relative_time.today": "heute",
|
||||
"remove_quote_hint.button_label": "Verstanden",
|
||||
"remove_quote_hint.message": "Klicke dafür im Beitrag auf „{icon} Mehr“.",
|
||||
"remove_quote_hint.title": "Möchtest du aus dem zitierten Beitrag entfernt werden?",
|
||||
"remove_quote_hint.title": "Deinen zitierten Beitrag aus diesem Beitrag entfernen?",
|
||||
"reply_indicator.attachments": "{count, plural, one {# Anhang} other {# Anhänge}}",
|
||||
"reply_indicator.cancel": "Abbrechen",
|
||||
"reply_indicator.poll": "Umfrage",
|
||||
"report.block": "Blockieren",
|
||||
"report.block_explanation": "Du wirst keine Beiträge mehr von diesem Konto sehen. Das blockierte Konto wird deine Beiträge nicht mehr sehen oder dir folgen können. Die Person könnte mitbekommen, dass du sie blockiert hast.",
|
||||
"report.categories.legal": "Rechtlich",
|
||||
"report.categories.legal": "Rechtliches",
|
||||
"report.categories.other": "Andere",
|
||||
"report.categories.spam": "Spam",
|
||||
"report.categories.violation": "Der Inhalt verletzt eine oder mehrere Serverregeln",
|
||||
@@ -808,9 +808,9 @@
|
||||
"report.category.title_account": "Profil",
|
||||
"report.category.title_status": "Beitrag",
|
||||
"report.close": "Fertig",
|
||||
"report.comment.title": "Gibt es etwas anderes, was wir wissen sollten?",
|
||||
"report.forward": "Meldung zusätzlich an {target} weiterleiten",
|
||||
"report.forward_hint": "Dieses Konto gehört zu einem anderen Server. Soll eine anonymisierte Kopie der Meldung auch dorthin gesendet werden?",
|
||||
"report.comment.title": "Gibt es noch etwas, das wir wissen sollten?",
|
||||
"report.forward": "Meldung auch an den externen Server {target} weiterleiten",
|
||||
"report.forward_hint": "Das gemeldete Konto befindet sich auf einem anderen Server. Soll zusätzlich eine anonymisierte Kopie deiner Meldung an diesen Server geschickt werden?",
|
||||
"report.mute": "Stummschalten",
|
||||
"report.mute_explanation": "Du wirst keine Beiträge mehr von diesem Konto sehen. Das stummgeschaltete Konto wird dir weiterhin folgen und deine Beiträge sehen können. Die Person wird nicht mitbekommen, dass du sie stummgeschaltet hast.",
|
||||
"report.next": "Weiter",
|
||||
@@ -826,9 +826,9 @@
|
||||
"report.reasons.violation": "Das verstößt gegen Serverregeln",
|
||||
"report.reasons.violation_description": "Du bist dir sicher, dass eine bestimmte Regel gebrochen wurde",
|
||||
"report.rules.subtitle": "Wähle alle zutreffenden Inhalte aus",
|
||||
"report.rules.title": "Welche Regeln werden verletzt?",
|
||||
"report.rules.title": "Gegen welche Regeln wurde verstoßen?",
|
||||
"report.statuses.subtitle": "Wähle alle zutreffenden Inhalte aus",
|
||||
"report.statuses.title": "Gibt es Beiträge, die diese Meldung bekräftigen?",
|
||||
"report.statuses.title": "Gibt es Beiträge, die diese Meldung stützen?",
|
||||
"report.submit": "Senden",
|
||||
"report.target": "{target} melden",
|
||||
"report.thanks.take_action": "Das sind deine Möglichkeiten zu bestimmen, was du auf Mastodon sehen möchtest:",
|
||||
@@ -845,7 +845,7 @@
|
||||
"report_notification.categories.spam": "Spam",
|
||||
"report_notification.categories.spam_sentence": "Spam",
|
||||
"report_notification.categories.violation": "Regelverstoß",
|
||||
"report_notification.categories.violation_sentence": "Regelverletzung",
|
||||
"report_notification.categories.violation_sentence": "Verstoß gegen die Serverregeln",
|
||||
"report_notification.open": "Meldung öffnen",
|
||||
"search.clear": "Suchanfrage löschen",
|
||||
"search.no_recent_searches": "Keine früheren Suchanfragen",
|
||||
@@ -885,13 +885,13 @@
|
||||
"status.admin_account": "@{name} moderieren",
|
||||
"status.admin_domain": "{domain} moderieren",
|
||||
"status.admin_status": "Beitrag moderieren",
|
||||
"status.all_disabled": "Teilen und Zitieren von Beiträgen ist deaktiviert",
|
||||
"status.all_disabled": "Teilen und Zitieren sind deaktiviert",
|
||||
"status.block": "@{name} blockieren",
|
||||
"status.bookmark": "Lesezeichen setzen",
|
||||
"status.cancel_reblog_private": "Beitrag nicht mehr teilen",
|
||||
"status.cannot_quote": "Beitrag kann nicht zitiert werden",
|
||||
"status.cannot_quote": "Diesen Beitrag darfst du nicht zitieren",
|
||||
"status.cannot_reblog": "Dieser Beitrag kann nicht geteilt werden",
|
||||
"status.contains_quote": "Enthält Zitat",
|
||||
"status.contains_quote": "Enthält zitierten Beitrag",
|
||||
"status.context.loading": "Weitere Antworten laden",
|
||||
"status.context.loading_error": "Weitere Antworten konnten nicht geladen werden",
|
||||
"status.context.loading_success": "Neue Antworten geladen",
|
||||
@@ -907,10 +907,10 @@
|
||||
"status.direct_indicator": "Private Erwähnung",
|
||||
"status.edit": "Beitrag bearbeiten",
|
||||
"status.edited": "Zuletzt am {date} bearbeitet",
|
||||
"status.edited_x_times": "{count, plural, one {{count}-mal} other {{count}-mal}} bearbeitet",
|
||||
"status.edited_x_times": "{count, plural, one {{count} ×} other {{count} ×}} bearbeitet",
|
||||
"status.embed": "Code zum Einbetten",
|
||||
"status.favourite": "Favorisieren",
|
||||
"status.favourites_count": "{count, plural, one {{counter} Mal favorisiert} other {{counter} Mal favorisiert}}",
|
||||
"status.favourites_count": "{count, plural, one {{counter} × favorisiert} other {{counter} × favorisiert}}",
|
||||
"status.filter": "Beitrag filtern",
|
||||
"status.history.created": "{name} erstellte {date}",
|
||||
"status.history.edited": "{name} bearbeitete {date}",
|
||||
@@ -945,14 +945,14 @@
|
||||
"status.quotes.empty": "Diesen Beitrag hat bisher noch niemand zitiert. Sobald es jemand tut, wird das Profil hier erscheinen.",
|
||||
"status.quotes.local_other_disclaimer": "Durch Autor*in abgelehnte Zitate werden nicht angezeigt.",
|
||||
"status.quotes.remote_other_disclaimer": "Nur Zitate von {domain} werden hier garantiert angezeigt. Durch Autor*in abgelehnte Zitate werden nicht angezeigt.",
|
||||
"status.quotes_count": "{count, plural, one {{counter} Mal zitiert} other {{counter} Mal zitiert}}",
|
||||
"status.quotes_count": "{count, plural, one {{counter} × zitiert} other {{counter} × zitiert}}",
|
||||
"status.read_more": "Gesamten Beitrag anschauen",
|
||||
"status.reblog": "Teilen",
|
||||
"status.reblog_or_quote": "Teilen oder zitieren",
|
||||
"status.reblog_private": "Erneut mit deinen Followern teilen",
|
||||
"status.reblogged_by": "{name} teilte",
|
||||
"status.reblogs.empty": "Diesen Beitrag hat bisher noch niemand geteilt. Sobald es jemand tut, wird das Profil hier erscheinen.",
|
||||
"status.reblogs_count": "{count, plural, one {{counter} Mal geteilt} other {{counter} Mal geteilt}}",
|
||||
"status.reblogs_count": "{count, plural, one {{counter} × geteilt} other {{counter} × geteilt}}",
|
||||
"status.redraft": "Löschen und neu erstellen",
|
||||
"status.remove_bookmark": "Lesezeichen entfernen",
|
||||
"status.remove_favourite": "Aus Favoriten entfernen",
|
||||
@@ -1036,9 +1036,9 @@
|
||||
"visibility_modal.helper.unlisted_quoting": "Sollten dich andere zitieren, werden ihre zitierten Beiträge ebenfalls nicht in den Trends und öffentlichen Timelines angezeigt.",
|
||||
"visibility_modal.instructions": "Lege fest, wer mit diesem Beitrag interagieren darf. Du hast auch die Möglichkeit, diese Einstellung auf alle zukünftigen Beiträge anzuwenden. Gehe zu: <link>Einstellungen > Standardeinstellungen für Beiträge</link>",
|
||||
"visibility_modal.privacy_label": "Sichtbarkeit",
|
||||
"visibility_modal.quote_followers": "Nur Follower",
|
||||
"visibility_modal.quote_followers": "Nur meine Follower dürfen mich zitieren",
|
||||
"visibility_modal.quote_label": "Wer darf mich zitieren?",
|
||||
"visibility_modal.quote_nobody": "Nur ich selbst",
|
||||
"visibility_modal.quote_public": "Alle",
|
||||
"visibility_modal.quote_nobody": "Niemand darf mich zitieren",
|
||||
"visibility_modal.quote_public": "Alle dürfen mich zitieren",
|
||||
"visibility_modal.save": "Speichern"
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"about.contact": "Kontakt:",
|
||||
"about.default_locale": "Vaikimisi",
|
||||
"about.disclaimer": "Mastodon on tasuta ja vaba tarkvara ning Mastodon gGmbH kaubamärk.",
|
||||
"about.domain_blocks.no_reason_available": "Põhjus teadmata",
|
||||
"about.domain_blocks.no_reason_available": "Põhjus on teadmata",
|
||||
"about.domain_blocks.preamble": "Mastodon lubab tavaliselt vaadata sisu ning suhelda kasutajatega ükskõik millisest teisest fediversumi serverist. Need on erandid, mis on paika pandud sellel kindlal serveril.",
|
||||
"about.domain_blocks.silenced.explanation": "Sa ei näe üldiselt profiile ja sisu sellelt serverilt, kui sa just tahtlikult seda ei otsi või jälgimise moel nõusolekut ei anna.",
|
||||
"about.domain_blocks.silenced.title": "Piiratud",
|
||||
@@ -113,6 +113,10 @@
|
||||
"alt_text_modal.describe_for_people_with_visual_impairments": "Kirjelda seda nägemispuudega inimeste jaoks…",
|
||||
"alt_text_modal.done": "Valmis",
|
||||
"announcement.announcement": "Teadaanne",
|
||||
"annual_report.announcement.action_build": "Koosta kokkuvõte minu tegevusest Mastodonis",
|
||||
"annual_report.announcement.action_view": "Vaata kokkuvõtet minu tegevusest Mastodonis",
|
||||
"annual_report.announcement.description": "Vaata teavet oma suhestumise kohta Mastodonis eelmisel aastal.",
|
||||
"annual_report.announcement.title": "{year}. aasta Mastodoni kokkuvõte on valmis",
|
||||
"annual_report.summary.archetype.booster": "Ägesisu küttija",
|
||||
"annual_report.summary.archetype.lurker": "Hiilija",
|
||||
"annual_report.summary.archetype.oracle": "Oraakel",
|
||||
@@ -131,6 +135,7 @@
|
||||
"annual_report.summary.new_posts.new_posts": "uus postitus",
|
||||
"annual_report.summary.percentile.text": "<topLabel>See paneb su top</topLabel><percentage></percentage><bottomLabel> {domain} kasutajate hulka.</bottomLabel>",
|
||||
"annual_report.summary.percentile.we_wont_tell_bernie": "Vägev.",
|
||||
"annual_report.summary.share_message": "Minu arhetüüp on {archetype}!",
|
||||
"annual_report.summary.thanks": "Tänud olemast osa Mastodonist!",
|
||||
"attachments_list.unprocessed": "(töötlemata)",
|
||||
"audio.hide": "Peida audio",
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"about.default_locale": "پیشگزیده",
|
||||
"about.disclaimer": "ماستودون نرمافزار آزاد و نشان تجاری یک شرکت غیر انتفاعی با مسئولیت محدود آلمانی است.",
|
||||
"about.domain_blocks.no_reason_available": "دلیلی موجود نیست",
|
||||
"about.domain_blocks.preamble": "ماستودون عموماً میگذارد محتوا را از از هر کارساز دیگری در دنیای شبکههای اجتماعی غیرمتمرکز دیده و با آنان برهمکنش داشته باشید. اینها استثناهایی هستند که روی این کارساز خاص وضع شدهاند.",
|
||||
"about.domain_blocks.preamble": "ماستودون عموماً میگذارد محتوا را از هر کارساز دیگری در دنیای شبکههای اجتماعی غیرمتمرکز دیده و با آنان برهمکنش داشته باشید. اینها استثناهایی هستند که روی این کارساز خاص وضع شدهاند.",
|
||||
"about.domain_blocks.silenced.explanation": "عموماً نمایهها و محتوا از این کارساز را نمیبینید، مگر این که به طور خاص دنبالشان گشته یا با پی گیری، داوطلب دیدنشان شوید.",
|
||||
"about.domain_blocks.silenced.title": "محدود",
|
||||
"about.domain_blocks.suspended.explanation": "هیچ دادهای از این کارساز پردازش، ذخیره یا مبادله نخواهد شد، که هرگونه برهمکنش یا ارتباط با کاربران این کارساز را غیرممکن خواهد کرد.",
|
||||
@@ -121,7 +121,7 @@
|
||||
"annual_report.summary.archetype.lurker": "کمپیدا",
|
||||
"annual_report.summary.archetype.oracle": "غیبگو",
|
||||
"annual_report.summary.archetype.pollster": "نظرسنج",
|
||||
"annual_report.summary.archetype.replier": "پاسخگو",
|
||||
"annual_report.summary.archetype.replier": "پاسخگو",
|
||||
"annual_report.summary.followers.followers": "دنبال کننده",
|
||||
"annual_report.summary.followers.total": "در مجموع {count}",
|
||||
"annual_report.summary.here_it_is": "بازبینی {year} تان:",
|
||||
@@ -135,6 +135,7 @@
|
||||
"annual_report.summary.new_posts.new_posts": "فرستهٔ جدید",
|
||||
"annual_report.summary.percentile.text": "<topLabel>بین کاربران {domain} جزو</topLabel><percentage></percentage><bottomLabel>برتر هستید.</bottomLabel>",
|
||||
"annual_report.summary.percentile.we_wont_tell_bernie": "به برنی خبر نمیدهیم.",
|
||||
"annual_report.summary.share_message": "من کهنالگوی {archetype} را گرفتم!",
|
||||
"annual_report.summary.thanks": "سپاس که بخشی از ماستودون هستید!",
|
||||
"attachments_list.unprocessed": "(پردازش نشده)",
|
||||
"audio.hide": "نهفتن صدا",
|
||||
|
||||
@@ -364,7 +364,7 @@
|
||||
"error.no_hashtag_feed_access": "Liity tai kirjaudu sisään, niin voit tarkastella ja seurata tätä aihetunnistetta.",
|
||||
"error.unexpected_crash.explanation": "Sivua ei voida näyttää oikein ohjelmointivirheen tai selaimen yhteensopivuusvajeen vuoksi.",
|
||||
"error.unexpected_crash.explanation_addons": "Sivua ei voitu näyttää oikein. Tämä virhe johtuu todennäköisesti selaimen lisäosasta tai automaattisista käännöstyökaluista.",
|
||||
"error.unexpected_crash.next_steps": "Kokeile päivittää sivu. Jos se ei auta, voi Mastodonin käyttö ehkä onnistua eri selaimella tai natiivisovelluksella.",
|
||||
"error.unexpected_crash.next_steps": "Kokeile päivittää sivu. Jos se ei auta, Mastodonin käyttö voi ehkä onnistua eri selaimella tai natiivisovelluksella.",
|
||||
"error.unexpected_crash.next_steps_addons": "Yritä poistaa ne käytöstä, ja virkistä sitten sivunlataus. Mikäli ongelma jatkuu, voit mahdollisesti käyttää Mastodonia eri selaimella tai natiivilla sovelluksella.",
|
||||
"errors.unexpected_crash.copy_stacktrace": "Kopioi pinon jäljitys leikepöydälle",
|
||||
"errors.unexpected_crash.report_issue": "Ilmoita ongelmasta",
|
||||
@@ -867,7 +867,7 @@
|
||||
"search_results.all": "Kaikki",
|
||||
"search_results.hashtags": "Aihetunnisteet",
|
||||
"search_results.no_results": "Ei tuloksia.",
|
||||
"search_results.no_search_yet": "Koeta hakea julkaisuja, profiileja tai aihetunnisteita.",
|
||||
"search_results.no_search_yet": "Kokeile hakea julkaisuja, profiileja tai aihetunnisteita.",
|
||||
"search_results.see_all": "Näytä kaikki",
|
||||
"search_results.statuses": "Julkaisut",
|
||||
"search_results.title": "Haku ”{q}”",
|
||||
|
||||
@@ -135,6 +135,7 @@
|
||||
"annual_report.summary.new_posts.new_posts": "nýggir postar",
|
||||
"annual_report.summary.percentile.text": "<topLabel>Tað fær teg í topp</topLabel><percentage></percentage><bottomLabel>av {domain} brúkarum.</bottomLabel>",
|
||||
"annual_report.summary.percentile.we_wont_tell_bernie": "Vit fara ikki at fortelja Bernie tað.",
|
||||
"annual_report.summary.share_message": "Eg fekk {archetype} frumsniðið!",
|
||||
"annual_report.summary.thanks": "Takk fyri at tú er partur av Mastodon!",
|
||||
"attachments_list.unprocessed": "(óviðgjørt)",
|
||||
"audio.hide": "Fjal ljóð",
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
"account.familiar_followers_two": "{name1} ir {name2} seka",
|
||||
"account.featured": "Rodomi",
|
||||
"account.featured.accounts": "Profiliai",
|
||||
"account.featured.hashtags": "Saitažodžiai",
|
||||
"account.featured.hashtags": "Grotažymės",
|
||||
"account.featured_tags.last_status_at": "Paskutinis įrašas {date}",
|
||||
"account.featured_tags.last_status_never": "Nėra įrašų",
|
||||
"account.follow": "Sekti",
|
||||
@@ -130,7 +130,7 @@
|
||||
"annual_report.summary.highlighted_post.by_replies": "įrašas su daugiausiai atsakymų",
|
||||
"annual_report.summary.highlighted_post.possessive": "{name}",
|
||||
"annual_report.summary.most_used_app.most_used_app": "labiausiai naudota programa",
|
||||
"annual_report.summary.most_used_hashtag.most_used_hashtag": "labiausiai naudotas saitažodis",
|
||||
"annual_report.summary.most_used_hashtag.most_used_hashtag": "labiausiai naudota grotažymė",
|
||||
"annual_report.summary.most_used_hashtag.none": "Nieko",
|
||||
"annual_report.summary.new_posts.new_posts": "nauji įrašai",
|
||||
"annual_report.summary.percentile.text": "<topLabel>Tai reiškia, kad esate tarp</topLabel><percentage></percentage><bottomLabel>populiariausių {domain} naudotojų.</bottomLabel>",
|
||||
@@ -209,7 +209,7 @@
|
||||
"compose.saved.body": "Įrašas išsaugotas.",
|
||||
"compose_form.direct_message_warning_learn_more": "Sužinoti daugiau",
|
||||
"compose_form.encryption_warning": "„Mastodon“ įrašai nėra visapusiškai šifruojami. Per „Mastodon“ nesidalyk jokia slapta informacija.",
|
||||
"compose_form.hashtag_warning": "Šis įrašas nebus įtrauktas į jokį saitažodį, nes ji nėra vieša. Tik viešų įrašų galima ieškoti pagal saitažodį.",
|
||||
"compose_form.hashtag_warning": "Šis įrašas nebus įtrauktas į jokį grotažodį, nes jis nėra viešas. Tik vieši įrašai gali būti ieškomi pagal grotažymę.",
|
||||
"compose_form.lock_disclaimer": "Tavo paskyra nėra {locked}. Bet kas gali sekti tave ir peržiūrėti tik sekėjams skirtus įrašus.",
|
||||
"compose_form.lock_disclaimer.lock": "užrakinta",
|
||||
"compose_form.placeholder": "Kas tavo mintyse?",
|
||||
@@ -337,15 +337,15 @@
|
||||
"emoji_button.search_results": "Paieškos rezultatai",
|
||||
"emoji_button.symbols": "Simboliai",
|
||||
"emoji_button.travel": "Kelionės ir vietos",
|
||||
"empty_column.account_featured.me": "Jūs dar nieko neparyškinote. Ar žinojote, kad savo profilyje galite parodyti dažniausiai naudojamas žymes ir netgi savo draugų paskyras?",
|
||||
"empty_column.account_featured.other": "{acct} dar nieko neparyškino. Ar žinojote, kad savo profilyje galite pateikti dažniausiai naudojamus žymes ir netgi savo draugų paskyras?",
|
||||
"empty_column.account_featured.me": "Jūs dar nieko neparyškinote. Ar žinojote, kad savo profilyje galite parodyti dažniausiai naudojamas grotažymes ir netgi savo draugų paskyras?",
|
||||
"empty_column.account_featured.other": "{acct} dar nieko neparyškino. Ar žinojote, kad savo profilyje galite pateikti dažniausiai naudojamus grotžymes ir netgi savo draugų paskyras?",
|
||||
"empty_column.account_featured_other.unknown": "Ši paskyra dar nieko neparodė.",
|
||||
"empty_column.account_hides_collections": "Šis (-i) naudotojas (-a) pasirinko nepadaryti šią informaciją prieinamą.",
|
||||
"empty_column.account_suspended": "Paskyra pristabdyta.",
|
||||
"empty_column.account_timeline": "Nėra čia įrašų.",
|
||||
"empty_column.account_unavailable": "Profilis neprieinamas.",
|
||||
"empty_column.blocks": "Dar neužblokavai nė vieno naudotojo.",
|
||||
"empty_column.bookmarked_statuses": "Dar neturi nė vienos įrašo pridėtos žymės. Kai vieną iš jų pridėsi į žymes, jis bus rodomas čia.",
|
||||
"empty_column.bookmarked_statuses": "Dar neturi nė vienos įrašo su žyma. Kai vieną žymų pridėsi prie įrašo, jis bus rodomas čia.",
|
||||
"empty_column.community": "Vietinė laiko skalė yra tuščia. Parašyk ką nors viešai, kad pradėtum sąveikauti.",
|
||||
"empty_column.direct": "Dar neturi jokių privačių paminėjimų. Kai išsiųsi arba gausi vieną iš jų, jis bus rodomas čia.",
|
||||
"empty_column.disabled_feed": "Šis srautas buvo išjungtas jūsų serverio administratorių.",
|
||||
@@ -354,8 +354,8 @@
|
||||
"empty_column.favourited_statuses": "Dar neturi mėgstamų įrašų. Kai vieną iš jų pamėgsi, jis bus rodomas čia.",
|
||||
"empty_column.favourites": "Šio įrašo dar niekas nepamėgo. Kai kas nors tai padarys, jie bus rodomi čia.",
|
||||
"empty_column.follow_requests": "Dar neturi jokių sekimo prašymų. Kai gausi tokį prašymą, jis bus rodomas čia.",
|
||||
"empty_column.followed_tags": "Dar neseki jokių saitažodžių. Kai tai padarysi, jie bus rodomi čia.",
|
||||
"empty_column.hashtag": "Nėra nieko šiame saitažodyje kol kas.",
|
||||
"empty_column.followed_tags": "Dar neseki jokių grotažymių. Kai tai padarysi, jos bus rodomos čia.",
|
||||
"empty_column.hashtag": "Šioje gratažymėje kol kas nieko nėra.",
|
||||
"empty_column.home": "Tavo pagrindinio laiko skalė tuščia. Sek daugiau žmonių, kad ją užpildytum.",
|
||||
"empty_column.list": "Šiame sąraše dar nieko nėra. Kai šio sąrašo nariai paskelbs naujus įrašus, jie bus rodomi čia.",
|
||||
"empty_column.mutes": "Dar nesi nutildęs (-usi) nė vieno naudotojo.",
|
||||
@@ -373,7 +373,7 @@
|
||||
"explore.title": "Populiaru",
|
||||
"explore.trending_links": "Naujienos",
|
||||
"explore.trending_statuses": "Įrašai",
|
||||
"explore.trending_tags": "Saitažodžiai",
|
||||
"explore.trending_tags": "Grotažymės",
|
||||
"featured_carousel.current": "<sr>Įrašas</sr> {current, number} / {max, number}",
|
||||
"featured_carousel.header": "{count, plural, one {Iškeltas įrašas} few {Iškelti įrašai} many {Iškeltų įrašų} other {Iškelti įrašai}}",
|
||||
"featured_carousel.slide": "Įrašas {current, number} iš {max, number}",
|
||||
@@ -417,7 +417,7 @@
|
||||
"follow_suggestions.similar_to_recently_followed_longer": "Panašūs į profilius, kuriuos neseniai seki",
|
||||
"follow_suggestions.view_all": "Peržiūrėti viską",
|
||||
"follow_suggestions.who_to_follow": "Ką sekti",
|
||||
"followed_tags": "Sekami saitažodžiai",
|
||||
"followed_tags": "Sekamos grotažymės",
|
||||
"footer.about": "Apie",
|
||||
"footer.about_this_server": "Apie",
|
||||
"footer.directory": "Profilių katalogas",
|
||||
@@ -429,26 +429,26 @@
|
||||
"footer.terms_of_service": "Paslaugų sąlygos",
|
||||
"generic.saved": "Išsaugota",
|
||||
"getting_started.heading": "Kaip pradėti",
|
||||
"hashtag.admin_moderation": "Atverti prižiūrėjimo sąsają saitažodžiui #{name}",
|
||||
"hashtag.admin_moderation": "Atverti moderavimo langą #{name}",
|
||||
"hashtag.browse": "Naršyti įrašus su #{hashtag}",
|
||||
"hashtag.browse_from_account": "Naršyti @{name} įrašus su žyma #{hashtag}",
|
||||
"hashtag.browse_from_account": "Naršyti @{name} įrašus su grotažyme #{hashtag}",
|
||||
"hashtag.column_header.tag_mode.all": "ir {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "ar {additional}",
|
||||
"hashtag.column_header.tag_mode.none": "be {additional}",
|
||||
"hashtag.column_settings.select.no_options_message": "Pasiūlymų nerasta.",
|
||||
"hashtag.column_settings.select.placeholder": "Įvesti saitažodžius…",
|
||||
"hashtag.column_settings.select.placeholder": "Įvesk grotažymes…",
|
||||
"hashtag.column_settings.tag_mode.all": "Visi šie",
|
||||
"hashtag.column_settings.tag_mode.any": "Bet kuris iš šių",
|
||||
"hashtag.column_settings.tag_mode.none": "Nė vienas iš šių",
|
||||
"hashtag.column_settings.tag_toggle": "Įtraukti papildomas šio stulpelio žymes",
|
||||
"hashtag.counter_by_accounts": "{count, plural, one {{counter} dalyvis} few {{counter} dalyviai} many {{counter} dalyvio} other {{counter} dalyvių}}",
|
||||
"hashtag.column_settings.tag_mode.any": "Bet kuris šių",
|
||||
"hashtag.column_settings.tag_mode.none": "Nei vienas šių",
|
||||
"hashtag.column_settings.tag_toggle": "Įtraukti papildomas žymas į šį stulpelį",
|
||||
"hashtag.counter_by_accounts": "{count, plural, one {{counter} dalyvis} few {{counter} dalyviai} many {{counter} dalyvių} other {{counter} dalyviai}}",
|
||||
"hashtag.counter_by_uses": "{count, plural, one {{counter} įrašas} few {{counter} įrašai} many {{counter} įrašo} other {{counter} įrašų}}",
|
||||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} įrašas} few {{counter} įrašai} many {{counter} įrašo} other {{counter} įrašų}} šiandien",
|
||||
"hashtag.feature": "Rodyti profilyje",
|
||||
"hashtag.follow": "Sekti saitažodį",
|
||||
"hashtag.follow": "Sekti grotažymę",
|
||||
"hashtag.mute": "Nutildyti žymą #{hashtag}",
|
||||
"hashtag.unfeature": "Neberodyti profilyje",
|
||||
"hashtag.unfollow": "Nebesekti saitažodį",
|
||||
"hashtag.unfollow": "Nebesekti grotažymės",
|
||||
"hashtags.and_other": "…ir {count, plural, one {# daugiau} few {# daugiau} many {# daugiau}other {# daugiau}}",
|
||||
"hints.profiles.followers_may_be_missing": "Sekėjai šiai profiliui gali būti nepateikti.",
|
||||
"hints.profiles.follows_may_be_missing": "Sekimai šiai profiliui gali būti nepateikti.",
|
||||
@@ -489,7 +489,7 @@
|
||||
"intervals.full.minutes": "{number, plural, one {# minutė} few {# minutes} many {# minutės} other {# minučių}}",
|
||||
"keyboard_shortcuts.back": "Naršyti atgal",
|
||||
"keyboard_shortcuts.blocked": "Atidaryti užblokuotų naudotojų sąrašą",
|
||||
"keyboard_shortcuts.boost": "Pakelti įrašą",
|
||||
"keyboard_shortcuts.boost": "Dalintis įrašu",
|
||||
"keyboard_shortcuts.column": "Fokusuoti stulpelį",
|
||||
"keyboard_shortcuts.compose": "Fokusuoti rengykles teksto sritį",
|
||||
"keyboard_shortcuts.description": "Aprašymas",
|
||||
@@ -587,7 +587,7 @@
|
||||
"navigation_bar.favourites": "Mėgstami",
|
||||
"navigation_bar.filters": "Nutildyti žodžiai",
|
||||
"navigation_bar.follow_requests": "Sekimo prašymai",
|
||||
"navigation_bar.followed_tags": "Sekami saitažodžiai",
|
||||
"navigation_bar.followed_tags": "Sekamos grotažymės",
|
||||
"navigation_bar.follows_and_followers": "Sekimai ir sekėjai",
|
||||
"navigation_bar.import_export": "Importas ir eksportas",
|
||||
"navigation_bar.lists": "Sąrašai",
|
||||
@@ -604,7 +604,7 @@
|
||||
"navigation_bar.search_trends": "Paieška / Populiaru",
|
||||
"navigation_panel.collapse_followed_tags": "Sutraukti sekamų žymių meniu",
|
||||
"navigation_panel.collapse_lists": "Sutraukti sąrašo meniu",
|
||||
"navigation_panel.expand_followed_tags": "Išskleisti sekamų žymių meniu",
|
||||
"navigation_panel.expand_followed_tags": "Išskleisti sekamų grotažymių meniu",
|
||||
"navigation_panel.expand_lists": "Išskleisti sąrašo meniu",
|
||||
"not_signed_in_indicator.not_signed_in": "Norint pasiekti šį išteklį, reikia prisijungti.",
|
||||
"notification.admin.report": "{name} pranešė {target}",
|
||||
@@ -635,16 +635,16 @@
|
||||
"notification.moderation_warning": "Gavai prižiūrėjimo įspėjimą",
|
||||
"notification.moderation_warning.action_delete_statuses": "Kai kurie tavo įrašai buvo pašalintos.",
|
||||
"notification.moderation_warning.action_disable": "Tavo paskyra buvo išjungta.",
|
||||
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Kai kurie tavo įrašai buvo pažymėtos kaip jautrios.",
|
||||
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Kai kurie tavo įrašai buvo pažymėti kaip turintys jautrią informaciją.",
|
||||
"notification.moderation_warning.action_none": "Tavo paskyra gavo prižiūrėjimo įspėjimą.",
|
||||
"notification.moderation_warning.action_sensitive": "Nuo šiol tavo įrašai bus pažymėti kaip jautrūs.",
|
||||
"notification.moderation_warning.action_sensitive": "Nuo šiol tavo įrašai bus pažymėti kaip su jautria informacija.",
|
||||
"notification.moderation_warning.action_silence": "Tavo paskyra buvo apribota.",
|
||||
"notification.moderation_warning.action_suspend": "Tavo paskyra buvo sustabdyta.",
|
||||
"notification.own_poll": "Tavo apklausa baigėsi",
|
||||
"notification.poll": "Baigėsi apklausa, kurioje balsavai",
|
||||
"notification.quoted_update": "{name} redagavo jūsų cituotą įrašą",
|
||||
"notification.reblog": "{name} pakėlė tavo įrašą",
|
||||
"notification.reblog.name_and_others_with_link": "{name} ir <a>{count, plural,one {dar kažkas} few {# kiti} other {# kitų}}</a> paryškino tavo įrašą",
|
||||
"notification.reblog": "{name} dalinosi tavo įrašu",
|
||||
"notification.reblog.name_and_others_with_link": "{name} ir <a>{count, plural,one {dar kažkas} few {# kiti} other {# kitų}}</a> pasidalino tavo įrašu",
|
||||
"notification.relationships_severance_event": "Prarasti sąryšiai su {name}",
|
||||
"notification.relationships_severance_event.account_suspension": "Administratorius iš {from} sustabdė {target}, todėl jūs nebegalėsite gauti jų naujienų ar bendrauti su jais.",
|
||||
"notification.relationships_severance_event.domain_block": "Administratorius iš {from} užblokavo {target}, įskaitant {followersCount} iš tavo sekėjų ir {followingCount, plural,one {# žmogų, kurį} few {# žmones, kuriuos} other {# žmonių, kuriuos}} seki.",
|
||||
@@ -687,7 +687,7 @@
|
||||
"notifications.column_settings.poll": "Balsavimo rezultatai:",
|
||||
"notifications.column_settings.push": "Tiesioginiai pranešimai",
|
||||
"notifications.column_settings.quote": "Paminėjimai:",
|
||||
"notifications.column_settings.reblog": "Pakėlimai:",
|
||||
"notifications.column_settings.reblog": "Pasidalinimai:",
|
||||
"notifications.column_settings.show": "Rodyti stulpelyje",
|
||||
"notifications.column_settings.sound": "Paleisti garsą",
|
||||
"notifications.column_settings.status": "Nauji įrašai:",
|
||||
@@ -695,7 +695,7 @@
|
||||
"notifications.column_settings.unread_notifications.highlight": "Paryškinti neperskaitytus pranešimus",
|
||||
"notifications.column_settings.update": "Redagavimai:",
|
||||
"notifications.filter.all": "Visi",
|
||||
"notifications.filter.boosts": "Pakėlimai",
|
||||
"notifications.filter.boosts": "Pasidalinimai",
|
||||
"notifications.filter.favourites": "Mėgstami",
|
||||
"notifications.filter.follows": "Sekimai",
|
||||
"notifications.filter.mentions": "Paminėjimai",
|
||||
@@ -765,7 +765,7 @@
|
||||
"privacy.quote.anyone": "{visibility}, kiekvienas gali cituoti",
|
||||
"privacy.quote.disabled": "{visibility}, paminėjimai išjungti",
|
||||
"privacy.quote.limited": "{visibility}, paminėjimai apriboti",
|
||||
"privacy.unlisted.additional": "Tai veikia lygiai taip pat, kaip ir vieša, tik įrašas nebus rodomas tiesioginiuose srautuose, saitažodžiose, naršyme ar Mastodon paieškoje, net jei esi įtraukęs (-usi) visą paskyrą.",
|
||||
"privacy.unlisted.additional": "Tai veikia lygiai taip pat, kaip ir vieša, tik įrašas nebus rodomas tiesioginiuose srautuose, grotažymėse, naršyme ar Mastodon paieškoje, net jei esi įtraukęs (-usi) visą paskyrą.",
|
||||
"privacy.unlisted.long": "Paslėptas nuo „Mastodon“ paieškos rezultatų, tendencijų ir viešų įrašų sienų",
|
||||
"privacy.unlisted.short": "Tyliai vieša",
|
||||
"privacy_policy.last_updated": "Paskutinį kartą atnaujinta {date}",
|
||||
@@ -866,9 +866,9 @@
|
||||
"search_popout.user": "naudotojas",
|
||||
"search_results.accounts": "Profiliai",
|
||||
"search_results.all": "Visi",
|
||||
"search_results.hashtags": "Saitažodžiai",
|
||||
"search_results.hashtags": "Grotažymės",
|
||||
"search_results.no_results": "Nėra rezultatų.",
|
||||
"search_results.no_search_yet": "Pabandykite ieškoti įrašų, profilių arba saitažodžių.",
|
||||
"search_results.no_search_yet": "Pabandykite ieškoti įrašų, profilių arba grotažymių.",
|
||||
"search_results.see_all": "Žiūrėti viską",
|
||||
"search_results.statuses": "Įrašai",
|
||||
"search_results.title": "Paieška užklausai „{q}“",
|
||||
@@ -885,10 +885,10 @@
|
||||
"status.admin_account": "Atidaryti prižiūrėjimo sąsają @{name}",
|
||||
"status.admin_domain": "Atidaryti prižiūrėjimo sąsają {domain}",
|
||||
"status.admin_status": "Atidaryti šį įrašą prižiūrėjimo sąsajoje",
|
||||
"status.all_disabled": "Įrašo pakėlimai ir paminėjimai išjungti",
|
||||
"status.all_disabled": "Įrašo dalinimaisi ir paminėjimai išjungti",
|
||||
"status.block": "Blokuoti @{name}",
|
||||
"status.bookmark": "Pridėti į žymės",
|
||||
"status.cancel_reblog_private": "Nebepasidalinti",
|
||||
"status.bookmark": "Žymė",
|
||||
"status.cancel_reblog_private": "Nesidalinti",
|
||||
"status.cannot_quote": "Jums neleidžiama paminėti šio įrašo",
|
||||
"status.cannot_reblog": "Šis įrašas negali būti pakeltas.",
|
||||
"status.contains_quote": "Turi citatą",
|
||||
@@ -910,6 +910,7 @@
|
||||
"status.edited_x_times": "Redaguota {count, plural, one {{count} kartą} few {{count} kartus} many {{count} karto} other {{count} kartų}}",
|
||||
"status.embed": "Gaukite įterpimo kodą",
|
||||
"status.favourite": "Pamėgti",
|
||||
"status.favourites_count": "{count, plural, one {{counter} patiko} few {{counter} patiko} many {{counter} patiko} other {{counter} patiko}}",
|
||||
"status.filter": "Filtruoti šį įrašą",
|
||||
"status.history.created": "{name} sukurta {date}",
|
||||
"status.history.edited": "{name} redaguota {date}",
|
||||
@@ -944,11 +945,14 @@
|
||||
"status.quotes.empty": "Šio įrašo dar niekas nepaminėjo. Kai kas nors tai padarys, jie bus rodomi čia.",
|
||||
"status.quotes.local_other_disclaimer": "Autoriaus atmesti įrašo paminėjimai nebus rodomi.",
|
||||
"status.quotes.remote_other_disclaimer": "Čia bus rodoma tik paminėjimai iš {domain}. Autoriaus atmesti įrašo paminėjimai nebus rodomi.",
|
||||
"status.quotes_count": "{count, plural, one {{counter} paminėjimas} few {{counter} paminėjimai} many {{counter} paminėjimai} other {{counter} paminėjimai}}",
|
||||
"status.read_more": "Skaityti daugiau",
|
||||
"status.reblog": "Pakelti",
|
||||
"status.reblog_or_quote": "Paryškinti arba cituoti",
|
||||
"status.reblogged_by": "{name} pakėlė",
|
||||
"status.reblogs.empty": "Šio įrašo dar niekas nepakėlė. Kai kas nors tai padarys, jie bus rodomi čia.",
|
||||
"status.reblog": "Dalintis",
|
||||
"status.reblog_or_quote": "Dalintis arba cituoti",
|
||||
"status.reblog_private": "Vėl pasidalinkite su savo sekėjais",
|
||||
"status.reblogged_by": "{name} pasidalino",
|
||||
"status.reblogs.empty": "Šiuo įrašu dar niekas nesidalino. Kai kas nors tai padarys, jie bus rodomi čia.",
|
||||
"status.reblogs_count": "{count, plural, one {{counter} pasidalinimas} few {{counter} pasidalinimai} many {{counter} pasidalinimų} other {{counter} pasidalinimai}}",
|
||||
"status.redraft": "Ištrinti ir parengti iš naujo",
|
||||
"status.remove_bookmark": "Pašalinti žymę",
|
||||
"status.remove_favourite": "Šalinti iš mėgstamų",
|
||||
@@ -975,6 +979,7 @@
|
||||
"subscribed_languages.save": "Išsaugoti pakeitimus",
|
||||
"subscribed_languages.target": "Keisti prenumeruojamas kalbas {target}",
|
||||
"tabs_bar.home": "Pagrindinis",
|
||||
"tabs_bar.menu": "Meniu",
|
||||
"tabs_bar.notifications": "Pranešimai",
|
||||
"tabs_bar.publish": "Naujas įrašas",
|
||||
"tabs_bar.search": "Paieška",
|
||||
@@ -1023,10 +1028,13 @@
|
||||
"visibility_modal.button_title": "Nustatyti matomumą",
|
||||
"visibility_modal.direct_quote_warning.text": "Jei išsaugosite dabartinius nustatymus, įterpta citata bus konvertuota į nuorodą.",
|
||||
"visibility_modal.direct_quote_warning.title": "Cituojami įrašai negali būti įterpiami į privačius paminėjimus",
|
||||
"visibility_modal.header": "Matomumas ir sąveika",
|
||||
"visibility_modal.helper.direct_quoting": "Privatūs paminėjimai, parašyti platformoje „Mastodon“, negali būti cituojami kitų.",
|
||||
"visibility_modal.helper.privacy_editing": "Matomumo nustatymai negali būti keičiami po to, kai įrašas yra paskelbtas.",
|
||||
"visibility_modal.helper.privacy_private_self_quote": "Privačių įrašų paminėjimai negali būti skelbiami viešai.",
|
||||
"visibility_modal.helper.private_quoting": "Tik sekėjams skirti įrašai, parašyti platformoje „Mastodon“, negali būti cituojami kitų.",
|
||||
"visibility_modal.helper.unlisted_quoting": "Kai žmonės jus cituos, jų įrašai taip pat bus paslėpti iš populiariausių naujienų srauto.",
|
||||
"visibility_modal.instructions": "Kontroliuokite, kas gali bendrauti su šiuo įrašu. Taip pat galite taikyti nustatymus visiems būsimiems įrašams, pereidami į <link>Preferences > Posting defaults</link>.",
|
||||
"visibility_modal.privacy_label": "Matomumas",
|
||||
"visibility_modal.quote_followers": "Tik sekėjai",
|
||||
"visibility_modal.quote_label": "Kas gali cituoti",
|
||||
|
||||
@@ -113,6 +113,10 @@
|
||||
"alt_text_modal.describe_for_people_with_visual_impairments": "請替看有困難ê敘述tsit ê內容…",
|
||||
"alt_text_modal.done": "做好ah",
|
||||
"announcement.announcement": "公告",
|
||||
"annual_report.announcement.action_build": "建立我ê Wrapstodon",
|
||||
"annual_report.announcement.action_view": "看我ê Wrapstodon",
|
||||
"annual_report.announcement.description": "發現其他關係lí佇最近tsi̍t年參與Mastodon ê狀況。",
|
||||
"annual_report.announcement.title": "Wrapstodon {year} 已經kàu ah",
|
||||
"annual_report.summary.archetype.booster": "追求趣味ê",
|
||||
"annual_report.summary.archetype.lurker": "有讀無PO ê",
|
||||
"annual_report.summary.archetype.oracle": "先知",
|
||||
@@ -131,6 +135,7 @@
|
||||
"annual_report.summary.new_posts.new_posts": "新ê PO文",
|
||||
"annual_report.summary.percentile.text": "<topLabel>Tse 予lí變做 {domain} ê用戶ê </topLabel><percentage></percentage><bottomLabel></bottomLabel>",
|
||||
"annual_report.summary.percentile.we_wont_tell_bernie": "Gún bē kā Bernie講。",
|
||||
"annual_report.summary.share_message": "我得著 {archetype} ê典型!",
|
||||
"annual_report.summary.thanks": "多謝成做Mastodon ê成員!",
|
||||
"attachments_list.unprocessed": "(Iáu bē處理)",
|
||||
"audio.hide": "Tshàng聲音",
|
||||
|
||||
@@ -135,6 +135,7 @@
|
||||
"annual_report.summary.new_posts.new_posts": "nieuwe berichten",
|
||||
"annual_report.summary.percentile.text": "<topLabel>Hiermee behoor je tot de top</topLabel><percentage></percentage><bottomLabel> van {domain}.</bottomLabel>",
|
||||
"annual_report.summary.percentile.we_wont_tell_bernie": "We zullen Bernie niets vertellen.",
|
||||
"annual_report.summary.share_message": "Ik heb het archetype {archetype}!",
|
||||
"annual_report.summary.thanks": "Bedankt dat je deel uitmaakt van Mastodon!",
|
||||
"attachments_list.unprocessed": "(niet verwerkt)",
|
||||
"audio.hide": "Audio verbergen",
|
||||
|
||||
@@ -31,6 +31,8 @@
|
||||
"account.edit_profile_short": "แก้ไข",
|
||||
"account.enable_notifications": "แจ้งเตือนฉันเมื่อ @{name} โพสต์",
|
||||
"account.endorse": "แสดงในโปรไฟล์",
|
||||
"account.familiar_followers_one": "ติดตามโดย {name1}",
|
||||
"account.familiar_followers_two": "ติดตามโดย {name1} และ {name2}",
|
||||
"account.featured": "น่าสนใจ",
|
||||
"account.featured.accounts": "โปรไฟล์",
|
||||
"account.featured.hashtags": "แฮชแท็ก",
|
||||
@@ -65,6 +67,7 @@
|
||||
"account.mute_short": "ซ่อน",
|
||||
"account.muted": "ซ่อนอยู่",
|
||||
"account.muting": "กำลังซ่อน",
|
||||
"account.mutual": "คุณติดตามกันและกัน",
|
||||
"account.no_bio": "ไม่ได้ให้คำอธิบาย",
|
||||
"account.open_original_page": "เปิดหน้าดั้งเดิม",
|
||||
"account.posts": "โพสต์",
|
||||
@@ -232,6 +235,7 @@
|
||||
"confirmations.missing_alt_text.secondary": "โพสต์ต่อไป",
|
||||
"confirmations.missing_alt_text.title": "เพิ่มข้อความแสดงแทน?",
|
||||
"confirmations.mute.confirm": "ซ่อน",
|
||||
"confirmations.private_quote_notify.confirm": "เผยแพร่โพสต์",
|
||||
"confirmations.quiet_post_quote_info.dismiss": "ไม่ต้องเตือนฉันอีก",
|
||||
"confirmations.quiet_post_quote_info.got_it": "เข้าใจแล้ว",
|
||||
"confirmations.redraft.confirm": "ลบแล้วร่างใหม่",
|
||||
@@ -381,6 +385,7 @@
|
||||
"follow_suggestions.who_to_follow": "ติดตามใครดี",
|
||||
"followed_tags": "แฮชแท็กที่ติดตาม",
|
||||
"footer.about": "เกี่ยวกับ",
|
||||
"footer.about_this_server": "เกี่ยวกับ",
|
||||
"footer.directory": "ไดเรกทอรีโปรไฟล์",
|
||||
"footer.get_app": "รับแอป",
|
||||
"footer.keyboard_shortcuts": "แป้นพิมพ์ลัด",
|
||||
@@ -417,6 +422,7 @@
|
||||
"hints.profiles.see_more_followers": "ดูผู้ติดตามเพิ่มเติมใน {domain}",
|
||||
"hints.profiles.see_more_follows": "ดูการติดตามเพิ่มเติมใน {domain}",
|
||||
"hints.profiles.see_more_posts": "ดูโพสต์เพิ่มเติมใน {domain}",
|
||||
"home.column_settings.show_quotes": "แสดงการอ้างอิง",
|
||||
"home.column_settings.show_reblogs": "แสดงการดัน",
|
||||
"home.column_settings.show_replies": "แสดงการตอบกลับ",
|
||||
"home.hide_announcements": "ซ่อนประกาศ",
|
||||
@@ -461,6 +467,7 @@
|
||||
"keyboard_shortcuts.home": "เปิดเส้นเวลาหน้าแรก",
|
||||
"keyboard_shortcuts.hotkey": "ปุ่มลัด",
|
||||
"keyboard_shortcuts.legend": "แสดงคำอธิบายนี้",
|
||||
"keyboard_shortcuts.load_more": "โฟกัสปุ่ม \"โหลดเพิ่มเติม\"",
|
||||
"keyboard_shortcuts.local": "เปิดเส้นเวลาในเซิร์ฟเวอร์",
|
||||
"keyboard_shortcuts.mention": "กล่าวถึงผู้สร้าง",
|
||||
"keyboard_shortcuts.muted": "เปิดรายการผู้ใช้ที่ซ่อนอยู่",
|
||||
@@ -469,6 +476,7 @@
|
||||
"keyboard_shortcuts.open_media": "เปิดสื่อ",
|
||||
"keyboard_shortcuts.pinned": "เปิดรายการโพสต์ที่ปักหมุด",
|
||||
"keyboard_shortcuts.profile": "เปิดโปรไฟล์ของผู้สร้าง",
|
||||
"keyboard_shortcuts.quote": "อ้างอิงโพสต์",
|
||||
"keyboard_shortcuts.reply": "ตอบกลับโพสต์",
|
||||
"keyboard_shortcuts.requests": "เปิดรายการคำขอติดตาม",
|
||||
"keyboard_shortcuts.search": "โฟกัสแถบค้นหา",
|
||||
@@ -546,6 +554,8 @@
|
||||
"navigation_bar.follows_and_followers": "การติดตามและผู้ติดตาม",
|
||||
"navigation_bar.import_export": "การนำเข้าและการส่งออก",
|
||||
"navigation_bar.lists": "รายการ",
|
||||
"navigation_bar.live_feed_local": "ฟีดสด (ในเซิร์ฟเวอร์)",
|
||||
"navigation_bar.live_feed_public": "ฟีดสด (สาธารณะ)",
|
||||
"navigation_bar.logout": "ออกจากระบบ",
|
||||
"navigation_bar.moderation": "การกลั่นกรอง",
|
||||
"navigation_bar.more": "เพิ่มเติม",
|
||||
@@ -554,6 +564,7 @@
|
||||
"navigation_bar.preferences": "การกำหนดลักษณะ",
|
||||
"navigation_bar.privacy_and_reach": "ความเป็นส่วนตัวและการเข้าถึง",
|
||||
"navigation_bar.search": "ค้นหา",
|
||||
"navigation_bar.search_trends": "ค้นหา / กำลังนิยม",
|
||||
"navigation_panel.collapse_lists": "ยุบเมนูรายการ",
|
||||
"navigation_panel.expand_lists": "ขยายเมนูรายการ",
|
||||
"not_signed_in_indicator.not_signed_in": "คุณจำเป็นต้องเข้าสู่ระบบเพื่อเข้าถึงทรัพยากรนี้",
|
||||
@@ -576,6 +587,7 @@
|
||||
"notification.label.mention": "การกล่าวถึง",
|
||||
"notification.label.private_mention": "การกล่าวถึงแบบส่วนตัว",
|
||||
"notification.label.private_reply": "การตอบกลับแบบส่วนตัว",
|
||||
"notification.label.quote": "{name} ได้อ้างอิงโพสต์ของคุณ",
|
||||
"notification.label.reply": "การตอบกลับ",
|
||||
"notification.mention": "การกล่าวถึง",
|
||||
"notification.mentioned_you": "{name} ได้กล่าวถึงคุณ",
|
||||
@@ -590,6 +602,7 @@
|
||||
"notification.moderation_warning.action_suspend": "ระงับบัญชีของคุณแล้ว",
|
||||
"notification.own_poll": "การสำรวจความคิดเห็นของคุณได้สิ้นสุดแล้ว",
|
||||
"notification.poll": "การสำรวจความคิดเห็นที่คุณได้ลงคะแนนได้สิ้นสุดแล้ว",
|
||||
"notification.quoted_update": "{name} ได้แก้ไขโพสต์ที่คุณได้อ้างอิง",
|
||||
"notification.reblog": "{name} ได้ดันโพสต์ของคุณ",
|
||||
"notification.reblog.name_and_others_with_link": "{name} และ <a>{count, plural, other {# อื่น ๆ}}</a> ได้ดันโพสต์ของคุณ",
|
||||
"notification.relationships_severance_event": "สูญเสียการเชื่อมต่อกับ {name}",
|
||||
@@ -633,6 +646,7 @@
|
||||
"notifications.column_settings.mention": "การกล่าวถึง:",
|
||||
"notifications.column_settings.poll": "ผลลัพธ์การสำรวจความคิดเห็น:",
|
||||
"notifications.column_settings.push": "การแจ้งเตือนแบบผลัก",
|
||||
"notifications.column_settings.quote": "การอ้างอิง:",
|
||||
"notifications.column_settings.reblog": "การดัน:",
|
||||
"notifications.column_settings.show": "แสดงในคอลัมน์",
|
||||
"notifications.column_settings.sound": "เล่นเสียง",
|
||||
@@ -708,7 +722,11 @@
|
||||
"privacy.private.short": "ผู้ติดตาม",
|
||||
"privacy.public.long": "ใครก็ตามที่อยู่ในและนอก Mastodon",
|
||||
"privacy.public.short": "สาธารณะ",
|
||||
"privacy.quote.anyone": "{visibility}, ใครก็ตามสามารถอ้างอิง",
|
||||
"privacy.quote.disabled": "{visibility}, ปิดใช้งานการอ้างอิงแล้ว",
|
||||
"privacy.quote.limited": "{visibility}, จำกัดการอ้างอิงอยู่",
|
||||
"privacy.unlisted.additional": "สิ่งนี้ทำงานเหมือนกับสาธารณะทุกประการ ยกเว้นโพสต์จะไม่ปรากฏในฟีดสดหรือแฮชแท็ก, การสำรวจ หรือการค้นหา Mastodon แม้ว่าคุณได้เลือกรับทั่วทั้งบัญชีก็ตาม",
|
||||
"privacy.unlisted.long": "ซ่อนจากผลลัพธ์การค้นหา, กำลังนิยม และเส้นเวลาสาธารณะของ Mastodon",
|
||||
"privacy.unlisted.short": "สาธารณะแบบเงียบ",
|
||||
"privacy_policy.last_updated": "อัปเดตล่าสุดเมื่อ {date}",
|
||||
"privacy_policy.title": "นโยบายความเป็นส่วนตัว",
|
||||
@@ -849,6 +867,8 @@
|
||||
"status.mute_conversation": "ซ่อนการสนทนา",
|
||||
"status.open": "ขยายโพสต์นี้",
|
||||
"status.pin": "ปักหมุดในโปรไฟล์",
|
||||
"status.quote_error.limited_account_hint.action": "แสดงต่อไป",
|
||||
"status.quote_post_author": "อ้างอิงโพสต์โดย @{name}",
|
||||
"status.read_more": "อ่านเพิ่มเติม",
|
||||
"status.reblog": "ดัน",
|
||||
"status.reblogged_by": "{name} ได้ดัน",
|
||||
@@ -916,5 +936,11 @@
|
||||
"video.pause": "หยุดชั่วคราว",
|
||||
"video.play": "เล่น",
|
||||
"video.unmute": "เลิกปิดเสียง",
|
||||
"visibility_modal.button_title": "ตั้งการมองเห็น",
|
||||
"visibility_modal.header": "การมองเห็นและการโต้ตอบ",
|
||||
"visibility_modal.privacy_label": "การมองเห็น",
|
||||
"visibility_modal.quote_followers": "ผู้ติดตามเท่านั้น",
|
||||
"visibility_modal.quote_nobody": "แค่ฉัน",
|
||||
"visibility_modal.quote_public": "ใครก็ตาม",
|
||||
"visibility_modal.save": "บันทึก"
|
||||
}
|
||||
|
||||
@@ -319,8 +319,8 @@
|
||||
"domain_pill.your_handle": "您的帳號:",
|
||||
"domain_pill.your_server": "您數位世界的家,您所有的嘟文都在這裡。不喜歡這台伺服器嗎?您能隨時搬家至其他伺服器並且仍保有您的跟隨者。",
|
||||
"domain_pill.your_username": "您於您的伺服器中獨一無二的識別。於不同的伺服器上可能找到具有相同帳號的使用者。",
|
||||
"dropdown.empty": "選項",
|
||||
"embed.instructions": "若您欲於您的網站嵌入此嘟文,請複製以下程式碼。",
|
||||
"dropdown.empty": "請選擇一個選項",
|
||||
"embed.instructions": "請複製以下程式碼以於您的網站嵌入此嘟文。",
|
||||
"embed.preview": "它將顯示成這樣:",
|
||||
"emoji_button.activity": "活動",
|
||||
"emoji_button.clear": "清除",
|
||||
@@ -344,7 +344,7 @@
|
||||
"empty_column.account_suspended": "帳號已被停權",
|
||||
"empty_column.account_timeline": "這裡還沒有嘟文!",
|
||||
"empty_column.account_unavailable": "無法取得個人檔案",
|
||||
"empty_column.blocks": "您還沒有封鎖任何使用者。",
|
||||
"empty_column.blocks": "您尚未封鎖任何使用者。",
|
||||
"empty_column.bookmarked_statuses": "您還沒有新增任何書籤。當您新增書籤時,它將於此顯示。",
|
||||
"empty_column.community": "本站時間軸是空的。快公開嘟些文搶頭香啊!",
|
||||
"empty_column.direct": "您還沒有收到任何私訊。當您私訊別人或收到私訊時,它將於此顯示。",
|
||||
@@ -356,12 +356,12 @@
|
||||
"empty_column.follow_requests": "您還沒有收到任何跟隨請求。當您收到的跟隨請求時,它將於此顯示。",
|
||||
"empty_column.followed_tags": "您還沒有跟隨任何主題標籤。當您跟隨主題標籤時,它們將於此顯示。",
|
||||
"empty_column.hashtag": "這個主題標籤下什麼也沒有。",
|
||||
"empty_column.home": "您的首頁時間軸是空的!跟隨更多人來將它填滿吧!",
|
||||
"empty_column.home": "您的首頁時間軸是空的!跟隨更多人將它填滿吧!",
|
||||
"empty_column.list": "這份列表下什麼也沒有。當此列表的成員嘟出新的嘟文時,它們將顯示於此。",
|
||||
"empty_column.mutes": "您尚未靜音任何使用者。",
|
||||
"empty_column.notification_requests": "清空啦!已經沒有任何推播通知。當您收到新推播通知時,它們將依照您的設定於此顯示。",
|
||||
"empty_column.notifications": "您還沒有收到任何推播通知,當您與別人開始互動時,它將於此顯示。",
|
||||
"empty_column.public": "這裡什麼都沒有!嘗試寫些公開的嘟文,或者跟隨其他伺服器的使用者後,就會有嘟文出現了",
|
||||
"empty_column.public": "這裡什麼都沒有!嘗試寫些公開的嘟文,或著自己跟隨其他伺服器的使用者後就會有嘟文出現了",
|
||||
"error.no_hashtag_feed_access": "加入或登入 Mastodon 以檢視與跟隨此主題標籤。",
|
||||
"error.unexpected_crash.explanation": "由於發生系統故障或瀏覽器相容性問題,無法正常顯示此頁面。",
|
||||
"error.unexpected_crash.explanation_addons": "此頁面無法被正常顯示,這可能是由瀏覽器附加元件或網頁自動翻譯工具造成的。",
|
||||
|
||||
@@ -39,6 +39,12 @@ class Collection < ApplicationRecord
|
||||
validate :items_do_not_exceed_limit
|
||||
|
||||
scope :with_items, -> { includes(:collection_items).merge(CollectionItem.with_accounts) }
|
||||
scope :with_item_count, lambda {
|
||||
select('collections.*, COUNT(collection_items.id)')
|
||||
.left_joins(:collection_items)
|
||||
.group(collections: :id)
|
||||
}
|
||||
scope :with_tag, -> { includes(:tag) }
|
||||
|
||||
def remote?
|
||||
!local?
|
||||
|
||||
16
app/serializers/rest/base_collection_serializer.rb
Normal file
16
app/serializers/rest/base_collection_serializer.rb
Normal file
@@ -0,0 +1,16 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class REST::BaseCollectionSerializer < ActiveModel::Serializer
|
||||
attributes :id, :uri, :name, :description, :local, :sensitive,
|
||||
:discoverable, :item_count, :created_at, :updated_at
|
||||
|
||||
belongs_to :tag, serializer: REST::StatusSerializer::TagSerializer
|
||||
|
||||
def id
|
||||
object.id.to_s
|
||||
end
|
||||
|
||||
def item_count
|
||||
object.respond_to?(:item_count) ? object.item_count : object.collection_items.count
|
||||
end
|
||||
end
|
||||
@@ -1,11 +1,7 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class REST::CollectionSerializer < ActiveModel::Serializer
|
||||
attributes :uri, :name, :description, :local, :sensitive, :discoverable,
|
||||
:created_at, :updated_at
|
||||
|
||||
class REST::CollectionSerializer < REST::BaseCollectionSerializer
|
||||
belongs_to :account, serializer: REST::AccountSerializer
|
||||
belongs_to :tag, serializer: REST::StatusSerializer::TagSerializer
|
||||
|
||||
has_many :items, serializer: REST::CollectionItemSerializer
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ el:
|
||||
glitch_guide_link_text: Και ομοίως για το glitch-soc!
|
||||
auth:
|
||||
captcha_confirmation:
|
||||
hint_html: Απλώς ένα βήμα ακόμη! Για να επιβεβαιώσεις τον λογαριασμό σου, αυτός ο διακομιστής απαιτεί να λύσεις ένα CAPTCHA. Μπορείς να <a href="/about/more">επικοινωνήσεις με τον διαχειριστή του διακομιστή</a> αν έχεις ερωτήσεις ή χρειάζεσαι βοήθεια με την επιβεβαίωση του λογαριασμού σου.
|
||||
hint_html: Απλώς ένα βήμα ακόμα! Για να επιβεβαιώσεις τον λογαριασμό σου, αυτός ο διακομιστής απαιτεί να λύσεις ένα CAPTCHA. Μπορείς να <a href="/about/more">επικοινωνήσεις με τον διαχειριστή του διακομιστή</a> αν έχεις ερωτήσεις ή χρειάζεσαι βοήθεια με την επιβεβαίωση του λογαριασμού σου.
|
||||
title: Επαλήθευση χρήστη
|
||||
generic:
|
||||
use_this: Χρησιμοποιήστε αυτό
|
||||
|
||||
@@ -1 +1,32 @@
|
||||
---
|
||||
nn:
|
||||
admin:
|
||||
custom_emojis:
|
||||
batch_copy_error: 'En feil oppsto ved kopiering av noen av de valgte emojiene: %{message}'
|
||||
batch_error: 'En feil oppsto: %{message}'
|
||||
settings:
|
||||
flavour_and_skin:
|
||||
title: Variant og tema
|
||||
hide_followers_count:
|
||||
desc_html: Ikke vis følgerantallet på brukerprofiler
|
||||
title: Skjul følgerantall
|
||||
other:
|
||||
preamble: Diverse innstillinger for glitch-soc som ikke passer i andre kategorier.
|
||||
title: Andre
|
||||
outgoing_spoilers:
|
||||
title: Innholdsvarsel for utgående innlegg
|
||||
show_reblogs_in_public_timelines:
|
||||
desc_html: Vis offentlige fremhevinger av offentlige innlegg i lokale og offentlige tidslinjer.
|
||||
title: Vis fremhevinger i offentlige tidslinjer
|
||||
show_replies_in_public_timelines:
|
||||
title: Vis svar i offentlige tidslinjer
|
||||
trending_status_cw:
|
||||
title: Tillat innlegg med innholdsvarsler å trende
|
||||
appearance:
|
||||
localization:
|
||||
glitch_guide_link: https://crowdin.com/project/glitch-soc
|
||||
glitch_guide_link_text: Det gjelder også glitch-soc!
|
||||
generic:
|
||||
use_this: Bruk dette
|
||||
settings:
|
||||
flavours: Varianter
|
||||
|
||||
@@ -1 +1,32 @@
|
||||
---
|
||||
'no':
|
||||
admin:
|
||||
custom_emojis:
|
||||
batch_copy_error: 'En feil oppsto ved kopiering av noen av de valgte emojiene: %{message}'
|
||||
batch_error: 'En feil oppsto: %{message}'
|
||||
settings:
|
||||
flavour_and_skin:
|
||||
title: Variant og tema
|
||||
hide_followers_count:
|
||||
desc_html: Ikke vis følgerantallet på brukerprofiler
|
||||
title: Skjul følgerantall
|
||||
other:
|
||||
preamble: Diverse innstillinger for glitch-soc som ikke passer i andre kategorier.
|
||||
title: Andre
|
||||
outgoing_spoilers:
|
||||
title: Innholdsvarsel for utgående innlegg
|
||||
show_reblogs_in_public_timelines:
|
||||
desc_html: Vis offentlige fremhevinger av offentlige innlegg i lokale og offentlige tidslinjer.
|
||||
title: Vis fremhevinger i offentlige tidslinjer
|
||||
show_replies_in_public_timelines:
|
||||
title: Vis svar i offentlige tidslinjer
|
||||
trending_status_cw:
|
||||
title: Tillat innlegg med innholdsvarsler å trende
|
||||
appearance:
|
||||
localization:
|
||||
glitch_guide_link: https://crowdin.com/project/glitch-soc
|
||||
glitch_guide_link_text: Det gjelder også glitch-soc!
|
||||
generic:
|
||||
use_this: Bruk dette
|
||||
settings:
|
||||
flavours: Varianter
|
||||
|
||||
@@ -8,7 +8,7 @@ el:
|
||||
setting_default_content_type_markdown: Κατά τη γραφή των τουτς, υποθέτει ότι χρησιμοποιείται το Markdown για μορφοποίηση πλούσιου κειμένου, εκτός αν ορίζεται διαφορετικά
|
||||
setting_default_content_type_plain: Κατά τη γραφή των τουτς, υποθέτει ότι είναι απλό κείμενο χωρίς ειδική μορφοποίηση, εκτός αν ορίζεται διαφορετικά (προεπιλεγμένη συμπεριφορά Mastodon)
|
||||
setting_default_language: Η γλώσσα των τουτ σας μπορεί να εντοπιστεί αυτόματα, αλλά δεν είναι πάντα ακριβής
|
||||
setting_show_followers_count: Εμφάνιση του αριθμού ακολούθων σας στο προφίλ σας. Αν αποκρύψετε τον αριθμό των ακολούθων σας, θα είναι κρυμμένος ακόμη και από εσάς, και μερικές εφαρμογές μπορεί να εμφανίσουν έναν αρνητικό αριθμό ακολούθων.
|
||||
setting_show_followers_count: Εμφάνιση του αριθμού ακολούθων σας στο προφίλ σας. Αν αποκρύψετε τον αριθμό των ακολούθων σας, θα είναι κρυμμένος ακόμα και από εσάς, και μερικές εφαρμογές μπορεί να εμφανίσουν έναν αρνητικό αριθμό ακολούθων.
|
||||
labels:
|
||||
defaults:
|
||||
setting_default_content_type: Προεπιλεγμένη μορφή για τουτς
|
||||
|
||||
@@ -8,7 +8,7 @@ ko:
|
||||
setting_default_content_type_markdown: 게시물을 작성할 때, 형식을 지정하지 않았다면, 마크다운이라고 가정합니다
|
||||
setting_default_content_type_plain: 게시물을 작성할 때, 형식을 지정하지 않았다면, 일반적인 텍스트라고 가정합니다. (마스토돈의 기본 동작)
|
||||
setting_default_language: 작성하는 게시물의 언어는 자동으로 설정될 수 있습니다, 하지만 언제나 정확하지는 않습니다
|
||||
setting_show_followers_count: 팔로워 카운트를 프로필에서 숨깁니다. 팔로워 수를 숨기면 나에게도 보이지 않으며 몇몇 앱에서는 팔로워 수가 음수로 표시될 수 있습니다.
|
||||
setting_show_followers_count: 팔로워 카운트를 프로필에 표시합니다. 팔로워 수를 숨기면 나에게도 보이지 않으며 몇몇 앱에서는 팔로워 수가 음수로 표시될 수 있습니다.
|
||||
setting_skin: 선택한 마스토돈 풍미의 스킨을 바꿉니다
|
||||
labels:
|
||||
defaults:
|
||||
|
||||
@@ -1 +1,15 @@
|
||||
---
|
||||
nn:
|
||||
simple_form:
|
||||
glitch_only: glitch-soc
|
||||
hints:
|
||||
defaults:
|
||||
setting_default_language: Språket i innleggene deres kan oppdages automatisk, men det er ikke alltid nøyaktig
|
||||
labels:
|
||||
defaults:
|
||||
setting_default_content_type: Standardformat for innlegg
|
||||
setting_default_content_type_html: HTML
|
||||
setting_default_content_type_markdown: Markdown
|
||||
setting_default_content_type_plain: Ren tekst
|
||||
setting_show_followers_count: Vis følgerantallet deres
|
||||
setting_skin: Tema
|
||||
|
||||
@@ -1 +1,15 @@
|
||||
---
|
||||
'no':
|
||||
simple_form:
|
||||
glitch_only: glitch-soc
|
||||
hints:
|
||||
defaults:
|
||||
setting_default_language: Språket i innleggene deres kan oppdages automatisk, men det er ikke alltid nøyaktig
|
||||
labels:
|
||||
defaults:
|
||||
setting_default_content_type: Standardformat for innlegg
|
||||
setting_default_content_type_html: HTML
|
||||
setting_default_content_type_markdown: Markdown
|
||||
setting_default_content_type_plain: Ren tekst
|
||||
setting_show_followers_count: Vis følgerantallet deres
|
||||
setting_skin: Tema
|
||||
|
||||
@@ -1784,16 +1784,22 @@ cs:
|
||||
body: 'Uživatel %{name} vás zmínil v:'
|
||||
subject: Uživatel %{name} vás zmínil
|
||||
title: Nová zmínka
|
||||
moderation_warning:
|
||||
subject: Obdrželi jste moderační varování
|
||||
poll:
|
||||
subject: Anketa od %{name} skončila
|
||||
quote:
|
||||
body: 'Váš příspěvek citoval účet %{name}:'
|
||||
subject: "%{name} citovali váš příspěvek"
|
||||
title: Nová citace
|
||||
quoted_update:
|
||||
subject: "%{name} upravili příspěvek, který jste citovali"
|
||||
reblog:
|
||||
body: 'Uživatel %{name} boostnul váš příspěvek:'
|
||||
subject: Uživatel %{name} boostnul váš příspěvek
|
||||
title: Nový boost
|
||||
severed_relationships:
|
||||
subject: Ztratili jste spojení, kvůli moderačnímu rozhodnutí
|
||||
status:
|
||||
subject: Nový příspěvek od %{name}
|
||||
update:
|
||||
@@ -2267,3 +2273,5 @@ cs:
|
||||
not_supported: Tento prohlížeč nepodporuje bezpečnostní klíče
|
||||
otp_required: Pro použití bezpečnostních klíčů prosím nejprve zapněte dvoufázové ověřování.
|
||||
registered_on: Přidán %{date}
|
||||
wrapstodon:
|
||||
title: Wrapstodon %{year} pro %{name}
|
||||
|
||||
@@ -1054,7 +1054,7 @@ de:
|
||||
one: In den vergangenen 7 Tagen von einem Profil geteilt
|
||||
other: In den vergangenen 7 Tagen von %{count} Profilen geteilt
|
||||
title: Angesagte Links
|
||||
usage_comparison: Heute %{today}-mal und gestern %{yesterday}-mal geteilt
|
||||
usage_comparison: Heute %{today} × und gestern %{yesterday} × geteilt
|
||||
not_allowed_to_trend: Darf nicht trenden
|
||||
only_allowed: Nur Genehmigte
|
||||
pending_review: Überprüfung ausstehend
|
||||
@@ -1099,7 +1099,7 @@ de:
|
||||
trendable: In Trends erlaubt
|
||||
trending_rank: Platz %{rank}
|
||||
usable: In Beiträgen erlaubt
|
||||
usage_comparison: Heute %{today}-mal und gestern %{yesterday}-mal verwendet
|
||||
usage_comparison: Heute %{today} × und gestern %{yesterday} × verwendet
|
||||
used_by_over_week:
|
||||
one: In den vergangenen 7 Tagen von einem Profil verwendet
|
||||
other: In den vergangenen 7 Tagen von %{count} Profilen verwendet
|
||||
|
||||
@@ -1706,16 +1706,22 @@ et:
|
||||
body: "%{name} mainis sind:"
|
||||
subject: "%{name} mainis sind"
|
||||
title: Uus mainimine
|
||||
moderation_warning:
|
||||
subject: Su kasutajakonto on saanud moderaatoritelt hoiatuse
|
||||
poll:
|
||||
subject: "%{name} küsitlus lõppes"
|
||||
quote:
|
||||
body: "%{name} tsiteeris sinu postitust:"
|
||||
subject: "%{name} tsiteeris sinu postitust"
|
||||
title: Uus tsitaat
|
||||
quoted_update:
|
||||
subject: "%{name} on muutnud sinu poolt tsiteeritud postitust"
|
||||
reblog:
|
||||
body: "%{name} jagas edasi postitust:"
|
||||
subject: "%{name} jagas postitust"
|
||||
title: Uus jagamine
|
||||
severed_relationships:
|
||||
subject: Moderaatorite otsuse tõttu oled kaotanud jälgijaid ja jälgitavaid
|
||||
status:
|
||||
subject: "%{name} postitas äsja"
|
||||
update:
|
||||
@@ -2181,3 +2187,5 @@ et:
|
||||
not_supported: See veebilehitseja ei toeta turvavõtmeid
|
||||
otp_required: Turvavõtmete kasutamiseks tuleb eelnevalt sisse lülitada kaheastmeline autentimine.
|
||||
registered_on: Registreeritud %{date}
|
||||
wrapstodon:
|
||||
title: "%{year}. aasta Mastodoni kokkuvõte: %{name}"
|
||||
|
||||
@@ -2185,3 +2185,5 @@ fa:
|
||||
not_supported: این مرورگر از کلیدهای امنیتی پشتیبانی نمیکند
|
||||
otp_required: برای استفاده از کلیدهای امنیتی، لطفاً ابتدا تأیید هویت دو عاملی را به کار بیندازید.
|
||||
registered_on: ثبتشده در %{date}
|
||||
wrapstodon:
|
||||
title: خلاصهٔ ماستودون %{year} برای %{name}
|
||||
|
||||
@@ -79,7 +79,7 @@ fi:
|
||||
inbox_url: Postilaatikon URL-osoite
|
||||
invite_request_text: Syitä liittymiseen
|
||||
invited_by: Kutsuja
|
||||
ip: IP-osoite
|
||||
ip: IP-osoite
|
||||
joined: Liittynyt
|
||||
location:
|
||||
all: Kaikki
|
||||
@@ -569,8 +569,8 @@ fi:
|
||||
all: Kaikki
|
||||
clear: Tyhjennä toimitusvirheet
|
||||
failing: Epäonnistuva
|
||||
restart: Käynnistä toimitus uudelleen
|
||||
stop: Lopeta toimitus
|
||||
restart: Jatka toimitusta
|
||||
stop: Pysäytä toimitus
|
||||
unavailable: Ei saatavilla
|
||||
delivery_available: Toimitus on saatavilla
|
||||
delivery_error_days: Toimitusvirheen päivät
|
||||
@@ -616,14 +616,14 @@ fi:
|
||||
created_msg: Uusi IP-sääntö lisättiin onnistuneesti
|
||||
delete: Poista
|
||||
expires_in:
|
||||
'1209600': 2 viikkoa
|
||||
'15778476': 6 kuukautta
|
||||
'2629746': 1 kuukausi
|
||||
'31556952': 1 vuosi
|
||||
'86400': 1 päivä
|
||||
'94670856': 3 vuotta
|
||||
'1209600': 2 viikkoa
|
||||
'15778476': 6 kuukautta
|
||||
'2629746': 1 kuukausi
|
||||
'31556952': 1 vuosi
|
||||
'86400': 1 päivä
|
||||
'94670856': 3 vuotta
|
||||
new:
|
||||
title: Luo uusi IP-sääntö
|
||||
title: Luo uusi IP-sääntö
|
||||
no_ip_block_selected: IP-sääntöjä ei muutettu, koska yhtään ei ollut valittuna
|
||||
title: IP-säännöt
|
||||
relationships:
|
||||
|
||||
@@ -65,6 +65,7 @@ lt:
|
||||
demote: Pažeminti
|
||||
destroyed_msg: "%{username} duomenys dabar laukia eilėje, kad būtų netrukus ištrinti"
|
||||
disable: Sustabdyti
|
||||
disable_sign_in_token_auth: Išjungti el. pašto prieigos rakto tapatybės nustatymą
|
||||
disable_two_factor_authentication: Išjungti 2FA
|
||||
disabled: Pristabdyta
|
||||
display_name: Rodomas vardas
|
||||
@@ -73,6 +74,7 @@ lt:
|
||||
email: El. paštas
|
||||
email_status: El. pašto būsena
|
||||
enable: Panaikinti sustabdymą
|
||||
enable_sign_in_token_auth: Įjungti el. pašto prieigos rakto tapatybės nustatymą
|
||||
enabled: Įjungta
|
||||
enabled_msg: Sėkmingai %{username} paskyros sustabdymas panaikintas
|
||||
followers: Sekėjai
|
||||
@@ -139,13 +141,14 @@ lt:
|
||||
resubscribe: Prenumeruoti iš naujo
|
||||
role: Vaidmuo
|
||||
search: Ieškoti
|
||||
search_same_email_domain: Kiti naudotojai su tuo pačiu el. pašto domenu
|
||||
search_same_ip: Kiti naudotojai su tuo pačiu IP
|
||||
security: Saugumas
|
||||
security_measures:
|
||||
only_password: Tik slaptažodis
|
||||
password_and_2fa: Slaptažodis ir 2FA
|
||||
sensitive: Priversti žymėti kaip jautrią
|
||||
sensitized: Pažymėta kaip jautri
|
||||
sensitive: Priversti žymėti kaip su jautria informacija
|
||||
sensitized: Pažymėti kaip jautrią informaciją
|
||||
shared_inbox_url: Bendras gautiejų URL
|
||||
show:
|
||||
created_reports: Sukurtos ataskaitos
|
||||
@@ -163,7 +166,7 @@ lt:
|
||||
unblock_email: Atblokuoti el. pašto adresą
|
||||
unblocked_email_msg: Sėkmingai atblokuotas %{username} el. pašto adresas.
|
||||
unconfirmed_email: Nepatvirtintas el. pašto adresas.
|
||||
undo_sensitized: Atšaukti privertimą žymėti kaip jautrią
|
||||
undo_sensitized: Atšaukti privertimą žymėti kaip jautrią informaciją
|
||||
undo_silenced: Atšaukti ribojimą
|
||||
undo_suspension: Atšaukti pristabdymą
|
||||
unsilenced_msg: Sėkmingai atšauktas %{username} paskyros ribojimas.
|
||||
@@ -179,13 +182,16 @@ lt:
|
||||
approve_appeal: Patvirtinti apeliaciją
|
||||
approve_user: Patvirtinti naudotoją
|
||||
assigned_to_self_report: Priskirti ataskaitą
|
||||
change_email_user: Keisti el. paštą vartotjui
|
||||
change_role_user: Keisti naudotojo vaidmenį
|
||||
confirm_user: Patvirtinti naudotoją
|
||||
create_account_warning: Kurti įspėjimą
|
||||
create_announcement: Kurti skelbimą
|
||||
create_canonical_email_block: Sukurti el. pašto blokavimą
|
||||
create_custom_emoji: Kurti pasirinktinį jaustuką
|
||||
create_domain_allow: Kurti domeno leidimą
|
||||
create_domain_block: Kurti domeno bloką
|
||||
create_email_domain_block: Sukurti el. pašto domeno blokavimą
|
||||
create_ip_block: Kurti IP taisyklę
|
||||
create_relay: Kurti perdavimą
|
||||
create_unavailable_domain: Kurti nepasiekiamą domeną
|
||||
@@ -193,9 +199,11 @@ lt:
|
||||
create_username_block: Kurti naudotojo vardo taisyklę
|
||||
demote_user: Pažeminti naudotoją
|
||||
destroy_announcement: Ištrinti skelbimą
|
||||
destroy_canonical_email_block: Ištrinti el. pašto blokavimą
|
||||
destroy_custom_emoji: Ištrinti pasirinktinį jaustuką
|
||||
destroy_domain_allow: Ištrinti domeno leidimą
|
||||
destroy_domain_block: Ištrinti domeno bloką
|
||||
destroy_email_domain_block: Ištrinti el. pašto domeno blokavimą
|
||||
destroy_instance: Išvalyti domeną
|
||||
destroy_ip_block: Ištrinti IP taisyklę
|
||||
destroy_relay: Ištrinti perdavimą
|
||||
@@ -206,6 +214,7 @@ lt:
|
||||
disable_2fa_user: Išjungti 2FA
|
||||
disable_custom_emoji: Išjungti pasirinktinį jaustuką
|
||||
disable_relay: Išjungti perdavimą
|
||||
disable_sign_in_token_auth_user: Išjungti el. pašto prieigos rakto tapatybės nustatymą naudotojui
|
||||
disable_user: Išjungti naudotoją
|
||||
enable_custom_emoji: Įjungti pasirinktinį jaustuką
|
||||
enable_relay: Įjungti perdavimą
|
||||
@@ -220,12 +229,12 @@ lt:
|
||||
resend_user: Iš naujo siųsti patvirtinimo laišką
|
||||
reset_password_user: Nustatyti iš naujo slaptažodį
|
||||
resolve_report: Išspręsti ataskaitą
|
||||
sensitive_account: Priversti žymėti kaip jautrią paskyrai
|
||||
sensitive_account: Nustatyti kaip jautrios informacijos paskyrą
|
||||
silence_account: Riboti paskyrą
|
||||
suspend_account: Pristabdyti paskyrą
|
||||
unassigned_report: Panaikinti priskyrimą ataskaitą
|
||||
unblock_email_account: Atblokuoti el. pašto adresą
|
||||
unsensitive_account: Atšaukti privertimą žymėti kaip jautrią paskyrai
|
||||
unsensitive_account: Atšaukti privertimą žymėti kaip jautrios informacijos paskyrą
|
||||
unsilence_account: Atšaukti riboti paskyrą
|
||||
unsuspend_account: Atšaukti paskyros pristabdymą
|
||||
update_announcement: Atnaujinti skelbimą
|
||||
@@ -459,9 +468,19 @@ lt:
|
||||
new:
|
||||
title: Importuoti domeno blokavimus
|
||||
no_file: Nėra pasirinkto failo
|
||||
fasp:
|
||||
providers:
|
||||
sign_in: Prisijungti
|
||||
title: Fediverse Auxiliary Service tiekėjai
|
||||
title: FAST
|
||||
follow_recommendations:
|
||||
description_html: "<strong>Rekomendacijos padeda naujiems vartotojams greitai rasti įdomų turinį</strong>. Kai vartotojas nėra pakankamai bendravęs su kitais, kad būtų galima suformuoti asmeninį turinį, vietoj to rekomenduojami šios paskyros. Jos perskaičiuojamos kasdien, remiantis kas pastaruoju metu sulaukė didžiausio susidomėjimo ir turi daugiausiai vietinių sekėjų tam tikra kalba."
|
||||
language: Kalbui
|
||||
status: Būsena
|
||||
suppress: Slėpti rekomendacijas
|
||||
suppressed: Paslėpta
|
||||
title: Sekti rekomendacijas
|
||||
unsuppress: Atkurti rekomendaciją
|
||||
instances:
|
||||
audit_log:
|
||||
title: Naujausi audito žurnalai
|
||||
@@ -502,6 +521,8 @@ lt:
|
||||
expired: Nebegaliojantis
|
||||
title: Filtras
|
||||
title: Kvietimai
|
||||
ip_blocks:
|
||||
delete: Ištrinti
|
||||
relays:
|
||||
add_new: Pridėti naują pamainą
|
||||
delete: Ištrinti
|
||||
@@ -564,7 +585,7 @@ lt:
|
||||
invite_users_description: Leidžia naudotojams pakviesti naujus žmones į serverį.
|
||||
manage_invites: Tvarkyti kvietimus
|
||||
manage_invites_description: Leidžia naudotojams naršyti ir deaktyvuoti kvietimų nuorodas.
|
||||
manage_taxonomies_description: Leidžia naudotojams peržiūrėti tendencingą turinį ir atnaujinti saitažodžių nustatymus
|
||||
manage_taxonomies_description: Leidžia naudotojams peržiūrėti tendencingą turinį ir atnaujinti grotažymių nustatymus
|
||||
settings:
|
||||
branding:
|
||||
title: Firminio ženklo kūrimas
|
||||
@@ -661,7 +682,8 @@ lt:
|
||||
open: Peržiūrėti viešai
|
||||
reset: Atkurti
|
||||
search: Paieška
|
||||
title: Saitažodžiai
|
||||
title: Grotažymė
|
||||
updated_msg: Grotažymės nustatymai sėkmingai atnaujinti
|
||||
terms_of_service:
|
||||
back: Atgal į paslaugų sąlygas
|
||||
changelog: Kas pasikeitė
|
||||
@@ -749,9 +771,10 @@ lt:
|
||||
tag_servers_dimension: Populiariausi serveriai
|
||||
tag_servers_measure: skirtingi serveriai
|
||||
tag_uses_measure: bendri naudojimai
|
||||
description_html: Tai yra grotažymės, kurios šiuo metu dažnai pasirodo daugelyje jūsų serverio matomų įrašų. Tai gali padėti jūsų vartotojams sužinoti, apie ką žmonės šiuo metu kalba daugiausiai. Grotažymės nėra rodomos viešai, kol jūs jų nepatvirtinate.
|
||||
listable: Gali būti siūloma
|
||||
not_trendable: Nepasirodys tendencijose
|
||||
title: Tendencingos saitažodžiai
|
||||
title: Populiarios grotažymės
|
||||
trendable: Gali pasirodyti tendencijose
|
||||
trending_rank: 'Tendencinga #%{rank}'
|
||||
title: Rekomendacijos ir tendencijos
|
||||
@@ -806,10 +829,12 @@ lt:
|
||||
new_trending_statuses:
|
||||
title: Tendencingi įrašai
|
||||
new_trending_tags:
|
||||
title: Tendencingos saitažodžiai
|
||||
title: Populiarios grotažymės
|
||||
subject: Naujos tendencijos peržiūrimos %{instance}
|
||||
appearance:
|
||||
animations_and_accessibility: Animacijos ir pritaikymas neįgaliesiems
|
||||
boosting_preferences: Pasidalinimo nustatymai
|
||||
boosting_preferences_info_html: "<strong>Patarimas:</strong> Nepriklausomai nuo nustatymų, <kbd>Shift</kbd> + <kbd>Click</kbd> ant %{icon} Dalintis ikonos iš karto pasidalins įrašu."
|
||||
discovery: Atradimas
|
||||
localization:
|
||||
body: Mastodon verčia savanoriai.
|
||||
@@ -971,7 +996,7 @@ lt:
|
||||
storage: Medijos saugykla
|
||||
featured_tags:
|
||||
add_new: Pridėti naują
|
||||
hint_html: "<strong>Savo profilyje parodyk svarbiausius saitažodžius.</strong> Tai puikus įrankis kūrybiniams darbams ir ilgalaikiams projektams sekti, todėl svarbiausios saitažodžiai rodomi matomoje vietoje profilyje ir leidžia greitai pasiekti tavo paties įrašus."
|
||||
hint_html: "<strong>Savo profilyje parodyk svarbiausias grotažymes.</strong> Tai puikus įrankis kūrybiniams darbams ir ilgalaikiams projektams sekti, todėl svarbiausios grotažymės rodomos matomoje vietoje profilyje ir leidžia greitai pasiekti tavo paties įrašus."
|
||||
filters:
|
||||
contexts:
|
||||
account: Profiliai
|
||||
@@ -996,7 +1021,7 @@ lt:
|
||||
changes_saved_msg: Pakeitimai sėkmingai išsaugoti!
|
||||
copy: Kopijuoti
|
||||
delete: Ištrinti
|
||||
deselect: Panaikinti visus žymėjimus
|
||||
deselect: Atžymėti visus
|
||||
order_by: Tvarkyti pagal
|
||||
save_changes: Išsaugoti pakeitimus
|
||||
today: šiandien
|
||||
@@ -1050,6 +1075,9 @@ lt:
|
||||
title: Tapatybės nustatymo istorija
|
||||
mail_subscriptions:
|
||||
unsubscribe:
|
||||
emails:
|
||||
notification_emails:
|
||||
reblog: dalintis pranešimų el. pašto laiškais
|
||||
success_html: Daugiau negausi %{type} „Mastodon“ domene %{domain} į savo el. paštą %{email}.
|
||||
media_attachments:
|
||||
validations:
|
||||
@@ -1087,9 +1115,9 @@ lt:
|
||||
subject: "%{name} paminėjo jūsų įrašą"
|
||||
title: Naujas paminėjimas
|
||||
reblog:
|
||||
body: 'Tavo įrašą pakėlė %{name}:'
|
||||
subject: "%{name} pakėlė tavo įrašą"
|
||||
title: Naujas pakėlimas
|
||||
body: 'Tavo įrašą dalinosi %{name}:'
|
||||
subject: "%{name} dalinosi tavo įrašu"
|
||||
title: Naujas dalinimasis
|
||||
notifications:
|
||||
administration_emails: Administratoriaus el. laiško pranešimai
|
||||
email_events: Įvykiai, skirti el. laiško pranešimams
|
||||
@@ -1144,6 +1172,9 @@ lt:
|
||||
status: Paskyros būsena
|
||||
remote_follow:
|
||||
missing_resource: Jūsų paskyros nukreipimo URL nerasta
|
||||
rss:
|
||||
descriptions:
|
||||
tag: 'Vieši įrašai su grotažymėmis #%{hashtag}'
|
||||
scheduled_statuses:
|
||||
over_daily_limit: Jūs pasieketė limitą (%{limit}) galimų toot'ų per dieną
|
||||
over_total_limit: Jūs pasieketė %{limit} limitą galimų toot'ų
|
||||
@@ -1187,7 +1218,7 @@ lt:
|
||||
development: Kūrimas
|
||||
edit_profile: Redaguoti profilį
|
||||
export: Eksportuoti
|
||||
featured_tags: Rodomi saitažodžiai
|
||||
featured_tags: Išskirtos grotažymės
|
||||
import: Importuoti
|
||||
import_and_export: Importas ir eksportas
|
||||
migrate: Paskyros migracija
|
||||
@@ -1215,7 +1246,7 @@ lt:
|
||||
many: "%{count} vaizdo"
|
||||
one: "%{count} vaizdas"
|
||||
other: "%{count} vaizdų"
|
||||
boosted_from_html: Pakelta iš %{acct_link}
|
||||
boosted_from_html: Dalintasi iš %{acct_link}
|
||||
content_warning: 'Turinio įspėjimas: %{warning}'
|
||||
errors:
|
||||
quoted_status_not_found: Įrašas, kurį bandote cituoti, atrodo, neegzistuoja.
|
||||
@@ -1224,7 +1255,7 @@ lt:
|
||||
pin_errors:
|
||||
limit: Jūs jau prisegėte maksimalų toot'ų skaičų
|
||||
ownership: Kitų vartotojų toot'ai negali būti prisegti
|
||||
reblog: Pakeltos žinutės negali būti prisegtos
|
||||
reblog: Žinutės, kuriomis pasidalinta, negali būti papildomai prisegtos
|
||||
quote_error:
|
||||
not_available: Įrašas nepasiekiamas
|
||||
pending_approval: Įrašas peržiūrimas
|
||||
@@ -1239,20 +1270,23 @@ lt:
|
||||
public: Vieša
|
||||
statuses_cleanup:
|
||||
enabled_hint: Automatiškai ištrina įrašus, kai jie pasiekia nustatytą amžiaus ribą, nebent jie atitinka vieną iš toliau nurodytų išimčių
|
||||
ignore_reblogs: Ignoruoti pasidalinimus
|
||||
interaction_exceptions_explanation: Atkreipk dėmesį, kad negarantuojama, jog įrašai nebus ištrinti, jei jų mėgstamumo ar pasidalinimo riba bus žemesnė, nors vieną kartą ji jau buvo viršyta.
|
||||
keep_polls_hint: Neištrina jokių tavo apklausų
|
||||
keep_self_bookmark: Laikyti įrašus, kuriuos pažymėjai
|
||||
keep_self_bookmark: Laikyti įrašus, kuriuos pažymėjai su žyma
|
||||
keep_self_bookmark_hint: Neištrina tavo pačių įrašų, jei esi juos pažymėjęs (-usi)
|
||||
keep_self_fav_hint: Neištrina tavo pačių įrašų, jei esi juos pamėgęs (-usi)
|
||||
min_age_label: Amžiaus riba
|
||||
min_reblogs: Pasidalintus įrašus laikyti bent
|
||||
min_reblogs_hint: Neištrina jokių jūsų įrašų, kuriais buvo dalintasi bent tiek kartų. Palikite tuščią laukelį, jei norite ištrinti pasidalitus įrašus, nepriklausomai nuo jų paskelbimų skaičiaus
|
||||
stream_entries:
|
||||
sensitive_content: Jautrus turinys
|
||||
terms_of_service:
|
||||
title: Paslaugų sąlygos
|
||||
themes:
|
||||
contrast: Mastodon (didelis kontrastas)
|
||||
default: Mastodon (tamsi)
|
||||
mastodon-light: Mastodon (šviesi)
|
||||
default: Mastodon (Tamsus)
|
||||
mastodon-light: Mastodon (Šviesus)
|
||||
system: Automatinis (naudoti sistemos temą)
|
||||
two_factor_authentication:
|
||||
add: Pridėti
|
||||
@@ -1337,8 +1371,8 @@ lt:
|
||||
follows_title: Ką sekti
|
||||
follows_view_more: Peržiūrėti daugiau sekamų žmonių
|
||||
hashtags_subtitle: Naršyk, kas tendencinga per pastarąsias 2 dienas
|
||||
hashtags_title: Tendencingos saitažodžiai
|
||||
hashtags_view_more: Peržiūrėti daugiau tendencingų saitažodžių
|
||||
hashtags_title: Populiarios grotažymės
|
||||
hashtags_view_more: Peržiūrėti daugiau populiarių grotažymių
|
||||
post_action: Sukurti
|
||||
post_step: Sakyk labas pasauliui tekstu, nuotraukomis, vaizdo įrašais arba apklausomis.
|
||||
post_title: Sukūrk savo pirmąjį įrašą
|
||||
|
||||
@@ -1424,6 +1424,70 @@ nan:
|
||||
statuses: 個別ê PO文
|
||||
statuses_hint_html: Tsit ê過濾器應用佇所揀ê個別ê PO文,毋管in敢有符合下kha ê關鍵字<a href="%{path}">重頭看,á是kā PO文tuì tsit ê過濾器suá掉</a>。
|
||||
title: 編輯過濾器
|
||||
errors:
|
||||
deprecated_api_multiple_keywords: Tsiah ê參數bē當tuì tsit ê應用程式改,因為in應用超過tsi̍t个過濾關鍵字。請用khah新ê應用程式,á是網頁界面。
|
||||
invalid_context: 無提供內文á是內文無效
|
||||
index:
|
||||
contexts: "%{contexts} 內底ê過濾器"
|
||||
delete: Thâi掉
|
||||
empty: Lí bô半个過濾器。
|
||||
expires_in: 佇 %{distance} kàu期
|
||||
expires_on: 佇 %{date} kàu期
|
||||
keywords:
|
||||
other: "%{count} ê關鍵字"
|
||||
statuses:
|
||||
other: "%{count} 篇PO文"
|
||||
statuses_long:
|
||||
other: "%{count} 篇khàm掉ê個別PO文"
|
||||
title: 過濾器
|
||||
new:
|
||||
save: 儲存新ê過濾器
|
||||
title: 加新ê過濾器
|
||||
statuses:
|
||||
back_to_filter: 轉去過濾器
|
||||
batch:
|
||||
remove: Tuì過濾器內suá掉
|
||||
index:
|
||||
hint: Tsit ê過濾器應用kàu所揀ê個別PO文,無論敢有其他ê條件。Lí ē當tuì網頁界面加koh khah tsē PO文kàu tsit ê過濾器。
|
||||
title: 過濾ê PO文
|
||||
generic:
|
||||
all: 全部
|
||||
all_items_on_page_selected_html:
|
||||
other: Tsit頁ê %{count} ê項目有揀ah。
|
||||
all_matching_items_selected_html:
|
||||
other: 符合lí ê tshiau-tshuē ê %{count} ê項目有揀ah。
|
||||
cancel: 取消
|
||||
changes_saved_msg: 改變儲存成功!
|
||||
confirm: 確認
|
||||
copy: Khóo-pih
|
||||
delete: Thâi掉
|
||||
deselect: 取消lóng揀
|
||||
none: 無
|
||||
order_by: 排列照
|
||||
save_changes: 儲存改變
|
||||
select_all_matching_items:
|
||||
other: 揀 %{count} ê符合lí所tshiau-tshuē ê項目。
|
||||
today: 今á日
|
||||
validation_errors:
|
||||
other: 干焦iáu有狀況!請看下kha ê %{count} 項錯誤。
|
||||
imports:
|
||||
errors:
|
||||
empty: 空ê CSV檔案
|
||||
incompatible_type: Kap所揀ê輸入類型無配合
|
||||
invalid_csv_file: 無效ê CSV檔案。錯誤:%{error}
|
||||
over_rows_processing_limit: 包含超過 %{count} tsuā
|
||||
too_large: 檔案siunn大
|
||||
failures: 失敗
|
||||
imported: 輸入ah
|
||||
mismatched_types_warning: Lí ká-ná kā輸入類型揀毋著,請koh確認。
|
||||
modes:
|
||||
merge: 合併
|
||||
merge_long: 保存已經有ê記錄,koh加新ê
|
||||
overwrite: Khàm掉
|
||||
overwrite_long: 用新ê記錄khàm掉tann ê
|
||||
overwrite_preambles:
|
||||
blocking_html:
|
||||
other: Lí teh-beh用 <strong>%{filename}</strong> ê <strong>%{count} ê口座</strong>,<strong>替換lí ê封鎖列單</strong>。
|
||||
scheduled_statuses:
|
||||
too_soon: Tio̍h用未來ê日期。
|
||||
statuses:
|
||||
|
||||
@@ -2185,3 +2185,5 @@ nl:
|
||||
not_supported: Deze browser ondersteunt geen beveiligingssleutels
|
||||
otp_required: Om beveiligingssleutels te kunnen gebruiken, moet je eerst tweestapsverificatie inschakelen.
|
||||
registered_on: Geregistreerd op %{date}
|
||||
wrapstodon:
|
||||
title: Wrapstodon %{year} voor %{name}
|
||||
|
||||
@@ -40,14 +40,14 @@ de:
|
||||
text: Du kannst nur einmal Einspruch gegen eine Maßnahme einlegen
|
||||
defaults:
|
||||
autofollow: Personen, die sich über deine Einladung registrieren, folgen automatisch deinem Profil
|
||||
avatar: WEBP, PNG, GIF oder JPG. Höchstens %{size} groß. Wird auf %{dimensions} px verkleinert
|
||||
avatar: WebP, PNG, GIF oder JPG. Höchstens %{size} groß. Wird auf %{dimensions} px verkleinert
|
||||
bot: Signalisiert, dass dieses Konto hauptsächlich automatisierte Aktionen durchführt und möglicherweise nicht persönlich betreut wird
|
||||
context: Orte, an denen der Filter aktiv sein soll
|
||||
current_password: Gib aus Sicherheitsgründen bitte das Passwort des aktuellen Kontos ein
|
||||
current_username: Um das zu bestätigen, gib den Profilnamen des aktuellen Kontos ein
|
||||
digest: Wenn du eine längere Zeit inaktiv bist oder du während deiner Abwesenheit in einer privaten Nachricht erwähnt worden bist
|
||||
email: Du wirst eine E-Mail zur Verifizierung dieser E-Mail-Adresse erhalten
|
||||
header: WEBP, PNG, GIF oder JPG. Höchstens %{size} groß. Wird auf %{dimensions} px verkleinert
|
||||
header: WebP, PNG, GIF oder JPG. Höchstens %{size} groß. Wird auf %{dimensions} px verkleinert
|
||||
inbox_url: Kopiere die URL von der Startseite des gewünschten Relais
|
||||
irreversible: Bereinigte Beiträge verschwinden unwiderruflich für dich, auch dann, wenn dieser Filter zu einem späteren wieder entfernt wird
|
||||
locale: Die Sprache der Bedienoberfläche, E-Mails und Push-Benachrichtigungen
|
||||
@@ -86,13 +86,13 @@ de:
|
||||
warn: Den gefilterten Beitrag hinter einer Warnung, die den Filtertitel beinhaltet, ausblenden
|
||||
form_admin_settings:
|
||||
activity_api_enabled: Anzahl der wöchentlichen Beiträge, aktiven Profile und Registrierungen auf diesem Server
|
||||
app_icon: WEBP, PNG, GIF oder JPG. Überschreibt das Standard-App-Symbol auf mobilen Geräten mit einem eigenen Symbol.
|
||||
app_icon: WebP, PNG, GIF oder JPG. Überschreibt das Standard-App-Symbol auf mobilen Geräten mit einem eigenen Symbol.
|
||||
backups_retention_period: Nutzer*innen haben die Möglichkeit, Archive ihrer Beiträge zu erstellen, die sie später herunterladen können. Wenn ein positiver Wert gesetzt ist, werden diese Archive nach der festgelegten Anzahl von Tagen automatisch aus deinem Speicher gelöscht.
|
||||
bootstrap_timeline_accounts: Diese Konten werden an den Anfang der Follow-Empfehlungen für neue Nutzer angeheftet. Gib eine durch Kommata getrennte Liste von Konten an.
|
||||
closed_registrations_message: Wird angezeigt, wenn Registrierungen deaktiviert sind
|
||||
content_cache_retention_period: Sämtliche Beiträge von anderen Servern (einschließlich geteilte Beiträge und Antworten) werden, unabhängig von der Interaktion der lokalen Nutzer*innen mit diesen Beiträgen, nach der festgelegten Anzahl von Tagen gelöscht. Das betrifft auch Beiträge, die von lokalen Nutzer*innen favorisiert oder als Lesezeichen gespeichert wurden. Private Erwähnungen zwischen Nutzer*innen von verschiedenen Servern werden ebenfalls verloren gehen und können nicht wiederhergestellt werden. Diese Option richtet sich ausschließlich an Server mit speziellen Zwecken und wird die allgemeine Nutzungserfahrung beeinträchtigen, wenn sie für den allgemeinen Gebrauch aktiviert ist.
|
||||
custom_css: Du kannst eigene Stylesheets für das Webinterface von Mastodon verwenden.
|
||||
favicon: WEBP, PNG, GIF oder JPG. Überschreibt das Standard-Mastodon-Favicon mit einem eigenen Symbol.
|
||||
favicon: WebP, PNG, GIF oder JPG. Überschreibt das Standard-Mastodon-Favicon mit einem eigenen Favicon.
|
||||
landing_page: Legt fest, welche Seite neue Besucher*innen sehen, wenn sie zum ersten Mal auf deinem Server ankommen. Für „Trends“ müssen die Trends in den Entdecken-Einstellungen aktiviert sein. Für „Lokaler Feed“ muss „Zugriff auf Live-Feeds, die lokale Beiträge beinhalten“ in den Entdecken-Einstellungen auf „Alle“ gesetzt werden.
|
||||
mascot: Überschreibt die Abbildung im erweiterten Webinterface.
|
||||
media_cache_retention_period: Mediendateien aus Beiträgen von externen Nutzer*innen werden auf deinem Server zwischengespeichert. Wenn ein positiver Wert gesetzt ist, werden die Medien nach der festgelegten Anzahl von Tagen gelöscht. Sollten die Medien nach dem Löschvorgang wieder angefragt werden, werden sie erneut heruntergeladen, sofern der ursprüngliche Inhalt noch vorhanden ist. Es wird empfohlen, diesen Wert auf mindestens 14 Tage festzulegen, da die Häufigkeit der Abfrage von Linkvorschaukarten für Websites von Dritten begrenzt ist und die Linkvorschaukarten sonst nicht vor Ablauf dieser Zeit aktualisiert werden.
|
||||
@@ -229,7 +229,7 @@ de:
|
||||
locale: Sprache des Webinterface
|
||||
max_uses: Maximale Anzahl von Verwendungen
|
||||
new_password: Neues Passwort
|
||||
note: Biografie
|
||||
note: Über mich
|
||||
otp_attempt: Zwei-Faktor-Authentisierung
|
||||
password: Passwort
|
||||
phrase: Wort oder Formulierung
|
||||
|
||||
@@ -65,7 +65,7 @@ fa:
|
||||
setting_display_media_hide_all: همیشه همهٔ عکسها و ویدیوها را پنهان کن
|
||||
setting_display_media_show_all: همیشه تصویرهایی را که به عنوان حساس علامت زده شدهاند را نشان بده
|
||||
setting_emoji_style: چگونگی نمایش شکلکها. «خودکار» تلاش خواهد کرد از شکلکهای بومی استفاده کند؛ ولی برای مرورگرهای قدیمی به توییموجی برخواهد گشت.
|
||||
setting_quick_boosting_html: هنگام به کار افتادن زدن روی %{boost_icon} نقشک تقویت به جای گشودن فهرست پایین افتادنی تقویت و نقل، بلافاصله تقویت خواهد کرد. کنش نقل قول را به فهرست %{options_icon} (گزینهها) منتقل میکند.
|
||||
setting_quick_boosting_html: هنگام به کار افتادن، زدن روی %{boost_icon} نقشک تقویت به جای گشودنِ فهرست پایین افتادنی تقویت و نقل، بلافاصله تقویت خواهد کرد. کنشِ نقل قول را به فهرست %{options_icon} (گزینهها) منتقل میکند.
|
||||
setting_system_scrollbars_ui: فقط برای مرورگرهای دسکتاپ مبتنی بر سافاری و کروم اعمال می شود
|
||||
setting_use_blurhash: سایهها بر اساس رنگهای بهکاررفته در تصویر پنهانشده ساخته میشوند ولی جزئیات تصویر در آنها آشکار نیست
|
||||
setting_use_pending_items: به جای پیشرفتن خودکار در فهرست، بهروزرسانی فهرست نوشتهها را پشت یک کلیک پنهان کن
|
||||
@@ -237,7 +237,7 @@ fa:
|
||||
setting_aggregate_reblogs: تقویتها را در خطزمانی گروهبندی کن
|
||||
setting_always_send_emails: فرستادن همیشگی آگاهیهای رایانامهای
|
||||
setting_auto_play_gif: پخش خودکار تصویرهای متحرک
|
||||
setting_boost_modal: واپایش نمایانی توثیت
|
||||
setting_boost_modal: واپایش نمایانی تقویت
|
||||
setting_default_language: زبان نوشتههای شما
|
||||
setting_default_privacy: نمایانی فرسته
|
||||
setting_default_quote_policy: افراد مجاز به نقل
|
||||
|
||||
@@ -8,7 +8,7 @@ lt:
|
||||
display_name: Tavo pilnas vardas arba smagus vardas.
|
||||
fields: Tavo pagrindinis puslapis, įvardžiai, amžius, bet kas, ko tik nori.
|
||||
indexable: Tavo vieši įrašai gali būti rodomi Mastodon paieškos rezultatuose. Žmonės, kurie bendravo su tavo įrašais, gali jų ieškoti nepriklausomai nuo to.
|
||||
note: 'Gali @paminėti kitus žmones arba #saitažodžius.'
|
||||
note: 'Gali @paminėti kitus žmones arba #grotažymes.'
|
||||
show_collections: Žmonės galės peržiūrėti tavo sekimus ir sekėjus. Žmonės, kuriuos seki, matys, kad juos seki, nepaisant to.
|
||||
unlocked: Žmonės galės jus sekti nepaprašę patvirtinimo. Panaikinkite žymėjimą, jei norite peržiūrėti sekimo prašymus ir pasirinkti, ar priimti, ar atmesti naujus sekėjus.
|
||||
account_alias:
|
||||
@@ -55,8 +55,9 @@ lt:
|
||||
phrase: Bus suderinta, neatsižvelgiant į teksto lygį arba įrašo turinio įspėjimą
|
||||
scopes: Prie kurių API programai bus leidžiama pasiekti. Pasirinkus aukščiausio lygio sritį, atskirų sričių pasirinkti nereikia.
|
||||
setting_advanced_layout: Rodykite „Mastodon“ kaip kelių stulpelių išdėstymą, leidžiantį peržiūrėti įrašų srautą, pranešimus ir trečiąjį stulpelį pagal savo pasirinkimą. Nerekomenduojama mažesniems ekranams.
|
||||
setting_aggregate_reblogs: Nerodyti naujų pakėlimų įrašams, kurie neseniai buvo pakelti (taikoma tik naujai gautiems pakėlimams).
|
||||
setting_aggregate_reblogs: Neberodyti naujų pasidalinimų įrašais, kuriais neseniai buvo pasidalinta (taikoma tik naujai daromiems pasidalinimams)
|
||||
setting_always_send_emails: Paprastai el. laiško pranešimai nebus siunčiami, kai aktyviai naudoji Mastodon.
|
||||
setting_boost_modal: Kai ši funkcija įjungta, pasidalijant įrašu pirmiausia atsivers patvirtinimo langas, kuriame galėsite pakeisti savo pasidalijimo matomumo nustatymus.
|
||||
setting_default_quote_policy_private: Tik sekėjams skirti įrašai, paskelbti platformoje „Mastodon“, negali būti cituojami kitų.
|
||||
setting_default_quote_policy_unlisted: Kai žmonės jus cituos, jų įrašai taip pat bus paslėpti iš populiariausių naujienų srauto.
|
||||
setting_default_sensitive: Jautrioji medija pagal numatytuosius nustatymus yra paslėpta ir gali būti atskleista spustelėjus.
|
||||
@@ -70,10 +71,12 @@ lt:
|
||||
setting_use_pending_items: Slėpti laiko skalės naujienas po paspaudimo, vietoj automatinio srauto slinkimo.
|
||||
username: Gali naudoti raides, skaičius ir pabraukimus
|
||||
whole_word: Kai raktažodis ar frazė yra tik raidinis ir skaitmeninis, jis bus taikomas tik tada, jei atitiks visą žodį
|
||||
domain_allow:
|
||||
domain: Nurodytas domenas galės gauti duomenis iš šio serverio ir iš jo gaunami duomenys bus apdorojami ir saugomi
|
||||
email_domain_block:
|
||||
with_dns_records: Bus bandoma išspręsti nurodyto domeno DNS įrašus, o rezultatai taip pat bus blokuojami
|
||||
featured_tag:
|
||||
name: 'Štai keletas pastaruoju metu dažniausiai saitažodžių, kurių tu naudojai:'
|
||||
name: 'Štai keletas pastaruoju metu dažniausiai tavo naudotų grotažymių:'
|
||||
filters:
|
||||
actions:
|
||||
blur: Slėpti mediją po įspėjimu, neslepiant paties teksto
|
||||
@@ -94,8 +97,9 @@ lt:
|
||||
site_contact_email: Kaip žmonės gali su tavimi susisiekti teisiniais ar pagalbos užklausimais.
|
||||
site_contact_username: Kaip žmonės gali tave pasiekti Mastodon.
|
||||
site_extended_description: Bet kokia papildoma informacija, kuri gali būti naudinga lankytojams ir naudotojams. Gali būti struktūrizuota naudojant Markdown sintaksę.
|
||||
theme: Tema, kurią mato atsijungę lankytojai ir nauji vartotojai.
|
||||
thumbnail: Maždaug 2:1 dydžio vaizdas, rodomas šalia tavo serverio informacijos.
|
||||
trends: Trendai rodo, kurios įrašai, saitažodžiai ir naujienų istorijos tavo serveryje sulaukia didžiausio susidomėjimo.
|
||||
trends: Tendencijos rodo, kurie įrašai, grotažymės ir naujienų istorijos tavo serveryje sulaukia didžiausio susidomėjimo.
|
||||
imports:
|
||||
data: CSV failas, eksportuotas iš kito „Mastodon“ serverio.
|
||||
invite_request:
|
||||
@@ -140,6 +144,11 @@ lt:
|
||||
title: Pavadinimas
|
||||
admin_account_action:
|
||||
include_statuses: Įtraukti praneštus įrašus į el. laišką
|
||||
type: Veiksmas
|
||||
types:
|
||||
disable: Sustabdyti
|
||||
none: Siųsti įspėjimą
|
||||
sensitive: Jautrus(-i)
|
||||
defaults:
|
||||
autofollow: Kviesti sekti tavo paskyrą
|
||||
avatar: Profilio nuotrauka
|
||||
@@ -161,6 +170,7 @@ lt:
|
||||
setting_aggregate_reblogs: Grupuoti pakėlimus laiko skalėse
|
||||
setting_always_send_emails: Visada siųsti el. laiško pranešimus
|
||||
setting_auto_play_gif: Automatiškai leisti animuotų GIF
|
||||
setting_boost_modal: Kontroliuoti pasidalijimų matomumo nustatymus
|
||||
setting_default_language: Skelbimo kalba
|
||||
setting_default_quote_policy: Kas gali cituoti
|
||||
setting_default_sensitive: Visada žymėti mediją kaip jautrią
|
||||
@@ -172,6 +182,7 @@ lt:
|
||||
setting_emoji_style: Jaustuko stilius
|
||||
setting_expand_spoilers: Visada išplėsti įrašus, pažymėtus turinio įspėjimais
|
||||
setting_hide_network: Slėpti savo socialinę diagramą
|
||||
setting_quick_boosting: Įjunkite greitą pasidalinimą
|
||||
setting_reduce_motion: Sumažinti judėjimą animacijose
|
||||
setting_system_font_ui: Naudoti numatytąjį sistemos šriftą
|
||||
setting_system_scrollbars_ui: Naudoti numatytąją sistemos slankjuostę
|
||||
@@ -187,7 +198,7 @@ lt:
|
||||
email_domain_block:
|
||||
with_dns_records: Įtraukti MX įrašus ir domeno IP adresus
|
||||
featured_tag:
|
||||
name: Saitažodis
|
||||
name: Grotažymė
|
||||
filters:
|
||||
actions:
|
||||
blur: Slėpti mediją su įspėjimu
|
||||
@@ -200,9 +211,11 @@ lt:
|
||||
content_cache_retention_period: Nuotolinio turinio saugojimo laikotarpis
|
||||
custom_css: Pasirinktinis CSS
|
||||
favicon: Svetainės piktograma
|
||||
local_topic_feed_access: Prieiga prie grotažymių ir nuorodų sienų srautų, kuriuose pateikiami vietiniai įrašai
|
||||
mascot: Pasirinktinis talismanas (pasenęs)
|
||||
min_age: Mažiausias amžiaus reikalavimas
|
||||
registrations_mode: Kas gali užsiregistruoti
|
||||
remote_topic_feed_access: Prieiga prie grotažymių ir nuorodų srautų, kuriuose pateikiami išoriniai įrašai
|
||||
require_invite_text: Reikalauti priežasties prisijungti
|
||||
show_domain_blocks_rationale: Rodyti, kodėl domenai buvo užblokuoti
|
||||
site_extended_description: Išplėstas aprašymas
|
||||
@@ -224,7 +237,7 @@ lt:
|
||||
mention: Kažkas paminėjo tave
|
||||
pending_account: Reikia peržiūros naujam paskyrui
|
||||
quote: Kažkas jus paminėjo
|
||||
reblog: Kažkas pakėlė tavo įrašą
|
||||
reblog: Kažkas dalinosi tavo įrašu
|
||||
software_updates:
|
||||
label: Yra nauja Mastodon versija
|
||||
patch: Pranešti apie klaidų ištaisymo atnaujinimus
|
||||
@@ -236,10 +249,10 @@ lt:
|
||||
indexable: Įtraukti profilio puslapį į paieškos variklius
|
||||
show_application: Rodyti, iš kurios programėles išsiuntei įrašą
|
||||
tag:
|
||||
listable: Leisti šį saitažodį rodyti paieškose ir pasiūlymuose
|
||||
name: Saitažodis
|
||||
trendable: Leisti šį saitažodį rodyti pagal trendus
|
||||
usable: Leisti įrašams naudoti šį saitažodį vietoje
|
||||
listable: Leisti šį grotažodį rodyti paieškose ir pasiūlymuose
|
||||
name: Grotažymė
|
||||
trendable: Leisti šią grotažymę rodyti tendencijose
|
||||
usable: Leisti įrašams naudoti šią grotažymę lokaliai
|
||||
terms_of_service:
|
||||
changelog: Kas pasikeitė?
|
||||
text: Paslaugų sąlygos
|
||||
|
||||
@@ -314,7 +314,9 @@ th:
|
||||
terms_of_service_generator:
|
||||
domain: โดเมน
|
||||
user:
|
||||
date_of_birth_1i: ปี
|
||||
date_of_birth_2i: เดือน
|
||||
date_of_birth_3i: วัน
|
||||
role: บทบาท
|
||||
time_zone: โซนเวลา
|
||||
user_role:
|
||||
|
||||
@@ -69,7 +69,7 @@ th:
|
||||
email_status: สถานะอีเมล
|
||||
enable: เลิกอายัด
|
||||
enable_sign_in_token_auth: เปิดใช้งานการรับรองความถูกต้องด้วยโทเคนอีเมล
|
||||
enabled: เปิดใช้งานอยู่
|
||||
enabled: เปิดใช้งานแล้ว
|
||||
enabled_msg: เลิกอายัดบัญชีของ %{username} สำเร็จ
|
||||
followers: ผู้ติดตาม
|
||||
follows: การติดตาม
|
||||
@@ -92,7 +92,7 @@ th:
|
||||
moderation:
|
||||
active: ใช้งานอยู่
|
||||
all: ทั้งหมด
|
||||
disabled: ปิดใช้งานอยู่
|
||||
disabled: ปิดใช้งานแล้ว
|
||||
pending: รอดำเนินการ
|
||||
silenced: จำกัดอยู่
|
||||
suspended: ระงับอยู่
|
||||
@@ -336,11 +336,11 @@ th:
|
||||
delete: ลบ
|
||||
destroyed_msg: ทำลายอีโมโจสำเร็จ!
|
||||
disable: ปิดใช้งาน
|
||||
disabled: ปิดใช้งานอยู่
|
||||
disabled: ปิดใช้งานแล้ว
|
||||
disabled_msg: ปิดใช้งานอีโมจินั้นสำเร็จ
|
||||
emoji: อีโมจิ
|
||||
enable: เปิดใช้งาน
|
||||
enabled: เปิดใช้งานอยู่
|
||||
enabled: เปิดใช้งานแล้ว
|
||||
enabled_msg: เปิดใช้งานอีโมจินั้นสำเร็จ
|
||||
image_hint: PNG หรือ GIF สูงสุด %{size}
|
||||
list: แสดงรายการ
|
||||
@@ -592,10 +592,10 @@ th:
|
||||
delete: ลบ
|
||||
description_html: "<strong>รีเลย์การติดต่อกับภายนอก</strong> เป็นเซิร์ฟเวอร์ตัวกลางที่แลกเปลี่ยนโพสต์สาธารณะจำนวนมากระหว่างเซิร์ฟเวอร์ที่บอกรับและเผยแพร่ไปยังรีเลย์ <strong>รีเลย์สามารถช่วยให้เซิร์ฟเวอร์ขนาดเล็กและขนาดกลางค้นพบเนื้อหาจากจักรวาลสหพันธ์</strong> ซึ่งมิฉะนั้นจะต้องให้ผู้ใช้ในเซิร์ฟเวอร์ติดตามผู้คนอื่น ๆ ในเซิร์ฟเวอร์ระยะไกลด้วยตนเอง"
|
||||
disable: ปิดใช้งาน
|
||||
disabled: ปิดใช้งานอยู่
|
||||
disabled: ปิดใช้งานแล้ว
|
||||
enable: เปิดใช้งาน
|
||||
enable_hint: เมื่อเปิดใช้งาน เซิร์ฟเวอร์ของคุณจะบอกรับโพสต์สาธารณะทั้งหมดจากรีเลย์นี้ และจะเริ่มส่งโพสต์สาธารณะของเซิร์ฟเวอร์นี้ไปยังรีเลย์
|
||||
enabled: เปิดใช้งานอยู่
|
||||
enabled: เปิดใช้งานแล้ว
|
||||
inbox_url: URL ของรีเลย์
|
||||
pending: กำลังรอการอนุมัติของรีเลย์
|
||||
save_and_enable: บันทึกและเปิดใช้งาน
|
||||
@@ -796,9 +796,14 @@ th:
|
||||
all: ให้กับทุกคน
|
||||
disabled: ให้กับไม่มีใคร
|
||||
users: ให้กับผู้ใช้ในเซิร์ฟเวอร์ที่เข้าสู่ระบบ
|
||||
feed_access:
|
||||
modes:
|
||||
public: ทุกคน
|
||||
landing_page:
|
||||
values:
|
||||
about: เกี่ยวกับ
|
||||
local_feed: ฟีดในเซิร์ฟเวอร์
|
||||
trends: แนวโน้ม
|
||||
registrations:
|
||||
moderation_recommandation: โปรดตรวจสอบให้แน่ใจว่าคุณมีทีมการกลั่นกรองที่เพียงพอและมีปฏิกิริยาตอบสนองก่อนที่คุณจะเปิดการลงทะเบียนให้กับทุกคน!
|
||||
preamble: ควบคุมผู้ที่สามารถสร้างบัญชีในเซิร์ฟเวอร์ของคุณ
|
||||
@@ -1045,7 +1050,7 @@ th:
|
||||
delete: ลบ
|
||||
description_html: "<strong>เว็บฮุค</strong> ทำให้ Mastodon สามารถส่ง <strong>การแจ้งเตือนตามเวลาจริง</strong> แบบผลักเกี่ยวกับเหตุการณ์ที่เลือกไปยังแอปพลิเคชันของคุณเอง ดังนั้นแอปพลิเคชันของคุณสามารถ <strong>ทริกเกอร์การตอบสนองได้โดยอัตโนมัติ</strong>"
|
||||
disable: ปิดใช้งาน
|
||||
disabled: ปิดใช้งานอยู่
|
||||
disabled: ปิดใช้งานแล้ว
|
||||
edit: แก้ไขปลายทาง
|
||||
empty: คุณยังไม่ได้กำหนดค่าปลายทางเว็บฮุคใด ๆ
|
||||
enable: เปิดใช้งาน
|
||||
@@ -1633,6 +1638,7 @@ th:
|
||||
self_vote: คุณไม่สามารถลงคะแนนในการสำรวจความคิดเห็นของคุณเอง
|
||||
too_few_options: ต้องมีมากกว่าหนึ่งรายการ
|
||||
too_many_options: ไม่สามารถมีมากกว่า %{max} รายการ
|
||||
vote: ลงคะแนน
|
||||
preferences:
|
||||
other: อื่น ๆ
|
||||
posting_defaults: ค่าเริ่มต้นการโพสต์
|
||||
@@ -1800,9 +1806,16 @@ th:
|
||||
limit: คุณได้ปักหมุดโพสต์ถึงจำนวนสูงสุดไปแล้ว
|
||||
ownership: ไม่สามารถปักหมุดโพสต์ของคนอื่น
|
||||
reblog: ไม่สามารถปักหมุดการดัน
|
||||
quote_policies:
|
||||
followers: ผู้ติดตามเท่านั้น
|
||||
nobody: แค่ฉัน
|
||||
public: ใครก็ตาม
|
||||
title: '%{name}: "%{quote}"'
|
||||
visibilities:
|
||||
direct: การกล่าวถึงแบบส่วนตัว
|
||||
private: ผู้ติดตามเท่านั้น
|
||||
public: สาธารณะ
|
||||
unlisted_long: ซ่อนจากผลลัพธ์การค้นหา, กำลังนิยม และเส้นเวลาสาธารณะของ Mastodon
|
||||
statuses_cleanup:
|
||||
enabled: ลบโพสต์เก่าโดยอัตโนมัติ
|
||||
enabled_hint: ลบโพสต์ของคุณโดยอัตโนมัติเมื่อโพสต์ถึงค่าเกณฑ์อายุที่ระบุ เว้นแต่โพสต์ตรงกับหนึ่งในข้อยกเว้นด้านล่าง
|
||||
|
||||
@@ -6,6 +6,10 @@ namespace :api, format: false do
|
||||
|
||||
# Experimental JSON / REST API
|
||||
namespace :v1_alpha do
|
||||
resources :accounts, only: [] do
|
||||
resources :collections, only: [:index]
|
||||
end
|
||||
|
||||
resources :async_refreshes, only: :show
|
||||
|
||||
resources :collections, only: [:show, :create, :update, :destroy]
|
||||
|
||||
@@ -5,6 +5,58 @@ require 'rails_helper'
|
||||
RSpec.describe 'Api::V1Alpha::Collections', feature: :collections do
|
||||
include_context 'with API authentication', oauth_scopes: 'read:collections write:collections'
|
||||
|
||||
describe 'GET /api/v1_alpha/accounts/:account_id/collections' do
|
||||
subject do
|
||||
get "/api/v1_alpha/accounts/#{account.id}/collections", headers: headers, params: params
|
||||
end
|
||||
|
||||
let(:params) { {} }
|
||||
|
||||
let(:account) { Fabricate(:account) }
|
||||
|
||||
before { Fabricate.times(3, :collection, account:) }
|
||||
|
||||
it 'returns all collections for the given account and http success' do
|
||||
subject
|
||||
|
||||
expect(response).to have_http_status(200)
|
||||
expect(response.parsed_body.size).to eq 3
|
||||
end
|
||||
|
||||
context 'with limit param' do
|
||||
let(:params) { { limit: '1' } }
|
||||
|
||||
it 'returns only a single result' do
|
||||
subject
|
||||
|
||||
expect(response).to have_http_status(200)
|
||||
expect(response.parsed_body.size).to eq 1
|
||||
|
||||
expect(response)
|
||||
.to include_pagination_headers(
|
||||
next: api_v1_alpha_account_collections_url(account, limit: 1, offset: 1)
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
context 'with limit and offset params' do
|
||||
let(:params) { { limit: '1', offset: '1' } }
|
||||
|
||||
it 'returns the correct result and headers' do
|
||||
subject
|
||||
|
||||
expect(response).to have_http_status(200)
|
||||
expect(response.parsed_body.size).to eq 1
|
||||
|
||||
expect(response)
|
||||
.to include_pagination_headers(
|
||||
prev: api_v1_alpha_account_collections_url(account, limit: 1, offset: 0),
|
||||
next: api_v1_alpha_account_collections_url(account, limit: 1, offset: 2)
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe 'GET /api/v1_alpha/collections/:id' do
|
||||
subject do
|
||||
get "/api/v1_alpha/collections/#{collection.id}", headers: headers
|
||||
|
||||
57
spec/serializers/rest/base_collection_serializer_spec.rb
Normal file
57
spec/serializers/rest/base_collection_serializer_spec.rb
Normal file
@@ -0,0 +1,57 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe REST::BaseCollectionSerializer do
|
||||
subject do
|
||||
serialized_record_json(collection, described_class, options: {
|
||||
scope: current_user,
|
||||
scope_name: :current_user,
|
||||
})
|
||||
end
|
||||
|
||||
let(:current_user) { nil }
|
||||
|
||||
let(:tag) { Fabricate(:tag, name: 'discovery') }
|
||||
let(:collection) do
|
||||
Fabricate(:collection,
|
||||
id: 2342,
|
||||
name: 'Exquisite follows',
|
||||
description: 'Always worth a follow',
|
||||
local: true,
|
||||
sensitive: true,
|
||||
discoverable: false,
|
||||
tag:)
|
||||
end
|
||||
|
||||
it 'includes the relevant attributes' do
|
||||
expect(subject)
|
||||
.to include(
|
||||
'id' => '2342',
|
||||
'name' => 'Exquisite follows',
|
||||
'description' => 'Always worth a follow',
|
||||
'local' => true,
|
||||
'sensitive' => true,
|
||||
'discoverable' => false,
|
||||
'tag' => a_hash_including('name' => 'discovery'),
|
||||
'created_at' => match_api_datetime_format,
|
||||
'updated_at' => match_api_datetime_format
|
||||
)
|
||||
end
|
||||
|
||||
describe 'Counting items' do
|
||||
before do
|
||||
Fabricate.times(2, :collection_item, collection:)
|
||||
end
|
||||
|
||||
it 'can count items on demand' do
|
||||
expect(subject['item_count']).to eq 2
|
||||
end
|
||||
|
||||
it 'can use precalculated counts' do
|
||||
collection.define_singleton_method :item_count, -> { 8 }
|
||||
|
||||
expect(subject['item_count']).to eq 8
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -15,6 +15,7 @@ RSpec.describe REST::CollectionSerializer do
|
||||
let(:tag) { Fabricate(:tag, name: 'discovery') }
|
||||
let(:collection) do
|
||||
Fabricate(:collection,
|
||||
id: 2342,
|
||||
name: 'Exquisite follows',
|
||||
description: 'Always worth a follow',
|
||||
local: true,
|
||||
@@ -27,6 +28,7 @@ RSpec.describe REST::CollectionSerializer do
|
||||
expect(subject)
|
||||
.to include(
|
||||
'account' => an_instance_of(Hash),
|
||||
'id' => '2342',
|
||||
'name' => 'Exquisite follows',
|
||||
'description' => 'Always worth a follow',
|
||||
'local' => true,
|
||||
|
||||
Reference in New Issue
Block a user