mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-23 08:34:13 -05:00
Improve display of statuses in admin panel (#30813)
This commit is contained in:
parent
2de018256a
commit
ddfb3d123b
@ -16,6 +16,8 @@ module Admin
|
|||||||
|
|
||||||
def show
|
def show
|
||||||
authorize [:admin, @status], :show?
|
authorize [:admin, @status], :show?
|
||||||
|
|
||||||
|
@status_batch_action = Admin::StatusBatchAction.new
|
||||||
end
|
end
|
||||||
|
|
||||||
def batch
|
def batch
|
||||||
|
@ -12,12 +12,12 @@ module Admin::AccountModerationNotesHelper
|
|||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
def admin_account_inline_link_to(account)
|
def admin_account_inline_link_to(account, path: nil)
|
||||||
return if account.nil?
|
return if account.nil?
|
||||||
|
|
||||||
link_to(
|
link_to(
|
||||||
account_inline_text(account),
|
account_inline_text(account),
|
||||||
admin_account_path(account.id),
|
path || admin_account_path(account.id),
|
||||||
class: class_names('inline-name-tag', suspended: suspended_account?(account)),
|
class: class_names('inline-name-tag', suspended: suspended_account?(account)),
|
||||||
title: account.acct
|
title: account.acct
|
||||||
)
|
)
|
||||||
|
@ -1922,3 +1922,31 @@ a.sparkline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.status__card {
|
||||||
|
padding: 15px;
|
||||||
|
border-radius: 4px;
|
||||||
|
background: $ui-base-color;
|
||||||
|
font-size: 15px;
|
||||||
|
line-height: 20px;
|
||||||
|
word-wrap: break-word;
|
||||||
|
font-weight: 400;
|
||||||
|
border: 1px solid lighten($ui-base-color, 4%);
|
||||||
|
color: $primary-text-color;
|
||||||
|
box-sizing: border-box;
|
||||||
|
min-height: 100%;
|
||||||
|
|
||||||
|
.status__prepend {
|
||||||
|
padding: 0 0 15px;
|
||||||
|
gap: 4px;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status__content {
|
||||||
|
padding-top: 0;
|
||||||
|
|
||||||
|
summary {
|
||||||
|
display: list-item;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -339,16 +339,12 @@ a.table-action-link {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.status__content {
|
// Reset the status card to not have borders, background or padding when
|
||||||
padding-top: 0;
|
// inline in the table of statuses
|
||||||
|
.status__card {
|
||||||
summary {
|
border: none;
|
||||||
display: list-item;
|
background: none;
|
||||||
}
|
padding: 0;
|
||||||
|
|
||||||
strong {
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.nothing-here {
|
.nothing-here {
|
||||||
|
@ -2,40 +2,52 @@
|
|||||||
%label.batch-table__row__select.batch-checkbox
|
%label.batch-table__row__select.batch-checkbox
|
||||||
= f.check_box :status_ids, { multiple: true, include_hidden: false }, status.id
|
= f.check_box :status_ids, { multiple: true, include_hidden: false }, status.id
|
||||||
.batch-table__row__content
|
.batch-table__row__content
|
||||||
.status__content><
|
.status__card
|
||||||
- if status.proper.spoiler_text.blank?
|
|
||||||
= prerender_custom_emojis(status_content_format(status.proper), status.proper.emojis)
|
|
||||||
- else
|
|
||||||
%details<
|
|
||||||
%summary><
|
|
||||||
%strong> Content warning: #{prerender_custom_emojis(h(status.proper.spoiler_text), status.proper.emojis)}
|
|
||||||
= prerender_custom_emojis(status_content_format(status.proper), status.proper.emojis)
|
|
||||||
|
|
||||||
- unless status.proper.ordered_media_attachments.empty?
|
|
||||||
= render partial: 'admin/reports/media_attachments', locals: { status: status.proper }
|
|
||||||
|
|
||||||
.detailed-status__meta
|
|
||||||
- if status.application
|
|
||||||
= status.application.name
|
|
||||||
·
|
|
||||||
= link_to ActivityPub::TagManager.instance.url_for(status.proper), class: 'detailed-status__datetime', target: stream_link_target, rel: 'noopener noreferrer' do
|
|
||||||
%time.formatted{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
|
|
||||||
- if status.edited?
|
|
||||||
·
|
|
||||||
= link_to t('statuses.edited_at_html', date: content_tag(:time, l(status.edited_at), datetime: status.edited_at.iso8601, title: l(status.edited_at), class: 'formatted')),
|
|
||||||
admin_account_status_path(status.account_id, status),
|
|
||||||
class: 'detailed-status__datetime'
|
|
||||||
- if status.discarded?
|
|
||||||
·
|
|
||||||
%span.negative-hint= t('admin.statuses.deleted')
|
|
||||||
·
|
|
||||||
- if status.reblog?
|
- if status.reblog?
|
||||||
= material_symbol('repeat_active')
|
.status__prepend
|
||||||
= t('statuses.boosted_from_html', acct_link: admin_account_inline_link_to(status.proper.account))
|
= material_symbol('repeat')
|
||||||
- else
|
= t('statuses.boosted_from_html', acct_link: admin_account_inline_link_to(status.proper.account, path: admin_account_status_path(status.proper.account.id, status.proper.id)))
|
||||||
|
- elsif status.reply? && status.in_reply_to_id.present?
|
||||||
|
.status__prepend
|
||||||
|
= material_symbol('reply')
|
||||||
|
= t('admin.statuses.replied_to_html', acct_link: admin_account_inline_link_to(status.in_reply_to_account, path: admin_account_status_path(status.thread.account_id, status.in_reply_to_id)))
|
||||||
|
.status__content><
|
||||||
|
- if status.proper.spoiler_text.blank?
|
||||||
|
= prerender_custom_emojis(status_content_format(status.proper), status.proper.emojis)
|
||||||
|
- else
|
||||||
|
%details<
|
||||||
|
%summary><
|
||||||
|
%strong> Content warning: #{prerender_custom_emojis(h(status.proper.spoiler_text), status.proper.emojis)}
|
||||||
|
= prerender_custom_emojis(status_content_format(status.proper), status.proper.emojis)
|
||||||
|
|
||||||
|
- unless status.proper.ordered_media_attachments.empty?
|
||||||
|
= render partial: 'admin/reports/media_attachments', locals: { status: status.proper }
|
||||||
|
|
||||||
|
.detailed-status__meta
|
||||||
|
- if status.application
|
||||||
|
= status.application.name
|
||||||
|
·
|
||||||
|
|
||||||
|
= link_to admin_account_status_path(status.account.id, status), class: 'detailed-status__datetime' do
|
||||||
|
%time.formatted{ datetime: status.created_at.iso8601, title: l(status.created_at) }= l(status.created_at)
|
||||||
|
- if status.edited?
|
||||||
|
·
|
||||||
|
= link_to t('statuses.edited_at_html', date: content_tag(:time, l(status.edited_at), datetime: status.edited_at.iso8601, title: l(status.edited_at), class: 'formatted')),
|
||||||
|
admin_account_status_path(status.account_id, status),
|
||||||
|
class: 'detailed-status__datetime'
|
||||||
|
- if status.discarded?
|
||||||
|
·
|
||||||
|
%span.negative-hint= t('admin.statuses.deleted')
|
||||||
|
·
|
||||||
|
|
||||||
= material_symbol visibility_icon(status)
|
= material_symbol visibility_icon(status)
|
||||||
= t("statuses.visibilities.#{status.visibility}")
|
= t("statuses.visibilities.#{status.visibility}")
|
||||||
- if status.proper.sensitive?
|
|
||||||
·
|
·
|
||||||
= material_symbol('visibility_off')
|
|
||||||
= t('stream_entries.sensitive_content')
|
= link_to ActivityPub::TagManager.instance.url_for(status.proper), class: 'detailed-status__link', target: stream_link_target, rel: 'noopener noreferrer' do
|
||||||
|
= t('admin.statuses.view_publicly')
|
||||||
|
|
||||||
|
- if status.proper.sensitive?
|
||||||
|
·
|
||||||
|
= material_symbol('visibility_off')
|
||||||
|
= t('stream_entries.sensitive_content')
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
- content_for :page_title do
|
- content_for :page_title do
|
||||||
= t('admin.statuses.title')
|
= t('admin.statuses.title', name: @account.pretty_acct)
|
||||||
\-
|
|
||||||
@#{@account.pretty_acct}
|
|
||||||
|
|
||||||
.filters
|
.filters
|
||||||
.filter-subset
|
.filter-subset
|
||||||
@ -33,11 +31,18 @@
|
|||||||
= check_box_tag :batch_checkbox_all, nil, false
|
= check_box_tag :batch_checkbox_all, nil, false
|
||||||
.batch-table__toolbar__actions
|
.batch-table__toolbar__actions
|
||||||
- unless @statuses.empty?
|
- unless @statuses.empty?
|
||||||
= f.button safe_join([material_symbol('flag'), t('admin.statuses.batch.report')]),
|
- if params[:report_id]
|
||||||
class: 'table-action-link',
|
= f.button safe_join([material_symbol('add'), t('admin.statuses.batch.add_to_report', id: params[:report_id])]),
|
||||||
data: { confirm: t('admin.reports.are_you_sure') },
|
class: 'table-action-link',
|
||||||
name: :report,
|
data: { confirm: t('admin.reports.are_you_sure') },
|
||||||
type: :submit
|
name: :report,
|
||||||
|
type: :submit
|
||||||
|
- else
|
||||||
|
= f.button safe_join([material_symbol('flag'), t('admin.statuses.batch.report')]),
|
||||||
|
class: 'table-action-link',
|
||||||
|
data: { confirm: t('admin.reports.are_you_sure') },
|
||||||
|
name: :report,
|
||||||
|
type: :submit
|
||||||
.batch-table__body
|
.batch-table__body
|
||||||
- if @statuses.empty?
|
- if @statuses.empty?
|
||||||
= nothing_here 'nothing-here--under-tabs'
|
= nothing_here 'nothing-here--under-tabs'
|
||||||
|
@ -1,7 +1,14 @@
|
|||||||
- content_for :page_title do
|
- content_for :page_title do
|
||||||
= t('statuses.title', name: display_name(@account), quote: truncate(@status.spoiler_text.presence || @status.text, length: 50, omission: '…', escape: false))
|
= t('admin.statuses.status_title', name: @account.pretty_acct)
|
||||||
|
|
||||||
- content_for :heading_actions do
|
- content_for :heading_actions do
|
||||||
|
= form_with model: @status_batch_action, url: batch_admin_account_statuses_path(@account.id) do |f|
|
||||||
|
= f.hidden_field :status_ids, { multiple: true, value: @status.id }
|
||||||
|
= f.button safe_join([material_symbol('flag'), t('admin.statuses.batch.report')]),
|
||||||
|
class: 'button',
|
||||||
|
data: { confirm: t('admin.reports.are_you_sure') },
|
||||||
|
name: :report,
|
||||||
|
type: :submit
|
||||||
= link_to t('admin.statuses.open'), ActivityPub::TagManager.instance.url_for(@status), class: 'button', target: '_blank', rel: 'noopener noreferrer'
|
= link_to t('admin.statuses.open'), ActivityPub::TagManager.instance.url_for(@status), class: 'button', target: '_blank', rel: 'noopener noreferrer'
|
||||||
|
|
||||||
%h3= t('admin.statuses.metadata')
|
%h3= t('admin.statuses.metadata')
|
||||||
@ -44,7 +51,56 @@
|
|||||||
|
|
||||||
%hr.spacer/
|
%hr.spacer/
|
||||||
|
|
||||||
%h3= t('admin.statuses.history')
|
%h3= t('admin.statuses.contents')
|
||||||
|
|
||||||
%ol.history
|
.status__card
|
||||||
= render partial: 'admin/status_edits/status_edit', collection: batched_ordered_status_edits
|
- if @status.reblog?
|
||||||
|
.status__prepend
|
||||||
|
= material_symbol('repeat')
|
||||||
|
= t('statuses.boosted_from_html', acct_link: admin_account_inline_link_to(@status.proper.account, path: admin_account_status_path(@status.proper.account.id, @status.proper.id)))
|
||||||
|
- elsif @status.reply? && @status.in_reply_to_id.present?
|
||||||
|
.status__prepend
|
||||||
|
= material_symbol('reply')
|
||||||
|
= t('admin.statuses.replied_to_html', acct_link: admin_account_inline_link_to(@status.in_reply_to_account, path: admin_account_status_path(@status.thread.account_id, @status.in_reply_to_id)))
|
||||||
|
.status__content><
|
||||||
|
- if @status.proper.spoiler_text.blank?
|
||||||
|
= prerender_custom_emojis(status_content_format(@status.proper), @status.proper.emojis)
|
||||||
|
- else
|
||||||
|
%details<
|
||||||
|
%summary><
|
||||||
|
%strong> Content warning: #{prerender_custom_emojis(h(@status.proper.spoiler_text), @status.proper.emojis)}
|
||||||
|
= prerender_custom_emojis(status_content_format(@status.proper), @status.proper.emojis)
|
||||||
|
|
||||||
|
- unless @status.proper.ordered_media_attachments.empty?
|
||||||
|
= render partial: 'admin/reports/media_attachments', locals: { status: @status.proper }
|
||||||
|
|
||||||
|
.detailed-status__meta
|
||||||
|
- if @status.application
|
||||||
|
= @status.application.name
|
||||||
|
·
|
||||||
|
%span.detailed-status__datetime
|
||||||
|
%time.formatted{ datetime: @status.created_at.iso8601, title: l(@status.created_at) }= l(@status.created_at)
|
||||||
|
- if @status.edited?
|
||||||
|
·
|
||||||
|
%span.detailed-status__datetime
|
||||||
|
= t('statuses.edited_at_html', date: content_tag(:time, l(@status.edited_at), datetime: @status.edited_at.iso8601, title: l(@status.edited_at), class: 'formatted'))
|
||||||
|
- if @status.discarded?
|
||||||
|
·
|
||||||
|
%span.negative-hint= t('admin.statuses.deleted')
|
||||||
|
- unless @status.reblog?
|
||||||
|
·
|
||||||
|
= material_symbol(visibility_icon(@status))
|
||||||
|
= t("statuses.visibilities.#{@status.visibility}")
|
||||||
|
- if @status.proper.sensitive?
|
||||||
|
·
|
||||||
|
= material_symbol('visibility_off')
|
||||||
|
= t('stream_entries.sensitive_content')
|
||||||
|
|
||||||
|
%hr.spacer/
|
||||||
|
|
||||||
|
%h3= t('admin.statuses.history')
|
||||||
|
- if @status.edits.empty?
|
||||||
|
%p= t('admin.statuses.no_history')
|
||||||
|
- else
|
||||||
|
%ol.history
|
||||||
|
= render partial: 'admin/status_edits/status_edit', collection: batched_ordered_status_edits
|
||||||
|
@ -723,7 +723,7 @@ an:
|
|||||||
original_status: Publicación orichinal
|
original_status: Publicación orichinal
|
||||||
reblogs: Impulsos
|
reblogs: Impulsos
|
||||||
status_changed: Publicación cambiada
|
status_changed: Publicación cambiada
|
||||||
title: Estau d'as cuentas
|
title: Estau d'as cuentas - @%{name}
|
||||||
trending: En tendencia
|
trending: En tendencia
|
||||||
visibility: Visibilidat
|
visibility: Visibilidat
|
||||||
with_media: Con multimedia
|
with_media: Con multimedia
|
||||||
|
@ -847,7 +847,7 @@ ar:
|
|||||||
original_status: المنشور الأصلي
|
original_status: المنشور الأصلي
|
||||||
reblogs: المعاد تدوينها
|
reblogs: المعاد تدوينها
|
||||||
status_changed: عُدّل المنشور
|
status_changed: عُدّل المنشور
|
||||||
title: منشورات الحساب
|
title: منشورات الحساب - @%{name}
|
||||||
trending: المتداولة
|
trending: المتداولة
|
||||||
visibility: مدى الظهور
|
visibility: مدى الظهور
|
||||||
with_media: تحتوي على وسائط
|
with_media: تحتوي على وسائط
|
||||||
|
@ -856,7 +856,7 @@ be:
|
|||||||
original_status: Зыходны допіс
|
original_status: Зыходны допіс
|
||||||
reblogs: Рэпосты
|
reblogs: Рэпосты
|
||||||
status_changed: Допіс зменены
|
status_changed: Допіс зменены
|
||||||
title: Допісы уліковага запісу
|
title: Допісы уліковага запісу - @%{name}
|
||||||
trending: Папулярныя
|
trending: Папулярныя
|
||||||
visibility: Бачнасць
|
visibility: Бачнасць
|
||||||
with_media: З медыя
|
with_media: З медыя
|
||||||
|
@ -803,7 +803,7 @@ bg:
|
|||||||
original_status: Първообразна публикация
|
original_status: Първообразна публикация
|
||||||
reblogs: Блогване пак
|
reblogs: Блогване пак
|
||||||
status_changed: Публикацията променена
|
status_changed: Публикацията променена
|
||||||
title: Публикации на акаунта
|
title: Публикации на акаунта - @%{name}
|
||||||
trending: Изгряващи
|
trending: Изгряващи
|
||||||
visibility: Видимост
|
visibility: Видимост
|
||||||
with_media: С мултимедия
|
with_media: С мултимедия
|
||||||
|
@ -263,7 +263,7 @@ br:
|
|||||||
original_status: Toud orin
|
original_status: Toud orin
|
||||||
reblogs: Skignadennoù
|
reblogs: Skignadennoù
|
||||||
status_changed: Toud kemmet
|
status_changed: Toud kemmet
|
||||||
title: Toudoù ar gont
|
title: Toudoù ar gont - @%{name}
|
||||||
visibility: Gwelusted
|
visibility: Gwelusted
|
||||||
with_media: Gant mediaoù
|
with_media: Gant mediaoù
|
||||||
strikes:
|
strikes:
|
||||||
|
@ -841,7 +841,7 @@ ca:
|
|||||||
original_status: Publicació original
|
original_status: Publicació original
|
||||||
reblogs: Impulsos
|
reblogs: Impulsos
|
||||||
status_changed: Publicació canviada
|
status_changed: Publicació canviada
|
||||||
title: Estats del compte
|
title: Estats del compte - @%{name}
|
||||||
trending: Tendència
|
trending: Tendència
|
||||||
visibility: Visibilitat
|
visibility: Visibilitat
|
||||||
with_media: Amb contingut multimèdia
|
with_media: Amb contingut multimèdia
|
||||||
|
@ -520,7 +520,7 @@ ckb:
|
|||||||
media:
|
media:
|
||||||
title: میدیا
|
title: میدیا
|
||||||
no_status_selected: هیچ دۆخیک نەگۆڕاوە وەک ئەوەی هیچ بارێک دەستنیشان نەکراوە
|
no_status_selected: هیچ دۆخیک نەگۆڕاوە وەک ئەوەی هیچ بارێک دەستنیشان نەکراوە
|
||||||
title: دۆخی ئەژمێر
|
title: دۆخی ئەژمێر - @%{name}
|
||||||
with_media: بە میدیا
|
with_media: بە میدیا
|
||||||
tags:
|
tags:
|
||||||
review: پێداچوونەوەی دۆخ
|
review: پێداچوونەوەی دۆخ
|
||||||
|
@ -459,7 +459,7 @@ co:
|
|||||||
media:
|
media:
|
||||||
title: Media
|
title: Media
|
||||||
no_status_selected: I statuti ùn sò micca stati mudificati perchè manc'unu era selezziunatu
|
no_status_selected: I statuti ùn sò micca stati mudificati perchè manc'unu era selezziunatu
|
||||||
title: Statuti di u contu
|
title: Statuti di u contu - @%{name}
|
||||||
with_media: Cù media
|
with_media: Cù media
|
||||||
system_checks:
|
system_checks:
|
||||||
rules_check:
|
rules_check:
|
||||||
|
@ -826,7 +826,7 @@ cs:
|
|||||||
original_status: Původní příspěvek
|
original_status: Původní příspěvek
|
||||||
reblogs: Boosty
|
reblogs: Boosty
|
||||||
status_changed: Příspěvek změněn
|
status_changed: Příspěvek změněn
|
||||||
title: Příspěvky účtu
|
title: Příspěvky účtu - @%{name}
|
||||||
trending: Populární
|
trending: Populární
|
||||||
visibility: Viditelnost
|
visibility: Viditelnost
|
||||||
with_media: S médii
|
with_media: S médii
|
||||||
|
@ -889,7 +889,7 @@ cy:
|
|||||||
original_status: Postiad gwreiddiol
|
original_status: Postiad gwreiddiol
|
||||||
reblogs: Ailflogiadau
|
reblogs: Ailflogiadau
|
||||||
status_changed: Postiad wedi'i newid
|
status_changed: Postiad wedi'i newid
|
||||||
title: Postiadau cyfrif
|
title: Postiadau cyfrif - @%{name}
|
||||||
trending: Yn trendio
|
trending: Yn trendio
|
||||||
visibility: Gwelededd
|
visibility: Gwelededd
|
||||||
with_media: Gyda chyfryngau
|
with_media: Gyda chyfryngau
|
||||||
|
@ -841,7 +841,7 @@ da:
|
|||||||
original_status: Oprindeligt indlæg
|
original_status: Oprindeligt indlæg
|
||||||
reblogs: Genblogninger
|
reblogs: Genblogninger
|
||||||
status_changed: Indlæg ændret
|
status_changed: Indlæg ændret
|
||||||
title: Kontoindlæg
|
title: Kontoindlæg - @%{name}
|
||||||
trending: Populære
|
trending: Populære
|
||||||
visibility: Synlighed
|
visibility: Synlighed
|
||||||
with_media: Med medier
|
with_media: Med medier
|
||||||
|
@ -841,7 +841,7 @@ de:
|
|||||||
original_status: Ursprünglicher Beitrag
|
original_status: Ursprünglicher Beitrag
|
||||||
reblogs: Geteilte Beiträge
|
reblogs: Geteilte Beiträge
|
||||||
status_changed: Beitrag bearbeitet
|
status_changed: Beitrag bearbeitet
|
||||||
title: Beiträge des Kontos
|
title: Beiträge des Kontos - @%{name}
|
||||||
trending: Trends
|
trending: Trends
|
||||||
visibility: Sichtbarkeit
|
visibility: Sichtbarkeit
|
||||||
with_media: Mit Medien
|
with_media: Mit Medien
|
||||||
|
@ -817,7 +817,7 @@ el:
|
|||||||
original_status: Αρχική ανάρτηση
|
original_status: Αρχική ανάρτηση
|
||||||
reblogs: Αναδημοσιεύσεις
|
reblogs: Αναδημοσιεύσεις
|
||||||
status_changed: Η ανάρτηση άλλαξε
|
status_changed: Η ανάρτηση άλλαξε
|
||||||
title: Καταστάσεις λογαριασμού
|
title: Καταστάσεις λογαριασμού - @%{name}
|
||||||
trending: Τάσεις
|
trending: Τάσεις
|
||||||
visibility: Ορατότητα
|
visibility: Ορατότητα
|
||||||
with_media: Με πολυμέσα
|
with_media: Με πολυμέσα
|
||||||
|
@ -832,7 +832,7 @@ en-GB:
|
|||||||
original_status: Original post
|
original_status: Original post
|
||||||
reblogs: Reblogs
|
reblogs: Reblogs
|
||||||
status_changed: Post changed
|
status_changed: Post changed
|
||||||
title: Account posts
|
title: Account posts - @%{name}
|
||||||
trending: Trending
|
trending: Trending
|
||||||
visibility: Visibility
|
visibility: Visibility
|
||||||
with_media: With media
|
with_media: With media
|
||||||
|
@ -826,8 +826,10 @@ en:
|
|||||||
back_to_account: Back to account page
|
back_to_account: Back to account page
|
||||||
back_to_report: Back to report page
|
back_to_report: Back to report page
|
||||||
batch:
|
batch:
|
||||||
|
add_to_report: 'Add to report #%{id}'
|
||||||
remove_from_report: Remove from report
|
remove_from_report: Remove from report
|
||||||
report: Report
|
report: Report
|
||||||
|
contents: Contents
|
||||||
deleted: Deleted
|
deleted: Deleted
|
||||||
favourites: Favorites
|
favourites: Favorites
|
||||||
history: Version history
|
history: Version history
|
||||||
@ -836,13 +838,17 @@ en:
|
|||||||
media:
|
media:
|
||||||
title: Media
|
title: Media
|
||||||
metadata: Metadata
|
metadata: Metadata
|
||||||
|
no_history: This post hasn't been edited
|
||||||
no_status_selected: No posts were changed as none were selected
|
no_status_selected: No posts were changed as none were selected
|
||||||
open: Open post
|
open: Open post
|
||||||
original_status: Original post
|
original_status: Original post
|
||||||
reblogs: Reblogs
|
reblogs: Reblogs
|
||||||
|
replied_to_html: Replied to %{acct_link}
|
||||||
status_changed: Post changed
|
status_changed: Post changed
|
||||||
title: Account posts
|
status_title: Post by @%{name}
|
||||||
|
title: Account posts - @%{name}
|
||||||
trending: Trending
|
trending: Trending
|
||||||
|
view_publicly: View publicly
|
||||||
visibility: Visibility
|
visibility: Visibility
|
||||||
with_media: With media
|
with_media: With media
|
||||||
strikes:
|
strikes:
|
||||||
|
@ -814,7 +814,7 @@ eo:
|
|||||||
original_status: Originala afiŝo
|
original_status: Originala afiŝo
|
||||||
reblogs: Reblogaĵoj
|
reblogs: Reblogaĵoj
|
||||||
status_changed: Afiŝo ŝanĝiĝis
|
status_changed: Afiŝo ŝanĝiĝis
|
||||||
title: Afiŝoj de la konto
|
title: Afiŝoj de la konto - @%{name}
|
||||||
trending: Popularaĵoj
|
trending: Popularaĵoj
|
||||||
visibility: Videbleco
|
visibility: Videbleco
|
||||||
with_media: Kun aŭdovidaĵoj
|
with_media: Kun aŭdovidaĵoj
|
||||||
|
@ -833,7 +833,7 @@ es-AR:
|
|||||||
original_status: Mensaje original
|
original_status: Mensaje original
|
||||||
reblogs: Adhesiones
|
reblogs: Adhesiones
|
||||||
status_changed: Mensaje cambiado
|
status_changed: Mensaje cambiado
|
||||||
title: Mensajes de la cuenta
|
title: Mensajes de la cuenta - @%{name}
|
||||||
trending: En tendencia
|
trending: En tendencia
|
||||||
visibility: Visibilidad
|
visibility: Visibilidad
|
||||||
with_media: Con medios
|
with_media: Con medios
|
||||||
|
@ -833,7 +833,7 @@ es-MX:
|
|||||||
original_status: Publicación original
|
original_status: Publicación original
|
||||||
reblogs: Impulsos
|
reblogs: Impulsos
|
||||||
status_changed: Publicación cambiada
|
status_changed: Publicación cambiada
|
||||||
title: Estado de las cuentas
|
title: Estado de las cuentas - @%{name}
|
||||||
trending: En tendencia
|
trending: En tendencia
|
||||||
visibility: Visibilidad
|
visibility: Visibilidad
|
||||||
with_media: Con multimedia
|
with_media: Con multimedia
|
||||||
|
@ -833,7 +833,7 @@ es:
|
|||||||
original_status: Publicación original
|
original_status: Publicación original
|
||||||
reblogs: Impulsos
|
reblogs: Impulsos
|
||||||
status_changed: Publicación cambiada
|
status_changed: Publicación cambiada
|
||||||
title: Publicaciones de la cuenta
|
title: Publicaciones de la cuenta - @%{name}
|
||||||
trending: En tendencia
|
trending: En tendencia
|
||||||
visibility: Visibilidad
|
visibility: Visibilidad
|
||||||
with_media: Con multimedia
|
with_media: Con multimedia
|
||||||
|
@ -833,7 +833,7 @@ et:
|
|||||||
original_status: Algne postitus
|
original_status: Algne postitus
|
||||||
reblogs: Jagamised
|
reblogs: Jagamised
|
||||||
status_changed: Muudetud postitus
|
status_changed: Muudetud postitus
|
||||||
title: Konto postitused
|
title: Konto postitused - @%{name}
|
||||||
trending: Populaarne
|
trending: Populaarne
|
||||||
visibility: Nähtavus
|
visibility: Nähtavus
|
||||||
with_media: Meediaga
|
with_media: Meediaga
|
||||||
|
@ -793,7 +793,7 @@ eu:
|
|||||||
original_status: Jatorrizko bidalketa
|
original_status: Jatorrizko bidalketa
|
||||||
reblogs: Bultzadak
|
reblogs: Bultzadak
|
||||||
status_changed: Bidalketa aldatuta
|
status_changed: Bidalketa aldatuta
|
||||||
title: Kontuaren bidalketak
|
title: Kontuaren bidalketak - @%{name}
|
||||||
trending: Joera
|
trending: Joera
|
||||||
visibility: Ikusgaitasuna
|
visibility: Ikusgaitasuna
|
||||||
with_media: Multimediarekin
|
with_media: Multimediarekin
|
||||||
|
@ -741,7 +741,7 @@ fa:
|
|||||||
original_status: فرستهٔ اصلی
|
original_status: فرستهٔ اصلی
|
||||||
reblogs: تقویتها
|
reblogs: تقویتها
|
||||||
status_changed: فرسته تغییر کرد
|
status_changed: فرسته تغییر کرد
|
||||||
title: نوشتههای حساب
|
title: "@%{name} - نوشتههای حساب"
|
||||||
trending: پرطرفدار
|
trending: پرطرفدار
|
||||||
visibility: نمایانی
|
visibility: نمایانی
|
||||||
with_media: دارای عکس یا ویدیو
|
with_media: دارای عکس یا ویدیو
|
||||||
|
@ -841,7 +841,7 @@ fi:
|
|||||||
original_status: Alkuperäinen julkaisu
|
original_status: Alkuperäinen julkaisu
|
||||||
reblogs: Edelleen jako
|
reblogs: Edelleen jako
|
||||||
status_changed: Julkaisua muutettu
|
status_changed: Julkaisua muutettu
|
||||||
title: Tilin tilat
|
title: Tilin tilat - @%{name}
|
||||||
trending: Suosituttua
|
trending: Suosituttua
|
||||||
visibility: Näkyvyys
|
visibility: Näkyvyys
|
||||||
with_media: Sisältää mediaa
|
with_media: Sisältää mediaa
|
||||||
|
@ -841,7 +841,7 @@ fo:
|
|||||||
original_status: Upprunapostur
|
original_status: Upprunapostur
|
||||||
reblogs: Endurbloggar
|
reblogs: Endurbloggar
|
||||||
status_changed: Postur broyttur
|
status_changed: Postur broyttur
|
||||||
title: Postar hjá kontu
|
title: Postar hjá kontu - @%{name}
|
||||||
trending: Vælumtókt
|
trending: Vælumtókt
|
||||||
visibility: Sýni
|
visibility: Sýni
|
||||||
with_media: Við miðli
|
with_media: Við miðli
|
||||||
|
@ -836,7 +836,7 @@ fr-CA:
|
|||||||
original_status: Message original
|
original_status: Message original
|
||||||
reblogs: Partages
|
reblogs: Partages
|
||||||
status_changed: Publication modifiée
|
status_changed: Publication modifiée
|
||||||
title: Messages du compte
|
title: Messages du compte - @%{name}
|
||||||
trending: Tendances
|
trending: Tendances
|
||||||
visibility: Visibilité
|
visibility: Visibilité
|
||||||
with_media: Avec médias
|
with_media: Avec médias
|
||||||
|
@ -836,7 +836,7 @@ fr:
|
|||||||
original_status: Message original
|
original_status: Message original
|
||||||
reblogs: Partages
|
reblogs: Partages
|
||||||
status_changed: Publication modifiée
|
status_changed: Publication modifiée
|
||||||
title: Messages du compte
|
title: Messages du compte - @%{name}
|
||||||
trending: Tendances
|
trending: Tendances
|
||||||
visibility: Visibilité
|
visibility: Visibilité
|
||||||
with_media: Avec médias
|
with_media: Avec médias
|
||||||
|
@ -833,7 +833,7 @@ fy:
|
|||||||
original_status: Oarspronklik berjocht
|
original_status: Oarspronklik berjocht
|
||||||
reblogs: Boosts
|
reblogs: Boosts
|
||||||
status_changed: Berjocht wizige
|
status_changed: Berjocht wizige
|
||||||
title: Accountberjochten
|
title: Accountberjochten - @%{name}
|
||||||
trending: Trending
|
trending: Trending
|
||||||
visibility: Sichtberheid
|
visibility: Sichtberheid
|
||||||
with_media: Mei media
|
with_media: Mei media
|
||||||
|
@ -875,7 +875,7 @@ ga:
|
|||||||
original_status: Bunphostáil
|
original_status: Bunphostáil
|
||||||
reblogs: Athbhlaganna
|
reblogs: Athbhlaganna
|
||||||
status_changed: Athraíodh postáil
|
status_changed: Athraíodh postáil
|
||||||
title: Poist chuntais
|
title: Poist chuntais - @%{name}
|
||||||
trending: Ag treochtáil
|
trending: Ag treochtáil
|
||||||
visibility: Infheictheacht
|
visibility: Infheictheacht
|
||||||
with_media: Le meáin
|
with_media: Le meáin
|
||||||
|
@ -861,7 +861,7 @@ gd:
|
|||||||
original_status: Am post tùsail
|
original_status: Am post tùsail
|
||||||
reblogs: Brosnachaidhean
|
reblogs: Brosnachaidhean
|
||||||
status_changed: Post air atharrachadh
|
status_changed: Post air atharrachadh
|
||||||
title: Postaichean a’ chunntais
|
title: Postaichean a’ chunntais - @%{name}
|
||||||
trending: A’ treandadh
|
trending: A’ treandadh
|
||||||
visibility: Faicsinneachd
|
visibility: Faicsinneachd
|
||||||
with_media: Le meadhanan riutha
|
with_media: Le meadhanan riutha
|
||||||
|
@ -841,7 +841,7 @@ gl:
|
|||||||
original_status: Publicación orixinal
|
original_status: Publicación orixinal
|
||||||
reblogs: Promocións
|
reblogs: Promocións
|
||||||
status_changed: Publicación editada
|
status_changed: Publicación editada
|
||||||
title: Publicacións da conta
|
title: Publicacións da conta - @%{name}
|
||||||
trending: Popular
|
trending: Popular
|
||||||
visibility: Visibilidade
|
visibility: Visibilidade
|
||||||
with_media: con medios
|
with_media: con medios
|
||||||
|
@ -861,7 +861,7 @@ he:
|
|||||||
original_status: הודעה מקורית
|
original_status: הודעה מקורית
|
||||||
reblogs: שיתופים
|
reblogs: שיתופים
|
||||||
status_changed: הודעה שונתה
|
status_changed: הודעה שונתה
|
||||||
title: הודעות החשבון
|
title: הודעות החשבון - @%{name}
|
||||||
trending: נושאים חמים
|
trending: נושאים חמים
|
||||||
visibility: נראות
|
visibility: נראות
|
||||||
with_media: עם מדיה
|
with_media: עם מדיה
|
||||||
|
@ -841,7 +841,7 @@ hu:
|
|||||||
original_status: Eredeti bejegyzés
|
original_status: Eredeti bejegyzés
|
||||||
reblogs: Megosztások
|
reblogs: Megosztások
|
||||||
status_changed: A bejegyzés megváltozott
|
status_changed: A bejegyzés megváltozott
|
||||||
title: Fiók bejegyzései
|
title: Fiók bejegyzései - @%{name}
|
||||||
trending: Felkapott
|
trending: Felkapott
|
||||||
visibility: Láthatóság
|
visibility: Láthatóság
|
||||||
with_media: Médiával
|
with_media: Médiával
|
||||||
|
@ -402,7 +402,7 @@ hy:
|
|||||||
deleted: Ջնջված է
|
deleted: Ջնջված է
|
||||||
media:
|
media:
|
||||||
title: Մեդիա
|
title: Մեդիա
|
||||||
title: Օգտատիրոջ գրառումները
|
title: Օգտատիրոջ գրառումները - @%{name}
|
||||||
with_media: Մեդիայի հետ
|
with_media: Մեդիայի հետ
|
||||||
tags:
|
tags:
|
||||||
review: Վերանայել գրառումը
|
review: Վերանայել գրառումը
|
||||||
|
@ -833,7 +833,7 @@ ia:
|
|||||||
original_status: Message original
|
original_status: Message original
|
||||||
reblogs: Republicationes
|
reblogs: Republicationes
|
||||||
status_changed: Message cambiate
|
status_changed: Message cambiate
|
||||||
title: Messages del conto
|
title: Messages del conto - @%{name}
|
||||||
trending: Tendentias
|
trending: Tendentias
|
||||||
visibility: Visibilitate
|
visibility: Visibilitate
|
||||||
with_media: Con multimedia
|
with_media: Con multimedia
|
||||||
|
@ -711,7 +711,7 @@ id:
|
|||||||
original_status: Kiriman asli
|
original_status: Kiriman asli
|
||||||
reblogs: Reblog
|
reblogs: Reblog
|
||||||
status_changed: Kiriman diubah
|
status_changed: Kiriman diubah
|
||||||
title: Status akun
|
title: Status akun - @%{name}
|
||||||
trending: Sedang tren
|
trending: Sedang tren
|
||||||
visibility: Visibilitas
|
visibility: Visibilitas
|
||||||
with_media: Dengan media
|
with_media: Dengan media
|
||||||
|
@ -791,7 +791,7 @@ ie:
|
|||||||
original_status: Original posta
|
original_status: Original posta
|
||||||
reblogs: Boosts
|
reblogs: Boosts
|
||||||
status_changed: Posta modificat
|
status_changed: Posta modificat
|
||||||
title: Postas del conto
|
title: Postas del conto - @%{name}
|
||||||
trending: Populari
|
trending: Populari
|
||||||
visibility: Visibilitá
|
visibility: Visibilitá
|
||||||
with_media: Con medie
|
with_media: Con medie
|
||||||
|
@ -779,7 +779,7 @@ io:
|
|||||||
original_status: Originala posto
|
original_status: Originala posto
|
||||||
reblogs: Dissemi
|
reblogs: Dissemi
|
||||||
status_changed: Posto chanjita
|
status_changed: Posto chanjita
|
||||||
title: Kontoposti
|
title: Kontoposti - @%{name}
|
||||||
trending: Populara
|
trending: Populara
|
||||||
visibility: Videbleso
|
visibility: Videbleso
|
||||||
with_media: Kun medii
|
with_media: Kun medii
|
||||||
|
@ -843,7 +843,7 @@ is:
|
|||||||
original_status: Upprunaleg færsla
|
original_status: Upprunaleg færsla
|
||||||
reblogs: Endurbirtingar
|
reblogs: Endurbirtingar
|
||||||
status_changed: Færslu breytt
|
status_changed: Færslu breytt
|
||||||
title: Færslur notandaaðgangs
|
title: Færslur notandaaðgangs - @%{name}
|
||||||
trending: Vinsælt
|
trending: Vinsælt
|
||||||
visibility: Sýnileiki
|
visibility: Sýnileiki
|
||||||
with_media: Með myndefni
|
with_media: Með myndefni
|
||||||
|
@ -833,7 +833,7 @@ it:
|
|||||||
original_status: Post originale
|
original_status: Post originale
|
||||||
reblogs: Condivisioni
|
reblogs: Condivisioni
|
||||||
status_changed: Post modificato
|
status_changed: Post modificato
|
||||||
title: Gli status dell'account
|
title: Gli status dell'account - @%{name}
|
||||||
trending: Di tendenza
|
trending: Di tendenza
|
||||||
visibility: Visibilità
|
visibility: Visibilità
|
||||||
with_media: con media
|
with_media: con media
|
||||||
|
@ -819,7 +819,7 @@ ja:
|
|||||||
original_status: オリジナルの投稿
|
original_status: オリジナルの投稿
|
||||||
reblogs: ブースト
|
reblogs: ブースト
|
||||||
status_changed: 投稿を変更しました
|
status_changed: 投稿を変更しました
|
||||||
title: 投稿一覧
|
title: 投稿一覧 - @%{name}
|
||||||
trending: トレンド
|
trending: トレンド
|
||||||
visibility: 公開範囲
|
visibility: 公開範囲
|
||||||
with_media: メディアあり
|
with_media: メディアあり
|
||||||
|
@ -190,7 +190,7 @@ ka:
|
|||||||
media:
|
media:
|
||||||
title: მედია
|
title: მედია
|
||||||
no_status_selected: სატუსები არ შეცვლილა, რადგან არცერთი არ მონიშნულა
|
no_status_selected: სატუსები არ შეცვლილა, რადგან არცერთი არ მონიშნულა
|
||||||
title: ანგარიშის სტატუსები
|
title: ანგარიშის სტატუსები - @%{name}
|
||||||
with_media: მედიით
|
with_media: მედიით
|
||||||
title: ადმინისტრაცია
|
title: ადმინისტრაცია
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
|
@ -419,7 +419,7 @@ kab:
|
|||||||
media:
|
media:
|
||||||
title: Amidya
|
title: Amidya
|
||||||
open: Ldi tasuffeɣt
|
open: Ldi tasuffeɣt
|
||||||
title: Tisuffaɣ n umiḍan
|
title: Tisuffaɣ n umiḍan - @%{name}
|
||||||
trending: Ayen mucaɛen
|
trending: Ayen mucaɛen
|
||||||
visibility: Abani
|
visibility: Abani
|
||||||
with_media: S umidya
|
with_media: S umidya
|
||||||
|
@ -285,7 +285,7 @@ kk:
|
|||||||
media:
|
media:
|
||||||
title: Медиa
|
title: Медиa
|
||||||
no_status_selected: Бірде-бір статус өзгерген жоқ, себебі ештеңе таңдалмады
|
no_status_selected: Бірде-бір статус өзгерген жоқ, себебі ештеңе таңдалмады
|
||||||
title: Аккаунт статустары
|
title: Аккаунт статустары - @%{name}
|
||||||
with_media: Медиамен
|
with_media: Медиамен
|
||||||
tags:
|
tags:
|
||||||
review: Статусты көрсету
|
review: Статусты көрсету
|
||||||
|
@ -829,7 +829,7 @@ ko:
|
|||||||
original_status: 원본 게시물
|
original_status: 원본 게시물
|
||||||
reblogs: 리블로그
|
reblogs: 리블로그
|
||||||
status_changed: 게시물 변경됨
|
status_changed: 게시물 변경됨
|
||||||
title: 계정 게시물
|
title: 계정 게시물 - @%{name}
|
||||||
trending: 유행 중
|
trending: 유행 중
|
||||||
visibility: 공개 설정
|
visibility: 공개 설정
|
||||||
with_media: 미디어 있음
|
with_media: 미디어 있음
|
||||||
|
@ -720,7 +720,7 @@ ku:
|
|||||||
original_status: Şandiyê resen
|
original_status: Şandiyê resen
|
||||||
reblogs: Ji nû ve nivîsandin
|
reblogs: Ji nû ve nivîsandin
|
||||||
status_changed: Şandî hate guhertin
|
status_changed: Şandî hate guhertin
|
||||||
title: Şandiyên ajimêr
|
title: Şandiyên ajimêr - @%{name}
|
||||||
trending: Rojev
|
trending: Rojev
|
||||||
visibility: Xuyabarî
|
visibility: Xuyabarî
|
||||||
with_media: Bi medya yê re
|
with_media: Bi medya yê re
|
||||||
|
@ -825,7 +825,7 @@ lad:
|
|||||||
original_status: Publikasyon orijinala
|
original_status: Publikasyon orijinala
|
||||||
reblogs: Repartajasyones
|
reblogs: Repartajasyones
|
||||||
status_changed: Publikasyon trokada
|
status_changed: Publikasyon trokada
|
||||||
title: Publikasyones del kuento
|
title: Publikasyones del kuento - @%{name}
|
||||||
trending: Trendes
|
trending: Trendes
|
||||||
visibility: Vizivilita
|
visibility: Vizivilita
|
||||||
with_media: Kon multimedia
|
with_media: Kon multimedia
|
||||||
|
@ -601,7 +601,7 @@ lt:
|
|||||||
no_status_selected: Jokie įrašai nebuvo pakeisti, nes nė vienas buvo pasirinktas
|
no_status_selected: Jokie įrašai nebuvo pakeisti, nes nė vienas buvo pasirinktas
|
||||||
open: Atidaryti įrašą
|
open: Atidaryti įrašą
|
||||||
original_status: Originalus įrašas
|
original_status: Originalus įrašas
|
||||||
title: Paskyros statusai
|
title: Paskyros statusai - @%{name}
|
||||||
trending: Tendencinga
|
trending: Tendencinga
|
||||||
with_media: Su medija
|
with_media: Su medija
|
||||||
system_checks:
|
system_checks:
|
||||||
|
@ -830,7 +830,7 @@ lv:
|
|||||||
original_status: Oriģinālā ziņa
|
original_status: Oriģinālā ziņa
|
||||||
reblogs: Reblogi
|
reblogs: Reblogi
|
||||||
status_changed: Ziņa mainīta
|
status_changed: Ziņa mainīta
|
||||||
title: Konta ziņas
|
title: Konta ziņas - @%{name}
|
||||||
trending: Aktuāli
|
trending: Aktuāli
|
||||||
visibility: Redzamība
|
visibility: Redzamība
|
||||||
with_media: Ar multividi
|
with_media: Ar multividi
|
||||||
|
@ -768,7 +768,7 @@ ms:
|
|||||||
original_status: Hantaran asal
|
original_status: Hantaran asal
|
||||||
reblogs: Ulang siar
|
reblogs: Ulang siar
|
||||||
status_changed: Hantaran diubah
|
status_changed: Hantaran diubah
|
||||||
title: Hantaran akaun
|
title: Hantaran akaun - @%{name}
|
||||||
trending: Sohor kini
|
trending: Sohor kini
|
||||||
visibility: Visibiliti
|
visibility: Visibiliti
|
||||||
with_media: Dengan media
|
with_media: Dengan media
|
||||||
|
@ -764,7 +764,7 @@ my:
|
|||||||
original_status: မူရင်းပို့စ်
|
original_status: မူရင်းပို့စ်
|
||||||
reblogs: Reblog များ
|
reblogs: Reblog များ
|
||||||
status_changed: ပို့စ်ပြောင်းပြီးပါပြီ
|
status_changed: ပို့စ်ပြောင်းပြီးပါပြီ
|
||||||
title: အကောင့်ပို့စ်များ
|
title: "@%{name} - အကောင့်ပို့စ်များ"
|
||||||
trending: လက်ရှိခေတ်စားနေခြင်း
|
trending: လက်ရှိခေတ်စားနေခြင်း
|
||||||
visibility: မြင်နိုင်မှု
|
visibility: မြင်နိုင်မှု
|
||||||
with_media: မီဒီယာနှင့်အတူ
|
with_media: မီဒီယာနှင့်အတူ
|
||||||
|
@ -833,7 +833,7 @@ nl:
|
|||||||
original_status: Oorspronkelijk bericht
|
original_status: Oorspronkelijk bericht
|
||||||
reblogs: Boosts
|
reblogs: Boosts
|
||||||
status_changed: Bericht veranderd
|
status_changed: Bericht veranderd
|
||||||
title: Berichten van account
|
title: Berichten van account - @%{name}
|
||||||
trending: Trending
|
trending: Trending
|
||||||
visibility: Zichtbaarheid
|
visibility: Zichtbaarheid
|
||||||
with_media: Met media
|
with_media: Met media
|
||||||
|
@ -841,7 +841,7 @@ nn:
|
|||||||
original_status: Opprinnelig innlegg
|
original_status: Opprinnelig innlegg
|
||||||
reblogs: Framhevingar
|
reblogs: Framhevingar
|
||||||
status_changed: Innlegg endret
|
status_changed: Innlegg endret
|
||||||
title: Kontostatusar
|
title: Kontostatusar - @%{name}
|
||||||
trending: Populært
|
trending: Populært
|
||||||
visibility: Synlighet
|
visibility: Synlighet
|
||||||
with_media: Med media
|
with_media: Med media
|
||||||
|
@ -786,7 +786,7 @@
|
|||||||
original_status: Opprinnelig innlegg
|
original_status: Opprinnelig innlegg
|
||||||
reblogs: Fremheve
|
reblogs: Fremheve
|
||||||
status_changed: Innlegg endret
|
status_changed: Innlegg endret
|
||||||
title: Kontostatuser
|
title: Kontostatuser - @%{name}
|
||||||
trending: Populært
|
trending: Populært
|
||||||
visibility: Synlighet
|
visibility: Synlighet
|
||||||
with_media: Med media
|
with_media: Med media
|
||||||
|
@ -401,7 +401,7 @@ oc:
|
|||||||
media:
|
media:
|
||||||
title: Mèdia
|
title: Mèdia
|
||||||
no_status_selected: Cap d’estatut pas cambiat estant que cap èra pas seleccionat
|
no_status_selected: Cap d’estatut pas cambiat estant que cap èra pas seleccionat
|
||||||
title: Estatuts del compte
|
title: Estatuts del compte - @%{name}
|
||||||
visibility: Visibilitat
|
visibility: Visibilitat
|
||||||
with_media: Amb mèdia
|
with_media: Amb mèdia
|
||||||
system_checks:
|
system_checks:
|
||||||
|
@ -861,7 +861,7 @@ pl:
|
|||||||
original_status: Oryginalny post
|
original_status: Oryginalny post
|
||||||
reblogs: Podbicia
|
reblogs: Podbicia
|
||||||
status_changed: Post zmieniony
|
status_changed: Post zmieniony
|
||||||
title: Wpisy konta
|
title: Wpisy konta - @%{name}
|
||||||
trending: Popularne
|
trending: Popularne
|
||||||
visibility: Widoczność
|
visibility: Widoczność
|
||||||
with_media: Z zawartością multimedialną
|
with_media: Z zawartością multimedialną
|
||||||
|
@ -841,7 +841,7 @@ pt-BR:
|
|||||||
original_status: Publicação original
|
original_status: Publicação original
|
||||||
reblogs: Reblogs
|
reblogs: Reblogs
|
||||||
status_changed: Publicação alterada
|
status_changed: Publicação alterada
|
||||||
title: Publicações da conta
|
title: Publicações da conta - @%{name}
|
||||||
trending: Em alta
|
trending: Em alta
|
||||||
visibility: Visibilidade
|
visibility: Visibilidade
|
||||||
with_media: Com mídia
|
with_media: Com mídia
|
||||||
|
@ -832,7 +832,7 @@ pt-PT:
|
|||||||
original_status: Publicação original
|
original_status: Publicação original
|
||||||
reblogs: Re-publicacões
|
reblogs: Re-publicacões
|
||||||
status_changed: Publicação alterada
|
status_changed: Publicação alterada
|
||||||
title: Estado das contas
|
title: Estado das contas - @%{name}
|
||||||
trending: Em tendência
|
trending: Em tendência
|
||||||
visibility: Visibilidade
|
visibility: Visibilidade
|
||||||
with_media: Com media
|
with_media: Com media
|
||||||
|
@ -869,7 +869,7 @@ ru:
|
|||||||
original_status: Оригинальный пост
|
original_status: Оригинальный пост
|
||||||
reblogs: Продвинули
|
reblogs: Продвинули
|
||||||
status_changed: Пост изменен
|
status_changed: Пост изменен
|
||||||
title: Посты пользователя
|
title: Посты пользователя - @%{name}
|
||||||
trending: Популярное
|
trending: Популярное
|
||||||
visibility: Видимость
|
visibility: Видимость
|
||||||
with_media: С файлами
|
with_media: С файлами
|
||||||
|
@ -582,7 +582,7 @@ sc:
|
|||||||
open: Aberi sa publicatzione
|
open: Aberi sa publicatzione
|
||||||
original_status: Publicatzione originale
|
original_status: Publicatzione originale
|
||||||
status_changed: Publicatzione modificada
|
status_changed: Publicatzione modificada
|
||||||
title: Istados de su contu
|
title: Istados de su contu - @%{name}
|
||||||
trending: Populares
|
trending: Populares
|
||||||
visibility: Visibilidade
|
visibility: Visibilidade
|
||||||
with_media: Cun elementos multimediales
|
with_media: Cun elementos multimediales
|
||||||
|
@ -713,7 +713,7 @@ sco:
|
|||||||
original_status: Original post
|
original_status: Original post
|
||||||
reblogs: Reblogs
|
reblogs: Reblogs
|
||||||
status_changed: Post chynged
|
status_changed: Post chynged
|
||||||
title: Accoont posts
|
title: Accoont posts - @%{name}
|
||||||
trending: Trendin
|
trending: Trendin
|
||||||
visibility: Visibility
|
visibility: Visibility
|
||||||
with_media: Wi media
|
with_media: Wi media
|
||||||
|
@ -607,7 +607,7 @@ si:
|
|||||||
open: ලිපිය අරින්න
|
open: ලිපිය අරින්න
|
||||||
original_status: මුල් ලිපිය
|
original_status: මුල් ලිපිය
|
||||||
status_changed: ලිපිය සංශෝධිතයි
|
status_changed: ලිපිය සංශෝධිතයි
|
||||||
title: ගිණුමේ ලිපි
|
title: ගිණුමේ ලිපි - @%{name}
|
||||||
trending: නැගී එන
|
trending: නැගී එන
|
||||||
with_media: මාධ්ය සමඟ
|
with_media: මාධ්ය සමඟ
|
||||||
strikes:
|
strikes:
|
||||||
|
@ -684,7 +684,7 @@ sk:
|
|||||||
open: Otvor príspevok
|
open: Otvor príspevok
|
||||||
original_status: Pôvodný príspevok
|
original_status: Pôvodný príspevok
|
||||||
status_changed: Príspevok bol zmenený
|
status_changed: Príspevok bol zmenený
|
||||||
title: Príspevky na účte
|
title: Príspevky na účte - @%{name}
|
||||||
trending: Populárne
|
trending: Populárne
|
||||||
visibility: Viditeľnosť
|
visibility: Viditeľnosť
|
||||||
with_media: S médiami
|
with_media: S médiami
|
||||||
|
@ -853,7 +853,7 @@ sl:
|
|||||||
original_status: Izvorna objava
|
original_status: Izvorna objava
|
||||||
reblogs: Ponovljeni blogi
|
reblogs: Ponovljeni blogi
|
||||||
status_changed: Objava spremenjena
|
status_changed: Objava spremenjena
|
||||||
title: Objave računa
|
title: Objave računa - @%{name}
|
||||||
trending: V trendu
|
trending: V trendu
|
||||||
visibility: Vidnost
|
visibility: Vidnost
|
||||||
with_media: Z mediji
|
with_media: Z mediji
|
||||||
|
@ -838,7 +838,7 @@ sq:
|
|||||||
original_status: Postim origjinal
|
original_status: Postim origjinal
|
||||||
reblogs: Riblogime
|
reblogs: Riblogime
|
||||||
status_changed: Postimi ndryshoi
|
status_changed: Postimi ndryshoi
|
||||||
title: Gjendje llogarish
|
title: Gjendje llogarish - @%{name}
|
||||||
trending: Në modë
|
trending: Në modë
|
||||||
visibility: Dukshmëri
|
visibility: Dukshmëri
|
||||||
with_media: Me media
|
with_media: Me media
|
||||||
|
@ -807,7 +807,7 @@ sr-Latn:
|
|||||||
original_status: Originalna objava
|
original_status: Originalna objava
|
||||||
reblogs: Deljenja
|
reblogs: Deljenja
|
||||||
status_changed: Objava promenjena
|
status_changed: Objava promenjena
|
||||||
title: Statusi naloga
|
title: Statusi naloga - @%{name}
|
||||||
trending: U trendu
|
trending: U trendu
|
||||||
visibility: Vidljivost
|
visibility: Vidljivost
|
||||||
with_media: Sa multimedijom
|
with_media: Sa multimedijom
|
||||||
|
@ -837,7 +837,7 @@ sr:
|
|||||||
original_status: Оригинална објава
|
original_status: Оригинална објава
|
||||||
reblogs: Дељења
|
reblogs: Дељења
|
||||||
status_changed: Објава промењена
|
status_changed: Објава промењена
|
||||||
title: Статуси налога
|
title: Статуси налога - @%{name}
|
||||||
trending: У тренду
|
trending: У тренду
|
||||||
visibility: Видљивост
|
visibility: Видљивост
|
||||||
with_media: Са мултимедијом
|
with_media: Са мултимедијом
|
||||||
|
@ -841,7 +841,7 @@ sv:
|
|||||||
original_status: Ursprungligt inlägg
|
original_status: Ursprungligt inlägg
|
||||||
reblogs: Ombloggningar
|
reblogs: Ombloggningar
|
||||||
status_changed: Inlägg ändrat
|
status_changed: Inlägg ändrat
|
||||||
title: Kontoinlägg
|
title: Kontoinlägg - @%{name}
|
||||||
trending: Trendande
|
trending: Trendande
|
||||||
visibility: Synlighet
|
visibility: Synlighet
|
||||||
with_media: Med media
|
with_media: Med media
|
||||||
|
@ -819,7 +819,7 @@ th:
|
|||||||
original_status: โพสต์ดั้งเดิม
|
original_status: โพสต์ดั้งเดิม
|
||||||
reblogs: การดัน
|
reblogs: การดัน
|
||||||
status_changed: เปลี่ยนโพสต์แล้ว
|
status_changed: เปลี่ยนโพสต์แล้ว
|
||||||
title: โพสต์ของบัญชี
|
title: โพสต์ของบัญชี - @%{name}
|
||||||
trending: กำลังนิยม
|
trending: กำลังนิยม
|
||||||
visibility: การมองเห็น
|
visibility: การมองเห็น
|
||||||
with_media: มีสื่อ
|
with_media: มีสื่อ
|
||||||
|
@ -841,7 +841,7 @@ tr:
|
|||||||
original_status: Özgün gönderi
|
original_status: Özgün gönderi
|
||||||
reblogs: Yeniden Paylaşımlar
|
reblogs: Yeniden Paylaşımlar
|
||||||
status_changed: Gönderi değişti
|
status_changed: Gönderi değişti
|
||||||
title: Hesap durumları
|
title: Hesap durumları - @%{name}
|
||||||
trending: Öne çıkanlar
|
trending: Öne çıkanlar
|
||||||
visibility: Görünürlük
|
visibility: Görünürlük
|
||||||
with_media: Medya ile
|
with_media: Medya ile
|
||||||
|
@ -861,7 +861,7 @@ uk:
|
|||||||
original_status: Оригінальний допис
|
original_status: Оригінальний допис
|
||||||
reblogs: Поширення
|
reblogs: Поширення
|
||||||
status_changed: Допис змінено
|
status_changed: Допис змінено
|
||||||
title: Дописи облікових записів
|
title: Дописи облікових записів - @%{name}
|
||||||
trending: Популярне
|
trending: Популярне
|
||||||
visibility: Видимість
|
visibility: Видимість
|
||||||
with_media: З медіа
|
with_media: З медіа
|
||||||
|
@ -827,7 +827,7 @@ vi:
|
|||||||
original_status: Tút gốc
|
original_status: Tút gốc
|
||||||
reblogs: Lượt đăng lại
|
reblogs: Lượt đăng lại
|
||||||
status_changed: Tút đã sửa
|
status_changed: Tút đã sửa
|
||||||
title: Tất cả tút
|
title: Tất cả tút - @%{name}
|
||||||
trending: Xu hướng
|
trending: Xu hướng
|
||||||
visibility: Hiển thị
|
visibility: Hiển thị
|
||||||
with_media: Có media
|
with_media: Có media
|
||||||
|
@ -827,7 +827,7 @@ zh-CN:
|
|||||||
original_status: 原始嘟文
|
original_status: 原始嘟文
|
||||||
reblogs: 转发
|
reblogs: 转发
|
||||||
status_changed: 嘟文已编辑
|
status_changed: 嘟文已编辑
|
||||||
title: 帐户嘟文
|
title: 帐户嘟文 - @%{name}
|
||||||
trending: 当前热门
|
trending: 当前热门
|
||||||
visibility: 可见性
|
visibility: 可见性
|
||||||
with_media: 含有媒体文件
|
with_media: 含有媒体文件
|
||||||
|
@ -777,7 +777,7 @@ zh-HK:
|
|||||||
original_status: 原始帖文
|
original_status: 原始帖文
|
||||||
reblogs: 轉發
|
reblogs: 轉發
|
||||||
status_changed: 帖文已變更
|
status_changed: 帖文已變更
|
||||||
title: 帳戶文章
|
title: 帳戶文章 - @%{name}
|
||||||
trending: 熱門
|
trending: 熱門
|
||||||
visibility: 可見性
|
visibility: 可見性
|
||||||
with_media: 含有媒體檔案
|
with_media: 含有媒體檔案
|
||||||
|
@ -829,7 +829,7 @@ zh-TW:
|
|||||||
original_status: 原始嘟文
|
original_status: 原始嘟文
|
||||||
reblogs: 轉嘟
|
reblogs: 轉嘟
|
||||||
status_changed: 嘟文已編輯
|
status_changed: 嘟文已編輯
|
||||||
title: 帳號嘟文
|
title: 帳號嘟文 - @%{name}
|
||||||
trending: 熱門
|
trending: 熱門
|
||||||
visibility: 可見性
|
visibility: 可見性
|
||||||
with_media: 含有媒體檔案
|
with_media: 含有媒體檔案
|
||||||
|
Loading…
Reference in New Issue
Block a user