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