Change confirmation prompt on trending management (#19626)
This commit is contained in:
parent
9538d9c298
commit
9bae237792
@ -39,22 +39,22 @@
|
|||||||
.batch-table__toolbar__actions
|
.batch-table__toolbar__actions
|
||||||
= f.button safe_join([material_symbol('check'), t('admin.trends.links.allow')]),
|
= f.button safe_join([material_symbol('check'), t('admin.trends.links.allow')]),
|
||||||
class: 'table-action-link',
|
class: 'table-action-link',
|
||||||
data: { confirm: t('admin.reports.are_you_sure') },
|
data: { confirm: t('admin.trends.links.confirm_allow') },
|
||||||
name: :approve,
|
name: :approve,
|
||||||
type: :submit
|
type: :submit
|
||||||
= f.button safe_join([material_symbol('check'), t('admin.trends.links.allow_provider')]),
|
= f.button safe_join([material_symbol('check'), t('admin.trends.links.allow_provider')]),
|
||||||
class: 'table-action-link',
|
class: 'table-action-link',
|
||||||
data: { confirm: t('admin.reports.are_you_sure') },
|
data: { confirm: t('admin.trends.links.confirm_allow_provider') },
|
||||||
name: :approve_providers,
|
name: :approve_providers,
|
||||||
type: :submit
|
type: :submit
|
||||||
= f.button safe_join([material_symbol('close'), t('admin.trends.links.disallow')]),
|
= f.button safe_join([material_symbol('close'), t('admin.trends.links.disallow')]),
|
||||||
class: 'table-action-link',
|
class: 'table-action-link',
|
||||||
data: { confirm: t('admin.reports.are_you_sure') },
|
data: { confirm: t('admin.trends.links.confirm_disallow') },
|
||||||
name: :reject,
|
name: :reject,
|
||||||
type: :submit
|
type: :submit
|
||||||
= f.button safe_join([material_symbol('close'), t('admin.trends.links.disallow_provider')]),
|
= f.button safe_join([material_symbol('close'), t('admin.trends.links.disallow_provider')]),
|
||||||
class: 'table-action-link',
|
class: 'table-action-link',
|
||||||
data: { confirm: t('admin.reports.are_you_sure') },
|
data: { confirm: t('admin.trends.links.confirm_disallow_provider') },
|
||||||
name: :reject_providers,
|
name: :reject_providers,
|
||||||
type: :submit
|
type: :submit
|
||||||
.batch-table__body
|
.batch-table__body
|
||||||
|
@ -35,22 +35,22 @@
|
|||||||
.batch-table__toolbar__actions
|
.batch-table__toolbar__actions
|
||||||
= f.button safe_join([material_symbol('check'), t('admin.trends.statuses.allow')]),
|
= f.button safe_join([material_symbol('check'), t('admin.trends.statuses.allow')]),
|
||||||
class: 'table-action-link',
|
class: 'table-action-link',
|
||||||
data: { confirm: t('admin.reports.are_you_sure') },
|
data: { confirm: t('admin.trends.statuses.confirm_allow') },
|
||||||
name: :approve,
|
name: :approve,
|
||||||
type: :submit
|
type: :submit
|
||||||
= f.button safe_join([material_symbol('check'), t('admin.trends.statuses.allow_account')]),
|
= f.button safe_join([material_symbol('check'), t('admin.trends.statuses.allow_account')]),
|
||||||
class: 'table-action-link',
|
class: 'table-action-link',
|
||||||
data: { confirm: t('admin.reports.are_you_sure') },
|
data: { confirm: t('admin.trends.statuses.confirm_allow_account') },
|
||||||
name: :approve_accounts,
|
name: :approve_accounts,
|
||||||
type: :submit
|
type: :submit
|
||||||
= f.button safe_join([material_symbol('close'), t('admin.trends.statuses.disallow')]),
|
= f.button safe_join([material_symbol('close'), t('admin.trends.statuses.disallow')]),
|
||||||
class: 'table-action-link',
|
class: 'table-action-link',
|
||||||
data: { confirm: t('admin.reports.are_you_sure') },
|
data: { confirm: t('admin.trends.statuses.confirm_disallow') },
|
||||||
name: :reject,
|
name: :reject,
|
||||||
type: :submit
|
type: :submit
|
||||||
= f.button safe_join([material_symbol('close'), t('admin.trends.statuses.disallow_account')]),
|
= f.button safe_join([material_symbol('close'), t('admin.trends.statuses.disallow_account')]),
|
||||||
class: 'table-action-link',
|
class: 'table-action-link',
|
||||||
data: { confirm: t('admin.reports.are_you_sure') },
|
data: { confirm: t('admin.trends.statuses.confirm_disallow_account') },
|
||||||
name: :reject_accounts,
|
name: :reject_accounts,
|
||||||
type: :submit
|
type: :submit
|
||||||
.batch-table__body
|
.batch-table__body
|
||||||
|
@ -27,12 +27,12 @@
|
|||||||
.batch-table__toolbar__actions
|
.batch-table__toolbar__actions
|
||||||
= f.button safe_join([material_symbol('check'), t('admin.trends.allow')]),
|
= f.button safe_join([material_symbol('check'), t('admin.trends.allow')]),
|
||||||
class: 'table-action-link',
|
class: 'table-action-link',
|
||||||
data: { confirm: t('admin.reports.are_you_sure') },
|
data: { confirm: t('admin.trends.confirm_allow') },
|
||||||
name: :approve,
|
name: :approve,
|
||||||
type: :submit
|
type: :submit
|
||||||
= f.button safe_join([material_symbol('close'), t('admin.trends.disallow')]),
|
= f.button safe_join([material_symbol('close'), t('admin.trends.disallow')]),
|
||||||
class: 'table-action-link',
|
class: 'table-action-link',
|
||||||
data: { confirm: t('admin.reports.are_you_sure') },
|
data: { confirm: t('admin.trends.confirm_disallow') },
|
||||||
name: :reject,
|
name: :reject,
|
||||||
type: :submit
|
type: :submit
|
||||||
|
|
||||||
|
@ -907,10 +907,16 @@ en:
|
|||||||
trends:
|
trends:
|
||||||
allow: Allow
|
allow: Allow
|
||||||
approved: Approved
|
approved: Approved
|
||||||
|
confirm_allow: Are you sure you want to allow selected tags?
|
||||||
|
confirm_disallow: Are you sure you want to disallow selected tags?
|
||||||
disallow: Disallow
|
disallow: Disallow
|
||||||
links:
|
links:
|
||||||
allow: Allow link
|
allow: Allow link
|
||||||
allow_provider: Allow publisher
|
allow_provider: Allow publisher
|
||||||
|
confirm_allow: Are you sure you want to allow selected links?
|
||||||
|
confirm_allow_provider: Are you sure you want to allow selected providers?
|
||||||
|
confirm_disallow: Are you sure you want to disallow selected links?
|
||||||
|
confirm_disallow_provider: Are you sure you want to disallow selected providers?
|
||||||
description_html: These are links that are currently being shared a lot by accounts that your server sees posts from. It can help your users find out what's going on in the world. No links are displayed publicly until you approve the publisher. You can also allow or reject individual links.
|
description_html: These are links that are currently being shared a lot by accounts that your server sees posts from. It can help your users find out what's going on in the world. No links are displayed publicly until you approve the publisher. You can also allow or reject individual links.
|
||||||
disallow: Disallow link
|
disallow: Disallow link
|
||||||
disallow_provider: Disallow publisher
|
disallow_provider: Disallow publisher
|
||||||
@ -934,6 +940,10 @@ en:
|
|||||||
statuses:
|
statuses:
|
||||||
allow: Allow post
|
allow: Allow post
|
||||||
allow_account: Allow author
|
allow_account: Allow author
|
||||||
|
confirm_allow: Are you sure you want to allow selected statuses?
|
||||||
|
confirm_allow_account: Are you sure you want to allow selected accounts?
|
||||||
|
confirm_disallow: Are you sure you want to disallow selected statuses?
|
||||||
|
confirm_disallow_account: Are you sure you want to disallow selected accounts?
|
||||||
description_html: These are posts that your server knows about that are currently being shared and favorited a lot at the moment. It can help your new and returning users to find more people to follow. No posts are displayed publicly until you approve the author, and the author allows their account to be suggested to others. You can also allow or reject individual posts.
|
description_html: These are posts that your server knows about that are currently being shared and favorited a lot at the moment. It can help your new and returning users to find more people to follow. No posts are displayed publicly until you approve the author, and the author allows their account to be suggested to others. You can also allow or reject individual posts.
|
||||||
disallow: Disallow post
|
disallow: Disallow post
|
||||||
disallow_account: Disallow author
|
disallow_account: Disallow author
|
||||||
|
Loading…
Reference in New Issue
Block a user